> ## Documentation Index
> Fetch the complete documentation index at: https://cloud.laravel.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

> Learn about the plans, allowances, and usage-based pricing for Laravel Cloud.

# Plans and Pricing

export const ManagedQueuesPriceTable = ({pricesData}) => {
  const managedQueue = pricesData.charges.managedQueue;
  const regions = (pricesData.regions || []).filter(region => region.visibilityStatus === "public");
  if (!regions.length) {
    return <div>No regions available</div>;
  }
  const [selectedRegion, setSelectedRegion] = useState(regions[0].id);
  const currentRegion = regions.find(region => region.id === selectedRegion) || regions[0];
  const sizes = managedQueue?.sizes?.filter(size => size.visibilityStatus === "public" && size.id.startsWith("mq-pro-")) || [];
  const regionalPricing = managedQueue?.regionalPricing?.[currentRegion.id] || ({});
  const operations = managedQueue?.operations || ({});
  const formatVcpu = vcpu => {
    if (vcpu < 1) {
      return "Up to 1";
    }
    return String(vcpu);
  };
  const formatCurrency = amount => {
    if (amount >= 0.01) {
      return `$${amount.toFixed(4)}`;
    }
    const decimals = Math.min(9, Math.ceil(-Math.log10(amount)) + 2);
    return `$${amount.toFixed(decimals)}`;
  };
  const formatPricePerMillion = pricePerMillion => {
    const formatted = Number(pricePerMillion).toFixed(2);
    return formatted.endsWith(".00") ? `$${Number(pricePerMillion).toFixed(0)}` : `$${formatted}`;
  };
  return <div>
            <select value={selectedRegion} onChange={event => setSelectedRegion(event.target.value)} className="my-4 select-arrow flex rounded-xl w-full max-w-xs items-center text-sm leading-6 h-9 pl-3.5 pr-8 shadow-sm text-gray-500 dark:text-white/50 bg-background-light dark:bg-background-dark dark:brightness-[1.1] dark:ring-1 dark:hover:brightness-[1.25] ring-1 ring-gray-400/20 hover:ring-gray-600/25 dark:ring-gray-600/30 dark:hover:ring-gray-500/30 focus:outline-primary truncate gap-2 appearance-none">
                {regions.map(region => <option key={region.id} value={region.id}>
                        {region.name}
                    </option>)}
            </select>

            <table className="table table-auto">
                <thead>
                    <tr className="text-left">
                        <th>Memory</th>
                        <th>vCPU</th>
                        <th>Per worker-second</th>
                        <th>Per worker-hour</th>
                    </tr>
                </thead>
                <tbody>
                    {sizes.map(size => {
    const pricing = regionalPricing[size.id];
    if (!pricing) {
      return null;
    }
    const pricePerHour = pricing.pricePerSecond * 3600;
    return <tr key={size.id}>
                                <td>{size.ram}</td>
                                <td>{formatVcpu(size.vcpu)}</td>
                                <td>{formatCurrency(pricing.pricePerSecond)}</td>
                                <td>{formatCurrency(pricePerHour)}</td>
                            </tr>;
  })}
                </tbody>
            </table>

            <p className="mt-4">
                Workers are billed per second only while running.
            </p>

            <table className="table table-auto mt-6">
                <thead>
                    <tr className="text-left">
                        <th>Metric</th>
                        <th className="pr-20">Price</th>
                        <th>Note</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>Queue operations</td>
                        <td>
                            {formatPricePerMillion(operations.pricePerMillion)}{" "}
                            per million operations
                        </td>
                        <td>
                            Includes polling checks, sends, receives, deletes,
                            job retries, purges, and queue attribute lookups.
                        </td>
                    </tr>
                </tbody>
            </table>

            <p className="mt-4">
                See{" "}
                <a href="/queues#pricing">Managed queues</a> for billing
                details, plan limits, and workload guidance.
            </p>
        </div>;
};

export const LaravelValkeyPriceTable = ({pricesData}) => {
  const formatCurrency = amount => {
    if (amount >= 0.01) {
      return `$${amount.toFixed(4)}`;
    }
    const decimals = Math.min(9, Math.ceil(-Math.log10(amount)) + 2);
    return `$${amount.toFixed(decimals)}`;
  };
  const narrowColumnStyles = {
    class: {
      width: '3.5rem',
      minWidth: '3.5rem'
    },
    storage: {
      width: '6rem',
      minWidth: '6rem'
    },
    request: {
      width: '6rem',
      minWidth: '6rem'
    }
  };
  const regions = (pricesData.regions || []).filter(region => region.visibilityStatus === "public");
  if (!regions.length) {
    return <div>No regions available</div>;
  }
  const [selectedRegion, setSelectedRegion] = useState(regions[0].id);
  const currentRegion = regions.find(region => region.id === selectedRegion) || regions[0];
  const sizes = pricesData.charges.valkey?.sizes?.filter(size => size.visibilityStatus === "public") || [];
  const regionalPricing = pricesData.charges.valkey?.regionalPricing?.[currentRegion.id] || ({});
  const groups = {};
  sizes.forEach(size => {
    const key = size.class;
    if (!groups[key]) {
      groups[key] = [];
    }
    groups[key].push(size);
  });
  const groupKeys = Object.keys(groups);
  const formatStorage = size => {
    if (size.storageMB >= 1000) {
      return `${size.storageMB / 1000} GB`;
    }
    return `${size.storageMB} MB`;
  };
  const formatMessageSize = sizeInMb => {
    if (sizeInMb >= 1000) {
      return `${sizeInMb / 1000} GB`;
    }
    return `${sizeInMb} MB`;
  };
  return <div>
            <select value={selectedRegion} onChange={event => setSelectedRegion(event.target.value)} className="my-4 select-arrow flex rounded-xl w-full max-w-xs items-center text-sm leading-6 h-9 pl-3.5 pr-8 shadow-sm text-gray-500 dark:text-white/50 bg-background-light dark:bg-background-dark dark:brightness-[1.1] dark:ring-1 dark:hover:brightness-[1.25] ring-1 ring-gray-400/20 hover:ring-gray-600/25 dark:ring-gray-600/30 dark:hover:ring-gray-500/30 focus:outline-primary truncate gap-2 appearance-none">
                {regions.map(region => <option key={region.id} value={region.id}>
                        {region.name}
                    </option>)}
            </select>

            <table className="table table-fixed w-full">
                <thead>
                    <tr className="text-left">
                        <th style={narrowColumnStyles.class}>Class</th>
                        <th style={narrowColumnStyles.storage}>Data Storage</th>
                        <th style={narrowColumnStyles.request}>Max request size</th>
                        <th>Price / second</th>
                        <th>Monthly cap</th>
                    </tr>
                </thead>
                <tbody>
                    {groupKeys.map(key => {
    const groupSizes = groups[key];
    return groupSizes.map((size, index) => {
      const pricing = regionalPricing[size.id];
      if (!pricing) {
        return null;
      }
      const isFirst = index === 0;
      return <tr key={size.id}>
                                    <td style={narrowColumnStyles.class}>{isFirst ? size.class : ''}</td>
                                    <td style={narrowColumnStyles.storage}>{formatStorage(size)}</td>
                                    <td style={narrowColumnStyles.request}>{formatMessageSize(size.messageSizeMB)}</td>
                                    <td>{formatCurrency(pricing.pricePerSecond)}</td>
                                    <td>{`$${pricing.pricePerMonth.toFixed(2)}`}</td>
                                </tr>;
    });
  })}
                </tbody>
            </table>
        </div>;
};

export const ServerlessPostgresTable = ({pricesData}) => {
  const postgresPricing = pricesData.charges.neon.pricing;
  return <table className="table table-auto">
            <thead>
                <tr className="text-left">
                    <th>Metric</th>
                    <th className="pr-20">Price</th>
                    <th>Note</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>CPU</td>
                    <td>
                        <div>${postgresPricing.cpu.pricePerHour.toFixed(3)} per hour</div>
                    </td>
                    <td>
                        <div>Billed per second of active compute usage.</div>
                    </td>
                </tr>
                <tr>
                    <td>
                        <div>Storage</div>
                    </td>
                    <td>
                        <div>${postgresPricing.storage.rootBranch.pricePerGbMonth.toFixed(2)} per GB-mo</div>
                    </td>
                    <td className="short">
                        Total volume of database disk usage.
                    </td>
                </tr>
                <tr>
                    <td>
                        <div>Backup History</div>
                    </td>
                    <td>
                        <div>${postgresPricing.storage.pitr.pricePerGbMonth.toFixed(2)} per GB-mo</div>
                    </td>
                    <td className="short">
                        Total volume of Point-in-Time Restore logs within your backup window.
                    </td>
                </tr>
            </tbody>
        </table>;
};

export const prices = {
  "meta": {
    "version": "4.0.0",
    "defaultRegion": "us-east-2",
    "defaultCurrency": "USD",
    "daysPerMonth": 28,
    "secondsPerMonth": 2419200,
    "lastUpdated": "2026-05-28T18:18:14+00:00"
  },
  "regions": [{
    "id": "us-east-1",
    "name": "US East (N. Virginia)",
    "visibilityStatus": "public"
  }, {
    "id": "us-east-2",
    "name": "US East (Ohio)",
    "visibilityStatus": "public"
  }, {
    "id": "eu-central-1",
    "name": "Europe (Frankfurt)",
    "visibilityStatus": "public"
  }, {
    "id": "eu-west-1",
    "name": "Europe (Ireland)",
    "visibilityStatus": "public"
  }, {
    "id": "eu-west-2",
    "name": "Europe (London)",
    "visibilityStatus": "public"
  }, {
    "id": "ap-southeast-1",
    "name": "Asia Pacific (Singapore)",
    "visibilityStatus": "public"
  }, {
    "id": "ap-southeast-2",
    "name": "Asia Pacific (Sydney)",
    "visibilityStatus": "public"
  }, {
    "id": "ap-northeast-1",
    "name": "Asia Pacific (Tokyo)",
    "visibilityStatus": "public"
  }, {
    "id": "ca-central-1",
    "name": "Canada (Central)",
    "visibilityStatus": "public"
  }, {
    "id": "me-central-1",
    "name": "Middle East (UAE)",
    "visibilityStatus": "public"
  }],
  "plans": {
    "trial": {
      "code": "cloud_trial",
      "name": "Free Trial",
      "description": "Pay per usage",
      "basePrice": 0,
      "usageCredit": 0,
      "billingCycle": "monthly",
      "trialDays": 0,
      "visibilityStatus": "deprecated",
      "features": {
        "api": false,
        "applications": 1,
        "environments": 1,
        "databases": 1,
        "databaseSnapshotsMaxRetentionDays": 1,
        "logsMaxRetentionDays": 1,
        "caches": 1,
        "objectStorage": 1,
        "websocketServers": 1,
        "builds": null,
        "backgroundProcesses": true,
        "taskScheduler": true,
        "hibernation": true,
        "workerClusters": false,
        "previewEnvironments": false,
        "autoscaling": false,
        "sslTls": true,
        "laravelCloudDomains": true,
        "customDomains": false,
        "dedicatedZones": false,
        "ddosMitigation": "basic",
        "waf": false,
        "edgeSmartRouting": false,
        "twoFactorAuth": true,
        "httpBasicAuth": false,
        "googleSso": true,
        "githubSso": true,
        "teams": false,
        "rbac": false,
        "predefinedRoles": false,
        "advancedRbac": false,
        "saml": false,
        "scimProvisioning": false,
        "scheduledAutoscaling": false,
        "privateConnections": false,
        "spendLimits": true
      },
      "limits": {
        "compute": {
          "maxReplica": 1,
          "sizes": ["flex.c-1vcpu-256mb", "flex.g-1vcpu-512mb"]
        },
        "mysql": {
          "sizes": [],
          "maxStorageGb": 5
        },
        "rdsMysql": {
          "sizes": []
        },
        "rdsPostgres": {
          "sizes": []
        },
        "serverlessPostgres": {
          "maxComputeUnit": 0.25
        },
        "reverb": {
          "tiers": [100]
        },
        "kvStore": {
          "sizes": []
        },
        "valkey": {
          "sizes": ["valkey-pro.250mb"]
        },
        "managedQueue": {
          "sizes": []
        },
        "queue": {
          "maxPerEnvironment": 0,
          "maxConcurrentProcesses": 0
        },
        "domains": {
          "included": 0
        },
        "edgeSmartRouting": {
          "maxRequests": 0
        },
        "privateCloud": {
          "cloudflareEdgeTraffic": {
            "includedDataTransfer": 1000,
            "includedRequests": 1000000000
          }
        }
      }
    },
    "sandbox": {
      "code": "cloud_sandbox",
      "name": "Sandbox",
      "description": "Pay per usage",
      "basePrice": 0,
      "usageCredit": 0,
      "billingCycle": "monthly",
      "trialDays": 0,
      "visibilityStatus": "deprecated",
      "features": {
        "api": true,
        "applications": null,
        "environments": null,
        "databases": null,
        "databaseSnapshotsMaxRetentionDays": 30,
        "logsMaxRetentionDays": 1,
        "caches": null,
        "objectStorage": null,
        "websocketServers": null,
        "builds": null,
        "backgroundProcesses": true,
        "taskScheduler": true,
        "hibernation": true,
        "workerClusters": false,
        "previewEnvironments": false,
        "autoscaling": false,
        "sslTls": true,
        "laravelCloudDomains": true,
        "customDomains": true,
        "dedicatedZones": false,
        "ddosMitigation": "basic",
        "waf": false,
        "edgeSmartRouting": false,
        "twoFactorAuth": true,
        "httpBasicAuth": false,
        "googleSso": true,
        "githubSso": true,
        "teams": false,
        "rbac": false,
        "predefinedRoles": false,
        "advancedRbac": false,
        "saml": false,
        "scimProvisioning": false,
        "scheduledAutoscaling": false,
        "privateConnections": false,
        "spendLimits": true
      },
      "limits": {
        "compute": {
          "maxReplica": 1,
          "sizes": ["flex-512mb", "flex-1gb", "flex-2gb", "flex.c-1vcpu-256mb", "flex.g-1vcpu-512mb", "flex.m-1vcpu-1gb", "flex.c-2vcpu-512mb", "flex.g-2vcpu-1gb", "flex.m-2vcpu-2gb", "flex.c-4vcpu-1gb", "flex.g-4vcpu-2gb", "flex.m-4vcpu-4gb", "flex.c-8vcpu-2gb", "flex.g-8vcpu-4gb", "flex.m-8vcpu-8gb"]
        },
        "mysql": {
          "sizes": ["mysql-flex-512mb", "mysql-flex-1gb", "mysql-flex-2gb", "db-flex.m-1vcpu-512mb", "db-flex.m-1vcpu-1gb", "db-flex.m-1vcpu-2gb", "db-flex.m-1vcpu-4gb"],
          "maxStorageGb": null
        },
        "rdsMysql": {
          "sizes": []
        },
        "rdsPostgres": {
          "sizes": []
        },
        "serverlessPostgres": {
          "maxComputeUnit": 1
        },
        "reverb": {
          "tiers": [100, 200, 500, 2000, 5000]
        },
        "kvStore": {
          "sizes": ["250mb", "1gb", "2.5gb"]
        },
        "valkey": {
          "sizes": ["valkey-pro.250mb", "valkey-pro.1gb", "valkey-pro.2.5gb"]
        },
        "managedQueue": {
          "sizes": ["mq-pro-256mb", "mq-pro-512mb", "mq-pro-1gb"]
        },
        "queue": {
          "maxPerEnvironment": 1,
          "maxConcurrentProcesses": 3
        },
        "domains": {
          "included": 10
        },
        "edgeSmartRouting": {
          "maxRequests": 0
        },
        "privateCloud": {
          "cloudflareEdgeTraffic": {
            "includedDataTransfer": 1000,
            "includedRequests": 1000000000
          }
        }
      }
    },
    "starter": {
      "code": "cloud_starter",
      "name": "Starter",
      "description": "$5/mo + usage",
      "basePrice": 5,
      "usageCredit": 5,
      "billingCycle": "monthly",
      "trialDays": 30,
      "features": {
        "api": true,
        "applications": null,
        "environments": null,
        "databases": null,
        "databaseSnapshotsMaxRetentionDays": 30,
        "logsMaxRetentionDays": 1,
        "caches": null,
        "objectStorage": null,
        "websocketServers": null,
        "builds": null,
        "backgroundProcesses": true,
        "taskScheduler": true,
        "hibernation": true,
        "workerClusters": false,
        "previewEnvironments": false,
        "autoscaling": false,
        "sslTls": true,
        "laravelCloudDomains": true,
        "customDomains": true,
        "dedicatedZones": false,
        "ddosMitigation": "basic",
        "waf": false,
        "edgeSmartRouting": false,
        "twoFactorAuth": true,
        "httpBasicAuth": false,
        "googleSso": true,
        "githubSso": true,
        "teams": false,
        "rbac": false,
        "predefinedRoles": false,
        "advancedRbac": false,
        "saml": false,
        "scimProvisioning": false,
        "scheduledAutoscaling": false,
        "privateConnections": false,
        "spendLimits": true
      },
      "limits": {
        "compute": {
          "maxReplica": 1,
          "sizes": ["flex-512mb", "flex-1gb", "flex-2gb", "flex.c-1vcpu-256mb", "flex.g-1vcpu-512mb", "flex.m-1vcpu-1gb", "flex.c-2vcpu-512mb", "flex.g-2vcpu-1gb", "flex.m-2vcpu-2gb", "flex.c-4vcpu-1gb", "flex.g-4vcpu-2gb", "flex.m-4vcpu-4gb", "flex.c-8vcpu-2gb", "flex.g-8vcpu-4gb", "flex.m-8vcpu-8gb"]
        },
        "mysql": {
          "sizes": ["mysql-flex-512mb", "mysql-flex-1gb", "mysql-flex-2gb", "db-flex.m-1vcpu-512mb", "db-flex.m-1vcpu-1gb", "db-flex.m-1vcpu-2gb", "db-flex.m-1vcpu-4gb"],
          "maxStorageGb": null
        },
        "rdsMysql": {
          "sizes": []
        },
        "rdsPostgres": {
          "sizes": []
        },
        "serverlessPostgres": {
          "maxComputeUnit": 1
        },
        "reverb": {
          "tiers": [100, 200, 500, 2000, 5000]
        },
        "kvStore": {
          "sizes": ["250mb", "1gb", "2.5gb"]
        },
        "valkey": {
          "sizes": ["valkey-flex-250mb", "valkey-flex-1gb", "valkey-flex-2.5gb"]
        },
        "managedQueue": {
          "sizes": ["mq-pro-256mb", "mq-pro-512mb", "mq-pro-1gb"]
        },
        "queue": {
          "maxPerEnvironment": 1,
          "maxConcurrentProcesses": 3
        },
        "domains": {
          "included": 10
        },
        "edgeSmartRouting": {
          "maxRequests": 0
        },
        "privateCloud": {
          "cloudflareEdgeTraffic": {
            "includedDataTransfer": 1000,
            "includedRequests": 1000000000
          }
        }
      }
    },
    "growth": {
      "code": "cloud_production",
      "name": "Growth",
      "description": "$20/mo + usage",
      "basePrice": 20,
      "usageCredit": 5,
      "billingCycle": "monthly",
      "trialDays": 0,
      "features": {
        "api": true,
        "applications": null,
        "environments": null,
        "databases": null,
        "databaseSnapshotsMaxRetentionDays": 30,
        "logsMaxRetentionDays": 7,
        "caches": null,
        "objectStorage": null,
        "websocketServers": null,
        "builds": null,
        "backgroundProcesses": true,
        "taskScheduler": true,
        "hibernation": true,
        "workerClusters": true,
        "previewEnvironments": true,
        "autoscaling": true,
        "sslTls": true,
        "laravelCloudDomains": true,
        "customDomains": true,
        "dedicatedZones": false,
        "ddosMitigation": "basic",
        "waf": "basic",
        "edgeSmartRouting": true,
        "twoFactorAuth": true,
        "httpBasicAuth": true,
        "googleSso": true,
        "githubSso": true,
        "teams": false,
        "rbac": false,
        "predefinedRoles": true,
        "advancedRbac": false,
        "saml": false,
        "scimProvisioning": false,
        "scheduledAutoscaling": false,
        "privateConnections": false,
        "spendLimits": true
      },
      "limits": {
        "compute": {
          "maxReplica": 10,
          "sizes": ["flex-512mb", "flex-1gb", "flex-2gb", "flex.c-1vcpu-256mb", "flex.g-1vcpu-512mb", "flex.m-1vcpu-1gb", "flex.c-2vcpu-512mb", "flex.g-2vcpu-1gb", "flex.m-2vcpu-2gb", "flex.c-4vcpu-1gb", "flex.g-4vcpu-2gb", "flex.m-4vcpu-4gb", "flex.c-8vcpu-2gb", "flex.g-8vcpu-4gb", "flex.m-8vcpu-8gb", "pro.c-1vcpu-1gb", "pro.g-1vcpu-2gb", "pro.m-1vcpu-4gb", "pro.c-2vcpu-2gb", "pro.g-2vcpu-4gb", "pro.m-2vcpu-8gb", "pro.c-4vcpu-4gb", "pro.g-4vcpu-8gb", "pro.m-4vcpu-16gb", "pro.c-8vcpu-8gb", "pro.g-8vcpu-16gb", "pro.m-8vcpu-32gb"]
        },
        "mysql": {
          "sizes": ["mysql-flex-512mb", "mysql-flex-1gb", "mysql-flex-2gb", "db-flex.m-1vcpu-512mb", "db-flex.m-1vcpu-1gb", "db-flex.m-1vcpu-2gb", "db-flex.m-1vcpu-4gb", "db-pro.m-1vcpu-4gb", "db-pro.m-2vcpu-8gb", "db-pro.m-4vcpu-16gb"],
          "maxStorageGb": null
        },
        "rdsMysql": {
          "sizes": []
        },
        "rdsPostgres": {
          "sizes": []
        },
        "serverlessPostgres": {
          "maxComputeUnit": 4
        },
        "reverb": {
          "tiers": [100, 200, 500, 2000, 5000]
        },
        "kvStore": {
          "sizes": ["250mb", "1gb", "2.5gb", "5gb", "12gb", "50gb"]
        },
        "valkey": {
          "sizes": ["valkey-flex-250mb", "valkey-flex-1gb", "valkey-flex-2.5gb", "valkey-pro.250mb", "valkey-pro.1gb", "valkey-pro.2.5gb", "valkey-pro.5gb", "valkey-pro.12gb", "valkey-pro.25gb", "valkey-pro.50gb"]
        },
        "managedQueue": {
          "sizes": ["mq-pro-256mb", "mq-pro-512mb", "mq-pro-1gb", "mq-pro-2gb", "mq-pro-4gb", "mq-pro-8gb"]
        },
        "queue": {
          "maxPerEnvironment": 10,
          "maxConcurrentProcesses": 25
        },
        "domains": {
          "included": 50
        },
        "edgeSmartRouting": {
          "maxRequests": 1000000
        },
        "privateCloud": {
          "cloudflareEdgeTraffic": {
            "includedDataTransfer": 1000,
            "includedRequests": 1000000000
          }
        }
      }
    },
    "business": {
      "code": "cloud_business",
      "name": "Business",
      "description": "$200/mo + usage",
      "basePrice": 200,
      "usageCredit": 5,
      "billingCycle": "monthly",
      "trialDays": 0,
      "features": {
        "api": true,
        "applications": null,
        "environments": null,
        "databases": null,
        "databaseSnapshotsMaxRetentionDays": 30,
        "logsMaxRetentionDays": 30,
        "caches": null,
        "objectStorage": null,
        "websocketServers": null,
        "builds": null,
        "backgroundProcesses": true,
        "taskScheduler": true,
        "hibernation": true,
        "workerClusters": true,
        "previewEnvironments": true,
        "autoscaling": true,
        "sslTls": true,
        "laravelCloudDomains": true,
        "customDomains": true,
        "dedicatedZones": true,
        "ddosMitigation": "advanced",
        "waf": "advanced",
        "edgeSmartRouting": true,
        "twoFactorAuth": true,
        "httpBasicAuth": true,
        "googleSso": true,
        "githubSso": true,
        "teams": true,
        "rbac": true,
        "predefinedRoles": true,
        "advancedRbac": true,
        "saml": true,
        "scimProvisioning": true,
        "scheduledAutoscaling": true,
        "privateConnections": false,
        "spendLimits": true
      },
      "limits": {
        "compute": {
          "maxReplica": 20,
          "sizes": ["flex-512mb", "flex-1gb", "flex-2gb", "flex.c-1vcpu-256mb", "flex.g-1vcpu-512mb", "flex.m-1vcpu-1gb", "flex.c-2vcpu-512mb", "flex.g-2vcpu-1gb", "flex.m-2vcpu-2gb", "flex.c-4vcpu-1gb", "flex.g-4vcpu-2gb", "flex.m-4vcpu-4gb", "flex.c-8vcpu-2gb", "flex.g-8vcpu-4gb", "flex.m-8vcpu-8gb", "pro.c-1vcpu-1gb", "pro.g-1vcpu-2gb", "pro.m-1vcpu-4gb", "pro.c-2vcpu-2gb", "pro.g-2vcpu-4gb", "pro.m-2vcpu-8gb", "pro.c-4vcpu-4gb", "pro.g-4vcpu-8gb", "pro.m-4vcpu-16gb", "pro.c-8vcpu-8gb", "pro.g-8vcpu-16gb", "pro.m-8vcpu-32gb"]
        },
        "mysql": {
          "sizes": ["mysql-flex-512mb", "mysql-flex-1gb", "mysql-flex-2gb", "db-flex.m-1vcpu-512mb", "db-flex.m-1vcpu-1gb", "db-flex.m-1vcpu-2gb", "db-flex.m-1vcpu-4gb", "mysql-pro-4gb", "mysql-pro-8gb", "mysql-pro-16gb", "mysql-pro-32gb", "db-pro.m-1vcpu-4gb", "db-pro.m-2vcpu-8gb", "db-pro.m-4vcpu-16gb", "db-pro.m-8vcpu-32gb"],
          "maxStorageGb": null
        },
        "rdsMysql": {
          "sizes": ["db.m7g.large", "db.m7g.xlarge", "db.m7g.2xlarge", "db.m7g.4xlarge", "db.m7g.8xlarge", "db.m7g.12xlarge", "db.m7g.16xlarge", "db.m8g.large", "db.m8g.xlarge", "db.m8g.2xlarge", "db.m8g.4xlarge", "db.m8g.8xlarge", "db.m8g.12xlarge", "db.m8g.16xlarge", "db.m8g.24xlarge", "db.m8g.48xlarge", "db.t4g.micro", "db.t4g.small", "db.t4g.medium", "db.t4g.large", "db.t4g.xlarge", "db.t4g.2xlarge"]
        },
        "rdsPostgres": {
          "sizes": ["db.m7g.large", "db.m7g.xlarge", "db.m7g.2xlarge", "db.m7g.4xlarge", "db.m7g.8xlarge", "db.m7g.12xlarge", "db.m7g.16xlarge", "db.m8g.large", "db.m8g.xlarge", "db.m8g.2xlarge", "db.m8g.4xlarge", "db.m8g.8xlarge", "db.m8g.12xlarge", "db.m8g.16xlarge", "db.m8g.24xlarge", "db.m8g.48xlarge", "db.t4g.micro", "db.t4g.small", "db.t4g.medium", "db.t4g.large", "db.t4g.xlarge", "db.t4g.2xlarge"]
        },
        "serverlessPostgres": {
          "maxComputeUnit": 10
        },
        "reverb": {
          "tiers": [100, 200, 500, 2000, 5000]
        },
        "kvStore": {
          "sizes": ["250mb", "1gb", "2.5gb", "5gb", "12gb", "50gb", "100gb", "500gb"]
        },
        "valkey": {
          "sizes": ["valkey-flex-250mb", "valkey-flex-1gb", "valkey-flex-2.5gb", "valkey-pro.250mb", "valkey-pro.1gb", "valkey-pro.2.5gb", "valkey-pro.5gb", "valkey-pro.12gb", "valkey-pro.25gb", "valkey-pro.50gb"]
        },
        "managedQueue": {
          "sizes": ["mq-pro-256mb", "mq-pro-512mb", "mq-pro-1gb", "mq-pro-2gb", "mq-pro-4gb", "mq-pro-8gb"]
        },
        "queue": {
          "maxPerEnvironment": null,
          "maxConcurrentProcesses": null
        },
        "domains": {
          "included": 250
        },
        "edgeSmartRouting": {
          "maxRequests": 10000000
        },
        "privateCloud": {
          "cloudflareEdgeTraffic": {
            "includedDataTransfer": 1000,
            "includedRequests": 1000000000
          }
        }
      }
    },
    "enterprise": {
      "code": "cloud_enterprise",
      "name": "Enterprise",
      "description": "Custom pricing",
      "basePrice": "custom",
      "usageCredit": 0,
      "billingCycle": "custom",
      "trialDays": 0,
      "features": {
        "api": true,
        "applications": null,
        "environments": null,
        "databases": null,
        "databaseSnapshotsMaxRetentionDays": 30,
        "logsMaxRetentionDays": 30,
        "caches": null,
        "objectStorage": null,
        "websocketServers": null,
        "builds": null,
        "backgroundProcesses": true,
        "taskScheduler": true,
        "hibernation": true,
        "workerClusters": true,
        "previewEnvironments": true,
        "autoscaling": true,
        "sslTls": true,
        "laravelCloudDomains": true,
        "customDomains": true,
        "dedicatedZones": true,
        "ddosMitigation": "advanced",
        "waf": "custom",
        "edgeSmartRouting": true,
        "twoFactorAuth": true,
        "httpBasicAuth": true,
        "googleSso": true,
        "githubSso": true,
        "teams": true,
        "rbac": true,
        "predefinedRoles": true,
        "advancedRbac": true,
        "saml": true,
        "scimProvisioning": true,
        "scheduledAutoscaling": true,
        "privateConnections": true,
        "spendLimits": false
      },
      "limits": {
        "compute": {
          "maxReplica": 20,
          "sizes": ["flex-512mb", "flex-1gb", "flex-2gb", "flex.c-1vcpu-256mb", "flex.g-1vcpu-512mb", "flex.m-1vcpu-1gb", "flex.c-2vcpu-512mb", "flex.g-2vcpu-1gb", "flex.m-2vcpu-2gb", "flex.c-4vcpu-1gb", "flex.g-4vcpu-2gb", "flex.m-4vcpu-4gb", "flex.c-8vcpu-2gb", "flex.g-8vcpu-4gb", "flex.m-8vcpu-8gb", "pro.c-1vcpu-1gb", "pro.g-1vcpu-2gb", "pro.m-1vcpu-4gb", "pro.c-2vcpu-2gb", "pro.g-2vcpu-4gb", "pro.m-2vcpu-8gb", "pro.c-4vcpu-4gb", "pro.g-4vcpu-8gb", "pro.m-4vcpu-16gb", "pro.c-8vcpu-8gb", "pro.g-8vcpu-16gb", "pro.m-8vcpu-32gb", "dedicated.c-1vcpu-2gb", "dedicated.g-1vcpu-4gb", "dedicated.m-1vcpu-8gb", "dedicated.c-2vcpu-4gb", "dedicated.g-2vcpu-8gb", "dedicated.m-2vcpu-16gb", "dedicated.c-4vcpu-8gb", "dedicated.g-4vcpu-16gb", "dedicated.m-4vcpu-32gb", "dedicated.c-8vcpu-16gb", "dedicated.g-8vcpu-32gb", "dedicated.m-8vcpu-64gb"]
        },
        "mysql": {
          "sizes": ["mysql-flex-512mb", "mysql-flex-1gb", "mysql-flex-2gb", "db-flex.m-1vcpu-512mb", "db-flex.m-1vcpu-1gb", "db-flex.m-1vcpu-2gb", "db-flex.m-1vcpu-4gb", "mysql-pro-4gb", "mysql-pro-8gb", "mysql-pro-16gb", "mysql-pro-32gb", "db-pro.m-1vcpu-4gb", "db-pro.m-2vcpu-8gb", "db-pro.m-4vcpu-16gb", "db-pro.m-8vcpu-32gb"],
          "maxStorageGb": null
        },
        "rdsMysql": {
          "sizes": ["db.m7g.large", "db.m7g.xlarge", "db.m7g.2xlarge", "db.m7g.4xlarge", "db.m7g.8xlarge", "db.m7g.12xlarge", "db.m7g.16xlarge", "db.m8g.large", "db.m8g.xlarge", "db.m8g.2xlarge", "db.m8g.4xlarge", "db.m8g.8xlarge", "db.m8g.12xlarge", "db.m8g.16xlarge", "db.m8g.24xlarge", "db.m8g.48xlarge", "db.t4g.micro", "db.t4g.small", "db.t4g.medium", "db.t4g.large", "db.t4g.xlarge", "db.t4g.2xlarge"]
        },
        "rdsPostgres": {
          "sizes": ["db.m7g.large", "db.m7g.xlarge", "db.m7g.2xlarge", "db.m7g.4xlarge", "db.m7g.8xlarge", "db.m7g.12xlarge", "db.m7g.16xlarge", "db.m8g.large", "db.m8g.xlarge", "db.m8g.2xlarge", "db.m8g.4xlarge", "db.m8g.8xlarge", "db.m8g.12xlarge", "db.m8g.16xlarge", "db.m8g.24xlarge", "db.m8g.48xlarge", "db.t4g.micro", "db.t4g.small", "db.t4g.medium", "db.t4g.large", "db.t4g.xlarge", "db.t4g.2xlarge"]
        },
        "serverlessPostgres": {
          "maxComputeUnit": 10
        },
        "reverb": {
          "tiers": [100, 200, 500, 2000, 5000]
        },
        "kvStore": {
          "sizes": ["250mb", "1gb", "2.5gb", "5gb", "12gb", "50gb", "100gb", "500gb"]
        },
        "valkey": {
          "sizes": ["valkey-flex-250mb", "valkey-flex-1gb", "valkey-flex-2.5gb", "valkey-pro.250mb", "valkey-pro.1gb", "valkey-pro.2.5gb", "valkey-pro.5gb", "valkey-pro.12gb", "valkey-pro.25gb", "valkey-pro.50gb"]
        },
        "managedQueue": {
          "sizes": ["mq-pro-256mb", "mq-pro-512mb", "mq-pro-1gb", "mq-pro-2gb", "mq-pro-4gb", "mq-pro-8gb", "mq-dedicated-256mb", "mq-dedicated-512mb", "mq-dedicated-1gb", "mq-dedicated-2gb", "mq-dedicated-4gb", "mq-dedicated-8gb"]
        },
        "queue": {
          "maxPerEnvironment": null,
          "maxConcurrentProcesses": null
        },
        "domains": {
          "included": 250
        },
        "edgeSmartRouting": {
          "maxRequests": 10000000
        },
        "privateCloud": {
          "cloudflareEdgeTraffic": {
            "includedDataTransfer": 1000,
            "includedRequests": 1000000000
          }
        }
      }
    }
  },
  "charges": {
    "compute": {
      "sizes": [{
        "id": "flex.c-1vcpu-256mb",
        "class": "flex",
        "vcpu": 1,
        "ram": "256 MiB",
        "dataTransferAllowanceGB": 50,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex-512mb",
        "class": "flex",
        "vcpu": 1,
        "ram": "512 MiB",
        "dataTransferAllowanceGB": 50,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "public"
      }, {
        "id": "flex.g-1vcpu-512mb",
        "class": "flex",
        "vcpu": 1,
        "ram": "512 MiB",
        "dataTransferAllowanceGB": 50,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex-1gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "1 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "public"
      }, {
        "id": "flex.m-1vcpu-1gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "1 GiB",
        "dataTransferAllowanceGB": 50,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex-2gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "public"
      }, {
        "id": "flex.c-2vcpu-512mb",
        "class": "flex",
        "vcpu": 2,
        "ram": "512 MiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.g-2vcpu-1gb",
        "class": "flex",
        "vcpu": 2,
        "ram": "1 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.m-2vcpu-2gb",
        "class": "flex",
        "vcpu": 2,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.c-4vcpu-1gb",
        "class": "flex",
        "vcpu": 4,
        "ram": "1 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.g-4vcpu-2gb",
        "class": "flex",
        "vcpu": 4,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.m-4vcpu-4gb",
        "class": "flex",
        "vcpu": 4,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.c-8vcpu-2gb",
        "class": "flex",
        "vcpu": 8,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.g-8vcpu-4gb",
        "class": "flex",
        "vcpu": 8,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "flex.m-8vcpu-8gb",
        "class": "flex",
        "vcpu": 8,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": true,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.c-1vcpu-1gb",
        "class": "pro",
        "vcpu": 1,
        "ram": "1 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.g-1vcpu-2gb",
        "class": "pro",
        "vcpu": 1,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.m-1vcpu-4gb",
        "class": "pro",
        "vcpu": 1,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "pro.c-2vcpu-2gb",
        "class": "pro",
        "vcpu": 2,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.g-2vcpu-4gb",
        "class": "pro",
        "vcpu": 2,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.m-2vcpu-8gb",
        "class": "pro",
        "vcpu": 2,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "pro.c-4vcpu-4gb",
        "class": "pro",
        "vcpu": 4,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.g-4vcpu-8gb",
        "class": "pro",
        "vcpu": 4,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.m-4vcpu-16gb",
        "class": "pro",
        "vcpu": 4,
        "ram": "16 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "pro.c-8vcpu-8gb",
        "class": "pro",
        "vcpu": 8,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 800,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.g-8vcpu-16gb",
        "class": "pro",
        "vcpu": 8,
        "ram": "16 GiB",
        "dataTransferAllowanceGB": 800,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "pro.m-8vcpu-32gb",
        "class": "pro",
        "vcpu": 8,
        "ram": "32 GiB",
        "dataTransferAllowanceGB": 800,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.c-1vcpu-2gb",
        "class": "dedicated",
        "vcpu": 1,
        "ram": "2 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.g-1vcpu-4gb",
        "class": "dedicated",
        "vcpu": 1,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.m-1vcpu-8gb",
        "class": "dedicated",
        "vcpu": 1,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 100,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.c-2vcpu-4gb",
        "class": "dedicated",
        "vcpu": 2,
        "ram": "4 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.g-2vcpu-8gb",
        "class": "dedicated",
        "vcpu": 2,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.m-2vcpu-16gb",
        "class": "dedicated",
        "vcpu": 2,
        "ram": "16 GiB",
        "dataTransferAllowanceGB": 200,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.c-4vcpu-8gb",
        "class": "dedicated",
        "vcpu": 4,
        "ram": "8 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.g-4vcpu-16gb",
        "class": "dedicated",
        "vcpu": 4,
        "ram": "16 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.m-4vcpu-32gb",
        "class": "dedicated",
        "vcpu": 4,
        "ram": "32 GiB",
        "dataTransferAllowanceGB": 400,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.c-8vcpu-16gb",
        "class": "dedicated",
        "vcpu": 8,
        "ram": "16 GiB",
        "dataTransferAllowanceGB": 800,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.g-8vcpu-32gb",
        "class": "dedicated",
        "vcpu": 8,
        "ram": "32 GiB",
        "dataTransferAllowanceGB": 800,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "dedicated.m-8vcpu-64gb",
        "class": "dedicated",
        "vcpu": 8,
        "ram": "64 GiB",
        "dataTransferAllowanceGB": 800,
        "hibernation": false,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }],
      "regionalPricing": {
        "ap-northeast-1": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 40.14,
            "pricePerSecond": 1.659226e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 49.14,
            "pricePerSecond": 2.03125e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 62.25,
            "pricePerSecond": 2.573165e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 80.28,
            "pricePerSecond": 3.318452e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 98.29,
            "pricePerSecond": 4.062913e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 124.5,
            "pricePerSecond": 5.146329e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 160.55,
            "pricePerSecond": 6.636491e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 196.57,
            "pricePerSecond": 8.125413e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 248.99,
            "pricePerSecond": 0.00010292245,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 321.11,
            "pricePerSecond": 0.00013273396,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 393.15,
            "pricePerSecond": 0.0001625124,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 497.99,
            "pricePerSecond": 0.00020584904,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-1": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 40.14,
            "pricePerSecond": 1.659226e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 49.14,
            "pricePerSecond": 2.03125e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 62.25,
            "pricePerSecond": 2.573165e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 80.28,
            "pricePerSecond": 3.318452e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 98.29,
            "pricePerSecond": 4.062913e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 124.5,
            "pricePerSecond": 5.146329e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 160.55,
            "pricePerSecond": 6.636491e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 196.57,
            "pricePerSecond": 8.125413e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 248.99,
            "pricePerSecond": 0.00010292245,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 321.11,
            "pricePerSecond": 0.00013273396,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 393.15,
            "pricePerSecond": 0.0001625124,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 497.99,
            "pricePerSecond": 0.00020584904,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-2": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 45.46,
            "pricePerSecond": 1.879134e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 49.14,
            "pricePerSecond": 2.03125e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 61.85,
            "pricePerSecond": 2.55663e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 90.93,
            "pricePerSecond": 3.758681e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 98.29,
            "pricePerSecond": 4.062913e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 123.69,
            "pricePerSecond": 5.112847e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 181.86,
            "pricePerSecond": 7.517361e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 196.57,
            "pricePerSecond": 8.125413e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 247.38,
            "pricePerSecond": 0.00010225694,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 363.72,
            "pricePerSecond": 0.00015034722,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 393.15,
            "pricePerSecond": 0.0001625124,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 494.76,
            "pricePerSecond": 0.00020451389,
            "secondsToCap": 2419200
          }
        },
        "ca-central-1": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 38.09,
            "pricePerSecond": 1.574487e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 43.83,
            "pricePerSecond": 1.811756e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 56.52,
            "pricePerSecond": 2.33631e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 76.18,
            "pricePerSecond": 3.148975e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 87.65,
            "pricePerSecond": 3.623099e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 113.04,
            "pricePerSecond": 4.672619e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 152.35,
            "pricePerSecond": 6.297536e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 175.31,
            "pricePerSecond": 7.24661e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 226.08,
            "pricePerSecond": 9.345238e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 304.71,
            "pricePerSecond": 0.00012595486,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 350.61,
            "pricePerSecond": 0.00014492808,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 452.16,
            "pricePerSecond": 0.00018690476,
            "secondsToCap": 2419200
          }
        },
        "eu-central-1": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 39.73,
            "pricePerSecond": 1.642278e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 47.1,
            "pricePerSecond": 1.946925e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 62.25,
            "pricePerSecond": 2.573165e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 79.45,
            "pricePerSecond": 3.284144e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 94.21,
            "pricePerSecond": 3.894263e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 124.5,
            "pricePerSecond": 5.146329e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 158.91,
            "pricePerSecond": 6.5687e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 188.41,
            "pricePerSecond": 7.788112e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 248.99,
            "pricePerSecond": 0.00010292245,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 317.81,
            "pricePerSecond": 0.00013136987,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 376.82,
            "pricePerSecond": 0.00015576224,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 497.99,
            "pricePerSecond": 0.00020584904,
            "secondsToCap": 2419200
          }
        },
        "eu-west-1": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 37.35,
            "pricePerSecond": 1.543899e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 43.82,
            "pricePerSecond": 1.811343e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 57.75,
            "pricePerSecond": 2.387153e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 74.71,
            "pricePerSecond": 3.088211e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 87.64,
            "pricePerSecond": 3.622685e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 115.49,
            "pricePerSecond": 4.773892e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 149.41,
            "pricePerSecond": 6.176009e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 175.27,
            "pricePerSecond": 7.244957e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 230.98,
            "pricePerSecond": 9.547784e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 298.82,
            "pricePerSecond": 0.00012352017,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 350.54,
            "pricePerSecond": 0.00014489914,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 461.97,
            "pricePerSecond": 0.00019095982,
            "secondsToCap": 2419200
          }
        },
        "eu-west-2": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 41.36,
            "pricePerSecond": 1.709656e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 45.46,
            "pricePerSecond": 1.879134e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 60.61,
            "pricePerSecond": 2.505374e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 82.73,
            "pricePerSecond": 3.419726e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 90.93,
            "pricePerSecond": 3.758681e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 121.22,
            "pricePerSecond": 5.010747e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 165.46,
            "pricePerSecond": 6.839451e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 181.86,
            "pricePerSecond": 7.517361e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 242.44,
            "pricePerSecond": 0.00010021495,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 330.92,
            "pricePerSecond": 0.00013678902,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 363.72,
            "pricePerSecond": 0.00015034722,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 484.88,
            "pricePerSecond": 0.00020042989,
            "secondsToCap": 2419200
          }
        },
        "me-central-1": {
          "flex-512mb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 27,
            "pricePerSecond": 1.116071e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 34,
            "pricePerSecond": 1.405423e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 54,
            "pricePerSecond": 2.232143e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 68,
            "pricePerSecond": 2.810847e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 88,
            "pricePerSecond": 3.637566e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 108,
            "pricePerSecond": 4.464286e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 136,
            "pricePerSecond": 5.621693e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 176,
            "pricePerSecond": 7.275132e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 216,
            "pricePerSecond": 8.928571e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 272,
            "pricePerSecond": 0.00011243386,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 35.13,
            "pricePerSecond": 1.452133e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 48.2,
            "pricePerSecond": 1.992394e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 57.73,
            "pricePerSecond": 2.386326e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 70.34,
            "pricePerSecond": 2.907573e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 96.4,
            "pricePerSecond": 3.984788e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 115.46,
            "pricePerSecond": 4.772652e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 140.6,
            "pricePerSecond": 5.811839e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 192.79,
            "pricePerSecond": 7.969163e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 231,
            "pricePerSecond": 9.548611e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 281.2,
            "pricePerSecond": 0.00011623677,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 385.58,
            "pricePerSecond": 0.00015938327,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 462,
            "pricePerSecond": 0.00019097222,
            "secondsToCap": 2419200
          }
        },
        "us-east-1": {
          "flex-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 4,
            "pricePerSecond": 1.65344e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 25,
            "pricePerSecond": 1.033399e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 50,
            "pricePerSecond": 2.066799e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 80,
            "pricePerSecond": 3.306878e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 100,
            "pricePerSecond": 4.133598e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 128,
            "pricePerSecond": 5.291005e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 160,
            "pricePerSecond": 6.613757e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 200,
            "pricePerSecond": 8.267196e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 256,
            "pricePerSecond": 0.00010582011,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 34.93,
            "pricePerSecond": 1.443866e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 39.31,
            "pricePerSecond": 1.624917e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 51.61,
            "pricePerSecond": 2.13335e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 69.87,
            "pricePerSecond": 2.888145e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 78.63,
            "pricePerSecond": 3.250248e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 103.21,
            "pricePerSecond": 4.266286e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 139.74,
            "pricePerSecond": 5.77629e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 157.26,
            "pricePerSecond": 6.500496e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 206.42,
            "pricePerSecond": 8.532573e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 279.48,
            "pricePerSecond": 0.00011552579,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 314.52,
            "pricePerSecond": 0.00013000992,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 412.84,
            "pricePerSecond": 0.00017065146,
            "secondsToCap": 2419200
          }
        },
        "us-east-2": {
          "flex-512mb": {
            "pricePerMonth": 6,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "flex-1gb": {
            "pricePerMonth": 12,
            "pricePerSecond": 4.96032e-6,
            "secondsToCap": 2419200
          },
          "flex-2gb": {
            "pricePerMonth": 24,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "flex.c-1vcpu-256mb": {
            "pricePerMonth": 4,
            "pricePerSecond": 1.65344e-6,
            "secondsToCap": 2419200
          },
          "flex.g-1vcpu-512mb": {
            "pricePerMonth": 5,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "flex.m-1vcpu-1gb": {
            "pricePerMonth": 7,
            "pricePerSecond": 2.89352e-6,
            "secondsToCap": 2419200
          },
          "flex.c-2vcpu-512mb": {
            "pricePerMonth": 8,
            "pricePerSecond": 3.30688e-6,
            "secondsToCap": 2419200
          },
          "flex.g-2vcpu-1gb": {
            "pricePerMonth": 10,
            "pricePerSecond": 4.1336e-6,
            "secondsToCap": 2419200
          },
          "flex.m-2vcpu-2gb": {
            "pricePerMonth": 14,
            "pricePerSecond": 5.78704e-6,
            "secondsToCap": 2419200
          },
          "flex.c-4vcpu-1gb": {
            "pricePerMonth": 16,
            "pricePerSecond": 6.61376e-6,
            "secondsToCap": 2419200
          },
          "flex.g-4vcpu-2gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "flex.m-4vcpu-4gb": {
            "pricePerMonth": 28,
            "pricePerSecond": 1.157407e-5,
            "secondsToCap": 2419200
          },
          "flex.c-8vcpu-2gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "flex.g-8vcpu-4gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "flex.m-8vcpu-8gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "pro.c-1vcpu-1gb": {
            "pricePerMonth": 20,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "pro.g-1vcpu-2gb": {
            "pricePerMonth": 25,
            "pricePerSecond": 1.033399e-5,
            "secondsToCap": 2419200
          },
          "pro.m-1vcpu-4gb": {
            "pricePerMonth": 32,
            "pricePerSecond": 1.322751e-5,
            "secondsToCap": 2419200
          },
          "pro.c-2vcpu-2gb": {
            "pricePerMonth": 40,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "pro.g-2vcpu-4gb": {
            "pricePerMonth": 50,
            "pricePerSecond": 2.066799e-5,
            "secondsToCap": 2419200
          },
          "pro.m-2vcpu-8gb": {
            "pricePerMonth": 64,
            "pricePerSecond": 2.645503e-5,
            "secondsToCap": 2419200
          },
          "pro.c-4vcpu-4gb": {
            "pricePerMonth": 80,
            "pricePerSecond": 3.306878e-5,
            "secondsToCap": 2419200
          },
          "pro.g-4vcpu-8gb": {
            "pricePerMonth": 100,
            "pricePerSecond": 4.133598e-5,
            "secondsToCap": 2419200
          },
          "pro.m-4vcpu-16gb": {
            "pricePerMonth": 128,
            "pricePerSecond": 5.291005e-5,
            "secondsToCap": 2419200
          },
          "pro.c-8vcpu-8gb": {
            "pricePerMonth": 160,
            "pricePerSecond": 6.613757e-5,
            "secondsToCap": 2419200
          },
          "pro.g-8vcpu-16gb": {
            "pricePerMonth": 200,
            "pricePerSecond": 8.267196e-5,
            "secondsToCap": 2419200
          },
          "pro.m-8vcpu-32gb": {
            "pricePerMonth": 256,
            "pricePerSecond": 0.00010582011,
            "secondsToCap": 2419200
          },
          "dedicated.c-1vcpu-2gb": {
            "pricePerMonth": 34.81,
            "pricePerSecond": 1.438905e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-1vcpu-4gb": {
            "pricePerMonth": 39.31,
            "pricePerSecond": 1.624917e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-1vcpu-8gb": {
            "pricePerMonth": 51.61,
            "pricePerSecond": 2.13335e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-2vcpu-4gb": {
            "pricePerMonth": 69.62,
            "pricePerSecond": 2.877811e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-2vcpu-8gb": {
            "pricePerMonth": 78.63,
            "pricePerSecond": 3.250248e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-2vcpu-16gb": {
            "pricePerMonth": 103.21,
            "pricePerSecond": 4.266286e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-4vcpu-8gb": {
            "pricePerMonth": 139.25,
            "pricePerSecond": 5.756035e-5,
            "secondsToCap": 2419200
          },
          "dedicated.g-4vcpu-16gb": {
            "pricePerMonth": 157.26,
            "pricePerSecond": 6.500496e-5,
            "secondsToCap": 2419200
          },
          "dedicated.m-4vcpu-32gb": {
            "pricePerMonth": 206.42,
            "pricePerSecond": 8.532573e-5,
            "secondsToCap": 2419200
          },
          "dedicated.c-8vcpu-16gb": {
            "pricePerMonth": 278.5,
            "pricePerSecond": 0.0001151207,
            "secondsToCap": 2419200
          },
          "dedicated.g-8vcpu-32gb": {
            "pricePerMonth": 314.52,
            "pricePerSecond": 0.00013000992,
            "secondsToCap": 2419200
          },
          "dedicated.m-8vcpu-64gb": {
            "pricePerMonth": 412.84,
            "pricePerSecond": 0.00017065146,
            "secondsToCap": 2419200
          }
        }
      },
      "pricingGroupKeys": ["environment_identifier", "instance_identifier", "replica"]
    },
    "bandwidth": {
      "overagePricePerGb": 0.1,
      "allowanceSharing": true,
      "billingCycle": "monthly"
    },
    "privateCloud": {
      "cloudflareEdgeTraffic": {
        "dataTransfer": {
          "pricePerGb": 0.02
        },
        "requests": {
          "pricePerMillion": 0.1
        }
      },
      "regionalDataTransfer": {
        "pricePerGb": 0.01
      },
      "dataTransferOut": {
        "tiers": [{
          "id": "first10TbPerGb",
          "label": "First 10 TB",
          "limitInGb": 10000
        }, {
          "id": "next40TbPerGb",
          "label": "Next 40 TB",
          "limitInGb": 50000
        }, {
          "id": "next100TbPerGb",
          "label": "Next 100 TB",
          "limitInGb": 150000
        }, {
          "id": "over150TbPerGb",
          "label": "Over 150 TB",
          "limitInGb": null
        }],
        "pricing": {
          "us-east-1": {
            "first10TbPerGb": 0.09,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.07,
            "over150TbPerGb": 0.05
          },
          "us-east-2": {
            "first10TbPerGb": 0.09,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.07,
            "over150TbPerGb": 0.05
          },
          "eu-central-1": {
            "first10TbPerGb": 0.09,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.07,
            "over150TbPerGb": 0.05
          },
          "eu-west-1": {
            "first10TbPerGb": 0.09,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.07,
            "over150TbPerGb": 0.05
          },
          "eu-west-2": {
            "first10TbPerGb": 0.09,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.07,
            "over150TbPerGb": 0.05
          },
          "ap-southeast-1": {
            "first10TbPerGb": 0.12,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.082,
            "over150TbPerGb": 0.08
          },
          "ap-southeast-2": {
            "first10TbPerGb": 0.114,
            "next40TbPerGb": 0.098,
            "next100TbPerGb": 0.094,
            "over150TbPerGb": 0.092
          },
          "ap-northeast-1": {
            "first10TbPerGb": 0.114,
            "next40TbPerGb": 0.089,
            "next100TbPerGb": 0.086,
            "over150TbPerGb": 0.084
          },
          "ca-central-1": {
            "first10TbPerGb": 0.09,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.07,
            "over150TbPerGb": 0.05
          },
          "me-central-1": {
            "first10TbPerGb": 0.11,
            "next40TbPerGb": 0.085,
            "next100TbPerGb": 0.077,
            "over150TbPerGb": 0.055
          }
        }
      },
      "natGateway": {
        "pricing": {
          "us-east-1": 0.045,
          "us-east-2": 0.045,
          "eu-central-1": 0.052,
          "eu-west-1": 0.048,
          "eu-west-2": 0.05,
          "ap-southeast-1": 0.059,
          "ap-southeast-2": 0.059,
          "ap-northeast-1": 0.062,
          "ca-central-1": 0.05,
          "me-central-1": 0.0528
        }
      },
      "vpcPeering": {
        "inPerGb": 0.01,
        "outPerGb": 0.01
      }
    },
    "mysql": {
      "sizes": [{
        "id": "mysql-flex-512mb",
        "class": "flex",
        "vcpu": 1,
        "ram": "512 MiB",
        "suggestedStorageGB": 5,
        "scaleToZero": true,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-flex.m-1vcpu-512mb",
        "class": "flex",
        "vcpu": 1,
        "ram": "512 MiB",
        "suggestedStorageGB": 5,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "mysql-flex-1gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "1 GiB",
        "suggestedStorageGB": 10,
        "scaleToZero": true,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-flex.m-1vcpu-1gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "1 GiB",
        "suggestedStorageGB": 10,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "mysql-flex-2gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "2 GiB",
        "suggestedStorageGB": 20,
        "scaleToZero": true,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-flex.m-1vcpu-2gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "2 GiB",
        "suggestedStorageGB": 20,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "mysql-pro-4gb",
        "class": "pro",
        "vcpu": 1,
        "ram": "4 GiB",
        "suggestedStorageGB": 25,
        "scaleToZero": false,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-flex.m-1vcpu-4gb",
        "class": "flex",
        "vcpu": 1,
        "ram": "4 GiB",
        "suggestedStorageGB": 40,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "db-pro.m-1vcpu-4gb",
        "class": "pro",
        "vcpu": 1,
        "ram": "4 GiB",
        "suggestedStorageGB": 25,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "mysql-pro-8gb",
        "class": "pro",
        "vcpu": 2,
        "ram": "8 GiB",
        "suggestedStorageGB": 50,
        "scaleToZero": false,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-pro.m-2vcpu-8gb",
        "class": "pro",
        "vcpu": 2,
        "ram": "8 GiB",
        "suggestedStorageGB": 50,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "mysql-pro-16gb",
        "class": "pro",
        "vcpu": 4,
        "ram": "16 GiB",
        "suggestedStorageGB": 100,
        "scaleToZero": false,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-pro.m-4vcpu-16gb",
        "class": "pro",
        "vcpu": 4,
        "ram": "16 GiB",
        "suggestedStorageGB": 100,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "mysql-pro-32gb",
        "class": "pro",
        "vcpu": 8,
        "ram": "32 GiB",
        "suggestedStorageGB": 200,
        "scaleToZero": false,
        "visibilityStatus": "unreleased"
      }, {
        "id": "db-pro.m-8vcpu-32gb",
        "class": "pro",
        "vcpu": 8,
        "ram": "32 GiB",
        "suggestedStorageGB": 200,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }],
      "regionalPricing": {
        "ap-northeast-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-2": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "ca-central-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "eu-central-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "eu-west-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "eu-west-2": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "me-central-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 7.7,
            "pricePerSecond": 3.18287e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 15.4,
            "pricePerSecond": 6.36574e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 30.8,
            "pricePerSecond": 1.273148e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 6.4,
            "pricePerSecond": 2.6455e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 12.8,
            "pricePerSecond": 5.29101e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 25.6,
            "pricePerSecond": 1.058201e-5,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 51.2,
            "pricePerSecond": 2.116402e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 56,
            "pricePerSecond": 2.314815e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 112,
            "pricePerSecond": 4.62963e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 224,
            "pricePerSecond": 9.259259e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 448,
            "pricePerSecond": 0.00018518519,
            "secondsToCap": 2419200
          }
        },
        "us-east-1": {
          "mysql-flex-512mb": {
            "pricePerMonth": 6.6,
            "pricePerSecond": 2.72817e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 13.2,
            "pricePerSecond": 5.45635e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 26.4,
            "pricePerSecond": 1.09127e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 96,
            "pricePerSecond": 3.968254e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 192,
            "pricePerSecond": 7.936508e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 384,
            "pricePerSecond": 0.00015873016,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 5.5,
            "pricePerSecond": 2.27348e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 11,
            "pricePerSecond": 4.54696e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 96,
            "pricePerSecond": 3.968254e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 192,
            "pricePerSecond": 7.936508e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 384,
            "pricePerSecond": 0.00015873016,
            "secondsToCap": 2419200
          }
        },
        "us-east-2": {
          "mysql-flex-512mb": {
            "pricePerMonth": 6.6,
            "pricePerSecond": 2.72817e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-1gb": {
            "pricePerMonth": 13.2,
            "pricePerSecond": 5.45635e-6,
            "secondsToCap": 2419200
          },
          "mysql-flex-2gb": {
            "pricePerMonth": 26.4,
            "pricePerSecond": 1.09127e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-8gb": {
            "pricePerMonth": 96,
            "pricePerSecond": 3.968254e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-16gb": {
            "pricePerMonth": 192,
            "pricePerSecond": 7.936508e-5,
            "secondsToCap": 2419200
          },
          "mysql-pro-32gb": {
            "pricePerMonth": 384,
            "pricePerSecond": 0.00015873016,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-512mb": {
            "pricePerMonth": 5.5,
            "pricePerSecond": 2.27348e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-1gb": {
            "pricePerMonth": 11,
            "pricePerSecond": 4.54696e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-2gb": {
            "pricePerMonth": 22,
            "pricePerSecond": 9.09392e-6,
            "secondsToCap": 2419200
          },
          "db-flex.m-1vcpu-4gb": {
            "pricePerMonth": 44,
            "pricePerSecond": 1.818783e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-1vcpu-4gb": {
            "pricePerMonth": 48,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-2vcpu-8gb": {
            "pricePerMonth": 96,
            "pricePerSecond": 3.968254e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-4vcpu-16gb": {
            "pricePerMonth": 192,
            "pricePerSecond": 7.936508e-5,
            "secondsToCap": 2419200
          },
          "db-pro.m-8vcpu-32gb": {
            "pricePerMonth": 384,
            "pricePerSecond": 0.00015873016,
            "secondsToCap": 2419200
          }
        }
      },
      "storageRegions": [{
        "region": "ap-northeast-1",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "ap-southeast-1",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "ap-southeast-2",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "ca-central-1",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "eu-central-1",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "eu-west-1",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "eu-west-2",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "me-central-1",
        "storagePricePerGbMonth": 0.12
      }, {
        "region": "us-east-1",
        "storagePricePerGbMonth": 0.1
      }, {
        "region": "us-east-2",
        "storagePricePerGbMonth": 0.1
      }],
      "features": {
        "hibernation": false,
        "autoscaling": false,
        "dailyBackups": true,
        "pointInTimeRecovery": false,
        "scalableStorage": true
      },
      "pricingGroupKeys": ["database_identifier"]
    },
    "rdsMysql": {
      "sizes": [{
        "id": "db.m7g.large",
        "vcpu": 2,
        "ram": "8 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.large",
        "vcpu": 2,
        "ram": "8 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.xlarge",
        "vcpu": 4,
        "ram": "16 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.xlarge",
        "vcpu": 4,
        "ram": "16 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.2xlarge",
        "vcpu": 8,
        "ram": "32 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.2xlarge",
        "vcpu": 8,
        "ram": "32 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.4xlarge",
        "vcpu": 16,
        "ram": "64 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.4xlarge",
        "vcpu": 16,
        "ram": "64 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.8xlarge",
        "vcpu": 32,
        "ram": "128 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.8xlarge",
        "vcpu": 32,
        "ram": "128 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.12xlarge",
        "vcpu": 48,
        "ram": "192 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.12xlarge",
        "vcpu": 48,
        "ram": "192 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.16xlarge",
        "vcpu": 64,
        "ram": "256 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.16xlarge",
        "vcpu": 64,
        "ram": "256 GiB",
        "visibilityStatus": "public"
      }],
      "regionalPricing": {
        "ap-northeast-1": {
          "db.m8g.large": {
            "pricePerMonth": 205,
            "pricePerSecond": 8.473876e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 410,
            "pricePerSecond": 0.00016947751,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 820,
            "pricePerSecond": 0.00033895503,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1640,
            "pricePerSecond": 0.00067791005,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 3280,
            "pricePerSecond": 0.00135582011,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 4920,
            "pricePerSecond": 0.00203373016,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 6560,
            "pricePerSecond": 0.00271164021,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-1": {
          "db.m7g.large": {
            "pricePerMonth": 205,
            "pricePerSecond": 8.473876e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 410,
            "pricePerSecond": 0.00016947751,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 820,
            "pricePerSecond": 0.00033895503,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1640,
            "pricePerSecond": 0.00067791005,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 3280,
            "pricePerSecond": 0.00135582011,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 4920,
            "pricePerSecond": 0.00203373016,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 6560,
            "pricePerSecond": 0.00271164021,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-2": {
          "db.m7g.large": {
            "pricePerMonth": 205,
            "pricePerSecond": 8.473876e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 410,
            "pricePerSecond": 0.00016947751,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 820,
            "pricePerSecond": 0.00033895503,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1640,
            "pricePerSecond": 0.00067791005,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 3280,
            "pricePerSecond": 0.00135582011,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 4920,
            "pricePerSecond": 0.00203373016,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 6560,
            "pricePerSecond": 0.00271164021,
            "secondsToCap": 2419200
          }
        },
        "ca-central-1": {
          "db.m7g.large": {
            "pricePerMonth": 165,
            "pricePerSecond": 6.820437e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 330,
            "pricePerSecond": 0.00013640873,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 660,
            "pricePerSecond": 0.00027281746,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1320,
            "pricePerSecond": 0.00054563492,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 2640,
            "pricePerSecond": 0.00109126984,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 3960,
            "pricePerSecond": 0.00163690476,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 5280,
            "pricePerSecond": 0.00218253968,
            "secondsToCap": 2419200
          }
        },
        "eu-central-1": {
          "db.m8g.large": {
            "pricePerMonth": 175,
            "pricePerSecond": 7.233796e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 350,
            "pricePerSecond": 0.00014467593,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 700,
            "pricePerSecond": 0.00028935185,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1400,
            "pricePerSecond": 0.0005787037,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2800,
            "pricePerSecond": 0.00115740741,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 4200,
            "pricePerSecond": 0.00173611111,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 5600,
            "pricePerSecond": 0.00231481481,
            "secondsToCap": 2419200
          }
        },
        "eu-west-1": {
          "db.m8g.large": {
            "pricePerMonth": 165,
            "pricePerSecond": 6.820437e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 330,
            "pricePerSecond": 0.00013640873,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 660,
            "pricePerSecond": 0.00027281746,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1320,
            "pricePerSecond": 0.00054563492,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2640,
            "pricePerSecond": 0.00109126984,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 3960,
            "pricePerSecond": 0.00163690476,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 5280,
            "pricePerSecond": 0.00218253968,
            "secondsToCap": 2419200
          }
        },
        "eu-west-2": {
          "db.m8g.large": {
            "pricePerMonth": 175,
            "pricePerSecond": 7.233796e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 350,
            "pricePerSecond": 0.00014467593,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 700,
            "pricePerSecond": 0.00028935185,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1400,
            "pricePerSecond": 0.0005787037,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2800,
            "pricePerSecond": 0.00115740741,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 4200,
            "pricePerSecond": 0.00173611111,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 5600,
            "pricePerSecond": 0.00231481481,
            "secondsToCap": 2419200
          }
        },
        "me-central-1": {
          "db.m7g.large": {
            "pricePerMonth": 180,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 360,
            "pricePerSecond": 0.00014880952,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 720,
            "pricePerSecond": 0.00029761905,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1440,
            "pricePerSecond": 0.0005952381,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 2880,
            "pricePerSecond": 0.00119047619,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 4320,
            "pricePerSecond": 0.00178571429,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 5760,
            "pricePerSecond": 0.00238095238,
            "secondsToCap": 2419200
          }
        },
        "us-east-1": {
          "db.m8g.large": {
            "pricePerMonth": 150,
            "pricePerSecond": 6.200397e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 300,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 600,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1200,
            "pricePerSecond": 0.00049603175,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2400,
            "pricePerSecond": 0.00099206349,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 3600,
            "pricePerSecond": 0.00148809524,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 4800,
            "pricePerSecond": 0.00198412698,
            "secondsToCap": 2419200
          }
        },
        "us-east-2": {
          "db.m8g.large": {
            "pricePerMonth": 150,
            "pricePerSecond": 6.200397e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 300,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 600,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1200,
            "pricePerSecond": 0.00049603175,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2400,
            "pricePerSecond": 0.00099206349,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 3600,
            "pricePerSecond": 0.00148809524,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 4800,
            "pricePerSecond": 0.00198412698,
            "secondsToCap": 2419200
          }
        }
      },
      "storageRegions": [{
        "region": "ap-northeast-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "ap-southeast-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "ap-southeast-2",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "ca-central-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "eu-central-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "eu-west-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "eu-west-2",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "me-central-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "us-east-1",
        "storagePricePerGbMonth": 0.2
      }, {
        "region": "us-east-2",
        "storagePricePerGbMonth": 0.2
      }],
      "features": {
        "dailyBackups": true,
        "pointInTimeRecovery": true,
        "scalableStorage": true
      },
      "pricingGroupKeys": ["database_identifier", "node"]
    },
    "rdsPostgres": {
      "sizes": [{
        "id": "db.m7g.large",
        "vcpu": 2,
        "ram": "8 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.large",
        "vcpu": 2,
        "ram": "8 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.xlarge",
        "vcpu": 4,
        "ram": "16 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.xlarge",
        "vcpu": 4,
        "ram": "16 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.2xlarge",
        "vcpu": 8,
        "ram": "32 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.2xlarge",
        "vcpu": 8,
        "ram": "32 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.4xlarge",
        "vcpu": 16,
        "ram": "64 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.4xlarge",
        "vcpu": 16,
        "ram": "64 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.8xlarge",
        "vcpu": 32,
        "ram": "128 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.8xlarge",
        "vcpu": 32,
        "ram": "128 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.12xlarge",
        "vcpu": 48,
        "ram": "192 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.12xlarge",
        "vcpu": 48,
        "ram": "192 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m7g.16xlarge",
        "vcpu": 64,
        "ram": "256 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "db.m8g.16xlarge",
        "vcpu": 64,
        "ram": "256 GiB",
        "visibilityStatus": "public"
      }],
      "regionalPricing": {
        "ap-northeast-1": {
          "db.m8g.large": {
            "pricePerMonth": 205,
            "pricePerSecond": 8.473876e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 410,
            "pricePerSecond": 0.00016947751,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 820,
            "pricePerSecond": 0.00033895503,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1640,
            "pricePerSecond": 0.00067791005,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 3280,
            "pricePerSecond": 0.00135582011,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 4920,
            "pricePerSecond": 0.00203373016,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 6560,
            "pricePerSecond": 0.00271164021,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-1": {
          "db.m7g.large": {
            "pricePerMonth": 205,
            "pricePerSecond": 8.473876e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 410,
            "pricePerSecond": 0.00016947751,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 820,
            "pricePerSecond": 0.00033895503,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1640,
            "pricePerSecond": 0.00067791005,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 3280,
            "pricePerSecond": 0.00135582011,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 4920,
            "pricePerSecond": 0.00203373016,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 6560,
            "pricePerSecond": 0.00271164021,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-2": {
          "db.m7g.large": {
            "pricePerMonth": 205,
            "pricePerSecond": 8.473876e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 410,
            "pricePerSecond": 0.00016947751,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 820,
            "pricePerSecond": 0.00033895503,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1640,
            "pricePerSecond": 0.00067791005,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 3280,
            "pricePerSecond": 0.00135582011,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 4920,
            "pricePerSecond": 0.00203373016,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 6560,
            "pricePerSecond": 0.00271164021,
            "secondsToCap": 2419200
          }
        },
        "ca-central-1": {
          "db.m7g.large": {
            "pricePerMonth": 165,
            "pricePerSecond": 6.820437e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 330,
            "pricePerSecond": 0.00013640873,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 660,
            "pricePerSecond": 0.00027281746,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1320,
            "pricePerSecond": 0.00054563492,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 2640,
            "pricePerSecond": 0.00109126984,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 3960,
            "pricePerSecond": 0.00163690476,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 5280,
            "pricePerSecond": 0.00218253968,
            "secondsToCap": 2419200
          }
        },
        "eu-central-1": {
          "db.m8g.large": {
            "pricePerMonth": 175,
            "pricePerSecond": 7.233796e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 350,
            "pricePerSecond": 0.00014467593,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 700,
            "pricePerSecond": 0.00028935185,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1400,
            "pricePerSecond": 0.0005787037,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2800,
            "pricePerSecond": 0.00115740741,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 4200,
            "pricePerSecond": 0.00173611111,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 5600,
            "pricePerSecond": 0.00231481481,
            "secondsToCap": 2419200
          }
        },
        "eu-west-1": {
          "db.m8g.large": {
            "pricePerMonth": 165,
            "pricePerSecond": 6.820437e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 330,
            "pricePerSecond": 0.00013640873,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 660,
            "pricePerSecond": 0.00027281746,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1320,
            "pricePerSecond": 0.00054563492,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2640,
            "pricePerSecond": 0.00109126984,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 3960,
            "pricePerSecond": 0.00163690476,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 5280,
            "pricePerSecond": 0.00218253968,
            "secondsToCap": 2419200
          }
        },
        "eu-west-2": {
          "db.m8g.large": {
            "pricePerMonth": 175,
            "pricePerSecond": 7.233796e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 350,
            "pricePerSecond": 0.00014467593,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 700,
            "pricePerSecond": 0.00028935185,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1400,
            "pricePerSecond": 0.0005787037,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2800,
            "pricePerSecond": 0.00115740741,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 4200,
            "pricePerSecond": 0.00173611111,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 5600,
            "pricePerSecond": 0.00231481481,
            "secondsToCap": 2419200
          }
        },
        "me-central-1": {
          "db.m7g.large": {
            "pricePerMonth": 180,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "db.m7g.xlarge": {
            "pricePerMonth": 360,
            "pricePerSecond": 0.00014880952,
            "secondsToCap": 2419200
          },
          "db.m7g.2xlarge": {
            "pricePerMonth": 720,
            "pricePerSecond": 0.00029761905,
            "secondsToCap": 2419200
          },
          "db.m7g.4xlarge": {
            "pricePerMonth": 1440,
            "pricePerSecond": 0.0005952381,
            "secondsToCap": 2419200
          },
          "db.m7g.8xlarge": {
            "pricePerMonth": 2880,
            "pricePerSecond": 0.00119047619,
            "secondsToCap": 2419200
          },
          "db.m7g.12xlarge": {
            "pricePerMonth": 4320,
            "pricePerSecond": 0.00178571429,
            "secondsToCap": 2419200
          },
          "db.m7g.16xlarge": {
            "pricePerMonth": 5760,
            "pricePerSecond": 0.00238095238,
            "secondsToCap": 2419200
          }
        },
        "us-east-1": {
          "db.m8g.large": {
            "pricePerMonth": 150,
            "pricePerSecond": 6.200397e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 300,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 600,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1200,
            "pricePerSecond": 0.00049603175,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2400,
            "pricePerSecond": 0.00099206349,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 3600,
            "pricePerSecond": 0.00148809524,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 4800,
            "pricePerSecond": 0.00198412698,
            "secondsToCap": 2419200
          }
        },
        "us-east-2": {
          "db.m8g.large": {
            "pricePerMonth": 150,
            "pricePerSecond": 6.200397e-5,
            "secondsToCap": 2419200
          },
          "db.m8g.xlarge": {
            "pricePerMonth": 300,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "db.m8g.2xlarge": {
            "pricePerMonth": 600,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          },
          "db.m8g.4xlarge": {
            "pricePerMonth": 1200,
            "pricePerSecond": 0.00049603175,
            "secondsToCap": 2419200
          },
          "db.m8g.8xlarge": {
            "pricePerMonth": 2400,
            "pricePerSecond": 0.00099206349,
            "secondsToCap": 2419200
          },
          "db.m8g.12xlarge": {
            "pricePerMonth": 3600,
            "pricePerSecond": 0.00148809524,
            "secondsToCap": 2419200
          },
          "db.m8g.16xlarge": {
            "pricePerMonth": 4800,
            "pricePerSecond": 0.00198412698,
            "secondsToCap": 2419200
          }
        }
      },
      "storageRegions": [{
        "region": "ap-northeast-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "ap-southeast-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "ap-southeast-2",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "ca-central-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "eu-central-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "eu-west-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "eu-west-2",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "me-central-1",
        "storagePricePerGbMonth": 0.24
      }, {
        "region": "us-east-1",
        "storagePricePerGbMonth": 0.2
      }, {
        "region": "us-east-2",
        "storagePricePerGbMonth": 0.2
      }],
      "features": {
        "dailyBackups": true,
        "pointInTimeRecovery": true,
        "scalableStorage": true
      },
      "pricingGroupKeys": ["database_identifier", "node"]
    },
    "rdsBackups": {
      "pricing": {
        "backupStoragePricePerGbMonth": 0.12
      },
      "pricingGroupKeys": ["aws_account_id"]
    },
    "neon": {
      "provider": "Neon",
      "pricing": {
        "cpu": {
          "pricePerHour": 0.106
        },
        "storage": {
          "rootBranch": {
            "pricePerGbMonth": 0.5
          },
          "childBranch": {
            "pricePerGbMonth": 0.5
          },
          "pitr": {
            "pricePerGbMonth": 0.25
          }
        },
        "branches": {
          "pricePerBranchHour": 0
        },
        "snapshots": {
          "pricePerGbMonth": 0.125
        },
        "dataTransfer": {
          "public": {
            "pricePerGb": 0.1
          },
          "private": {
            "pricePerGb": 0.02
          }
        }
      },
      "pricingGroupKeys": ["database_identifier"]
    },
    "serverlessPostgres": {
      "provider": "Neon",
      "visibilityStatus": "deprecated",
      "pricing": {
        "cpu": {
          "pricePerHour": 0.106,
          "pricePerSecond": 2.9445e-5,
          "minimumSize": 0.25,
          "minimumPricePerHour": 0.0265,
          "minimumPricePerSecond": 7.36e-6
        },
        "storage": {
          "pricePerGbMonth": 0.5
        }
      },
      "features": {
        "hibernation": true,
        "autoscaling": true,
        "dailyBackups": false,
        "pointInTimeRecovery": true,
        "scalableStorage": true
      },
      "pricingGroupKeys": ["neon_project_identifier"]
    },
    "objectStorage": {
      "provider": "Cloudflare R2",
      "pricing": {
        "storage": {
          "pricePerGbMonth": 0.02,
          "description": "Average storage volume during the month"
        },
        "classAOperations": {
          "pricePerThousand": 0.005,
          "operations": ["ListBuckets", "PutBucket", "ListObjects", "PutObject", "CopyObject", "CompleteMultipartUpload", "CreateMultipartUpload", "LifecycleStorageTierTransition", "ListMultipartUploads", "UploadPart", "UploadPartCopy", "ListParts", "PutBucketEncryption", "PutBucketCors", "PutBucketLifecycleConfiguration"]
        },
        "classBOperations": {
          "pricePerThousand": 0.0005,
          "operations": ["HeadBucket", "HeadObject", "GetObject", "UsageSummary", "GetBucketEncryption", "GetBucketLocation", "GetBucketCors", "GetBucketLifecycleConfiguration"]
        },
        "dataTransfer": {
          "price": 0,
          "description": "Free"
        }
      },
      "pricingGroupKeys": ["r2_bucket_identifier"]
    },
    "reverb": {
      "provider": "Laravel Reverb",
      "tiers": [{
        "id": "100cc",
        "maxConcurrentConnections": 100,
        "maxMessagesPerDay": 200000,
        "pricePerMonth": 5,
        "pricePerHour": 0.00744047619,
        "pricePerSecond": 2.0668e-6,
        "secondsToCap": 2419200
      }, {
        "id": "200cc",
        "maxConcurrentConnections": 200,
        "maxMessagesPerDay": 400000,
        "pricePerMonth": 10,
        "pricePerHour": 0.01488095238,
        "pricePerSecond": 4.1336e-6,
        "secondsToCap": 2419200
      }, {
        "id": "500cc",
        "maxConcurrentConnections": 500,
        "maxMessagesPerDay": 1000000,
        "pricePerMonth": 25,
        "pricePerHour": 0.03720238095,
        "pricePerSecond": 1.033399e-5,
        "secondsToCap": 2419200
      }, {
        "id": "2000cc",
        "maxConcurrentConnections": 2000,
        "maxMessagesPerDay": 8000000,
        "pricePerMonth": 100,
        "pricePerHour": 0.14880952381,
        "pricePerSecond": 4.133598e-5,
        "secondsToCap": 2419200
      }, {
        "id": "5000cc",
        "maxConcurrentConnections": 5000,
        "maxMessagesPerDay": 16000000,
        "pricePerMonth": 200,
        "pricePerHour": 0.29761904762,
        "pricePerSecond": 8.267196e-5,
        "secondsToCap": 2419200
      }],
      "pricingGroupKeys": ["cluster_identifier"]
    },
    "kvStore": {
      "provider": "Upstash",
      "tiers": [{
        "id": "250mb",
        "storageMB": 250,
        "dataTransferGB": 100,
        "connections": 10000,
        "commands": 10000,
        "maxRecordSizeMB": 100,
        "maxRequestSizeMB": 10,
        "pricePerMonth": 5,
        "pricePerHour": 0.00744047619,
        "pricePerSecond": 2.0668e-6,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "1gb",
        "storageMB": 1024,
        "dataTransferGB": 200,
        "connections": 10000,
        "commands": 10000,
        "maxRecordSizeMB": 100,
        "maxRequestSizeMB": 10,
        "pricePerMonth": 20,
        "pricePerHour": 0.02976190476,
        "pricePerSecond": 8.2672e-6,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "2.5gb",
        "storageMB": 2560,
        "dataTransferGB": 400,
        "connections": 10000,
        "commands": 10000,
        "maxRecordSizeMB": 200,
        "maxRequestSizeMB": 10,
        "pricePerMonth": 40,
        "pricePerHour": 0.05952380952,
        "pricePerSecond": 1.653439e-5,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "5gb",
        "storageMB": 5120,
        "dataTransferGB": 800,
        "connections": 10000,
        "commands": 10000,
        "maxRecordSizeMB": 300,
        "maxRequestSizeMB": 20,
        "pricePerMonth": 77,
        "pricePerHour": 0.11458333333,
        "pricePerSecond": 3.18287e-5,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "12gb",
        "storageMB": 12288,
        "dataTransferGB": 2048,
        "connections": 10000,
        "commands": 16000,
        "maxRecordSizeMB": 400,
        "maxRequestSizeMB": 30,
        "pricePerMonth": 180,
        "pricePerHour": 0.26785714286,
        "pricePerSecond": 7.440476e-5,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "50gb",
        "storageMB": 51200,
        "dataTransferGB": 5120,
        "connections": 10000,
        "commands": 16000,
        "maxRecordSizeMB": 500,
        "maxRequestSizeMB": 50,
        "pricePerMonth": 280,
        "pricePerHour": 0.41666666667,
        "pricePerSecond": 0.00011574074,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "100gb",
        "storageMB": 102400,
        "dataTransferGB": 10240,
        "connections": 10000,
        "commands": 16000,
        "maxRecordSizeMB": 1024,
        "maxRequestSizeMB": 75,
        "pricePerMonth": 680,
        "pricePerHour": 1.0119047619,
        "pricePerSecond": 0.00028108466,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }, {
        "id": "500gb",
        "storageMB": 512000,
        "dataTransferGB": 20480,
        "connections": 100000,
        "commands": 20000,
        "maxRecordSizeMB": 5120,
        "maxRequestSizeMB": 100,
        "pricePerMonth": 1500,
        "pricePerHour": 2.23214285714,
        "pricePerSecond": 0.00062003968,
        "secondsToCap": 2419200,
        "hoursToCap": 672
      }],
      "pricingGroupKeys": ["upstash_database_identifier"]
    },
    "valkey": {
      "sizes": [{
        "id": "valkey-flex-250mb",
        "class": "flex",
        "storageMB": 250,
        "messageSizeMB": 50,
        "scaleToZero": true,
        "visibilityStatus": "public"
      }, {
        "id": "valkey-pro.250mb",
        "class": "pro",
        "storageMB": 250,
        "messageSizeMB": 50,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "valkey-flex-1gb",
        "class": "flex",
        "storageMB": 1000,
        "messageSizeMB": 100,
        "scaleToZero": true,
        "visibilityStatus": "public"
      }, {
        "id": "valkey-pro.1gb",
        "class": "pro",
        "storageMB": 1000,
        "messageSizeMB": 100,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "valkey-flex-2.5gb",
        "class": "flex",
        "storageMB": 2500,
        "messageSizeMB": 200,
        "scaleToZero": true,
        "visibilityStatus": "public"
      }, {
        "id": "valkey-pro.2.5gb",
        "class": "pro",
        "storageMB": 2500,
        "messageSizeMB": 200,
        "scaleToZero": false,
        "visibilityStatus": "deprecated"
      }, {
        "id": "valkey-pro.5gb",
        "class": "pro",
        "storageMB": 5000,
        "messageSizeMB": 500,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "valkey-pro.12gb",
        "class": "pro",
        "storageMB": 12000,
        "messageSizeMB": 1000,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "valkey-pro.25gb",
        "class": "pro",
        "storageMB": 25000,
        "messageSizeMB": 1000,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }, {
        "id": "valkey-pro.50gb",
        "class": "pro",
        "storageMB": 50000,
        "messageSizeMB": 1000,
        "scaleToZero": false,
        "visibilityStatus": "public"
      }],
      "regionalPricing": {
        "ap-northeast-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "ap-southeast-2": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "ca-central-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "eu-central-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "eu-west-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "eu-west-2": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "me-central-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 300,
            "pricePerHour": 0.44642857143,
            "pricePerSecond": 0.00012400794,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 600,
            "pricePerHour": 0.89285714286,
            "pricePerSecond": 0.00024801587,
            "secondsToCap": 2419200
          }
        },
        "us-east-1": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 250,
            "pricePerHour": 0.37202380952,
            "pricePerSecond": 0.00010333995,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 500,
            "pricePerHour": 0.74404761905,
            "pricePerSecond": 0.00020667989,
            "secondsToCap": 2419200
          }
        },
        "us-east-2": {
          "valkey-flex-250mb": {
            "pricePerMonth": 6,
            "pricePerHour": 0.00892857143,
            "pricePerSecond": 2.48016e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-1gb": {
            "pricePerMonth": 24,
            "pricePerHour": 0.03571428571,
            "pricePerSecond": 9.92063e-6,
            "secondsToCap": 2419200
          },
          "valkey-flex-2.5gb": {
            "pricePerMonth": 48,
            "pricePerHour": 0.07142857143,
            "pricePerSecond": 1.984127e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.250mb": {
            "pricePerMonth": 5,
            "pricePerHour": 0.00744047619,
            "pricePerSecond": 2.0668e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.1gb": {
            "pricePerMonth": 20,
            "pricePerHour": 0.02976190476,
            "pricePerSecond": 8.2672e-6,
            "secondsToCap": 2419200
          },
          "valkey-pro.2.5gb": {
            "pricePerMonth": 40,
            "pricePerHour": 0.05952380952,
            "pricePerSecond": 1.653439e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.5gb": {
            "pricePerMonth": 77,
            "pricePerHour": 0.11458333333,
            "pricePerSecond": 3.18287e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.12gb": {
            "pricePerMonth": 180,
            "pricePerHour": 0.26785714286,
            "pricePerSecond": 7.440476e-5,
            "secondsToCap": 2419200
          },
          "valkey-pro.25gb": {
            "pricePerMonth": 250,
            "pricePerHour": 0.37202380952,
            "pricePerSecond": 0.00010333995,
            "secondsToCap": 2419200
          },
          "valkey-pro.50gb": {
            "pricePerMonth": 500,
            "pricePerHour": 0.74404761905,
            "pricePerSecond": 0.00020667989,
            "secondsToCap": 2419200
          }
        }
      },
      "pricingGroupKeys": ["valkey_database_identifier"]
    },
    "elastiCache": {
      "sizes": [{
        "id": "cache.r7g.large",
        "vcpu": 2,
        "memoryGiB": 13.07,
        "visibilityStatus": "public"
      }, {
        "id": "cache.r7g.xlarge",
        "vcpu": 4,
        "memoryGiB": 26.32,
        "visibilityStatus": "public"
      }, {
        "id": "cache.r7g.2xlarge",
        "vcpu": 8,
        "memoryGiB": 52.82,
        "visibilityStatus": "public"
      }, {
        "id": "cache.r7g.4xlarge",
        "vcpu": 16,
        "memoryGiB": 105.81,
        "visibilityStatus": "public"
      }, {
        "id": "cache.r7g.8xlarge",
        "vcpu": 32,
        "memoryGiB": 209.55,
        "visibilityStatus": "public"
      }, {
        "id": "cache.r7g.12xlarge",
        "vcpu": 48,
        "memoryGiB": 317.77,
        "visibilityStatus": "public"
      }, {
        "id": "cache.r7g.16xlarge",
        "vcpu": 64,
        "memoryGiB": 419.09,
        "visibilityStatus": "public"
      }],
      "valkey": {
        "regionalPricing": {
          "ap-northeast-1": {
            "cache.r7g.large": {
              "pricePerMonth": 190,
              "pricePerHour": 0.28273809524,
              "pricePerSecond": 7.853836e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 380,
              "pricePerHour": 0.56547619048,
              "pricePerSecond": 0.00015707672,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 760,
              "pricePerHour": 1.13095238095,
              "pricePerSecond": 0.00031415344,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1520,
              "pricePerHour": 2.2619047619,
              "pricePerSecond": 0.00062830688,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3040,
              "pricePerHour": 4.52380952381,
              "pricePerSecond": 0.00125661376,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4560,
              "pricePerHour": 6.78571428571,
              "pricePerSecond": 0.00188492063,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6080,
              "pricePerHour": 9.04761904762,
              "pricePerSecond": 0.00251322751,
              "secondsToCap": 2419200
            }
          },
          "ap-southeast-1": {
            "cache.r7g.large": {
              "pricePerMonth": 190,
              "pricePerHour": 0.28273809524,
              "pricePerSecond": 7.853836e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 380,
              "pricePerHour": 0.56547619048,
              "pricePerSecond": 0.00015707672,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 760,
              "pricePerHour": 1.13095238095,
              "pricePerSecond": 0.00031415344,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1520,
              "pricePerHour": 2.2619047619,
              "pricePerSecond": 0.00062830688,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3040,
              "pricePerHour": 4.52380952381,
              "pricePerSecond": 0.00125661376,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4560,
              "pricePerHour": 6.78571428571,
              "pricePerSecond": 0.00188492063,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6080,
              "pricePerHour": 9.04761904762,
              "pricePerSecond": 0.00251322751,
              "secondsToCap": 2419200
            }
          },
          "ap-southeast-2": {
            "cache.r7g.large": {
              "pricePerMonth": 190,
              "pricePerHour": 0.28273809524,
              "pricePerSecond": 7.853836e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 380,
              "pricePerHour": 0.56547619048,
              "pricePerSecond": 0.00015707672,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 760,
              "pricePerHour": 1.13095238095,
              "pricePerSecond": 0.00031415344,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1520,
              "pricePerHour": 2.2619047619,
              "pricePerSecond": 0.00062830688,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3040,
              "pricePerHour": 4.52380952381,
              "pricePerSecond": 0.00125661376,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4560,
              "pricePerHour": 6.78571428571,
              "pricePerSecond": 0.00188492063,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6080,
              "pricePerHour": 9.04761904762,
              "pricePerSecond": 0.00251322751,
              "secondsToCap": 2419200
            }
          },
          "ca-central-1": {
            "cache.r7g.large": {
              "pricePerMonth": 170,
              "pricePerHour": 0.25297619048,
              "pricePerSecond": 7.027116e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 340,
              "pricePerHour": 0.50595238095,
              "pricePerSecond": 0.00014054233,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 680,
              "pricePerHour": 1.0119047619,
              "pricePerSecond": 0.00028108466,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1360,
              "pricePerHour": 2.02380952381,
              "pricePerSecond": 0.00056216931,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 2720,
              "pricePerHour": 4.04761904762,
              "pricePerSecond": 0.00112433862,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4080,
              "pricePerHour": 6.07142857143,
              "pricePerSecond": 0.00168650794,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 5440,
              "pricePerHour": 8.09523809524,
              "pricePerSecond": 0.00224867725,
              "secondsToCap": 2419200
            }
          },
          "eu-central-1": {
            "cache.r7g.large": {
              "pricePerMonth": 190,
              "pricePerHour": 0.28273809524,
              "pricePerSecond": 7.853836e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 380,
              "pricePerHour": 0.56547619048,
              "pricePerSecond": 0.00015707672,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 760,
              "pricePerHour": 1.13095238095,
              "pricePerSecond": 0.00031415344,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1520,
              "pricePerHour": 2.2619047619,
              "pricePerSecond": 0.00062830688,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3040,
              "pricePerHour": 4.52380952381,
              "pricePerSecond": 0.00125661376,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4560,
              "pricePerHour": 6.78571428571,
              "pricePerSecond": 0.00188492063,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6080,
              "pricePerHour": 9.04761904762,
              "pricePerSecond": 0.00251322751,
              "secondsToCap": 2419200
            }
          },
          "eu-west-1": {
            "cache.r7g.large": {
              "pricePerMonth": 170,
              "pricePerHour": 0.25297619048,
              "pricePerSecond": 7.027116e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 340,
              "pricePerHour": 0.50595238095,
              "pricePerSecond": 0.00014054233,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 680,
              "pricePerHour": 1.0119047619,
              "pricePerSecond": 0.00028108466,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1360,
              "pricePerHour": 2.02380952381,
              "pricePerSecond": 0.00056216931,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 2720,
              "pricePerHour": 4.04761904762,
              "pricePerSecond": 0.00112433862,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4080,
              "pricePerHour": 6.07142857143,
              "pricePerSecond": 0.00168650794,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 5440,
              "pricePerHour": 8.09523809524,
              "pricePerSecond": 0.00224867725,
              "secondsToCap": 2419200
            }
          },
          "eu-west-2": {
            "cache.r7g.large": {
              "pricePerMonth": 200,
              "pricePerHour": 0.29761904762,
              "pricePerSecond": 8.267196e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 400,
              "pricePerHour": 0.59523809524,
              "pricePerSecond": 0.00016534392,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 800,
              "pricePerHour": 1.19047619048,
              "pricePerSecond": 0.00033068783,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1600,
              "pricePerHour": 2.38095238095,
              "pricePerSecond": 0.00066137566,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3200,
              "pricePerHour": 4.7619047619,
              "pricePerSecond": 0.00132275132,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4800,
              "pricePerHour": 7.14285714286,
              "pricePerSecond": 0.00198412698,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6400,
              "pricePerHour": 9.52380952381,
              "pricePerSecond": 0.00264550265,
              "secondsToCap": 2419200
            }
          },
          "us-east-1": {
            "cache.r7g.large": {
              "pricePerMonth": 160,
              "pricePerHour": 0.2380952381,
              "pricePerSecond": 6.613757e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 320,
              "pricePerHour": 0.47619047619,
              "pricePerSecond": 0.00013227513,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 640,
              "pricePerHour": 0.95238095238,
              "pricePerSecond": 0.00026455026,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1280,
              "pricePerHour": 1.90476190476,
              "pricePerSecond": 0.00052910053,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 2560,
              "pricePerHour": 3.80952380952,
              "pricePerSecond": 0.00105820106,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 3840,
              "pricePerHour": 5.71428571429,
              "pricePerSecond": 0.00158730159,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 5120,
              "pricePerHour": 7.61904761905,
              "pricePerSecond": 0.00211640212,
              "secondsToCap": 2419200
            }
          },
          "us-east-2": {
            "cache.r7g.large": {
              "pricePerMonth": 160,
              "pricePerHour": 0.2380952381,
              "pricePerSecond": 6.613757e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 320,
              "pricePerHour": 0.47619047619,
              "pricePerSecond": 0.00013227513,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 640,
              "pricePerHour": 0.95238095238,
              "pricePerSecond": 0.00026455026,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1280,
              "pricePerHour": 1.90476190476,
              "pricePerSecond": 0.00052910053,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 2560,
              "pricePerHour": 3.80952380952,
              "pricePerSecond": 0.00105820106,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 3840,
              "pricePerHour": 5.71428571429,
              "pricePerSecond": 0.00158730159,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 5120,
              "pricePerHour": 7.61904761905,
              "pricePerSecond": 0.00211640212,
              "secondsToCap": 2419200
            }
          }
        }
      },
      "redis": {
        "regionalPricing": {
          "ap-northeast-1": {
            "cache.r7g.large": {
              "pricePerMonth": 230,
              "pricePerHour": 0.34226190476,
              "pricePerSecond": 9.507275e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 460,
              "pricePerHour": 0.68452380952,
              "pricePerSecond": 0.0001901455,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 920,
              "pricePerHour": 1.36904761905,
              "pricePerSecond": 0.00038029101,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1840,
              "pricePerHour": 2.7380952381,
              "pricePerSecond": 0.00076058201,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3680,
              "pricePerHour": 5.47619047619,
              "pricePerSecond": 0.00152116402,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5520,
              "pricePerHour": 8.21428571429,
              "pricePerSecond": 0.00228174603,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 7360,
              "pricePerHour": 10.95238095238,
              "pricePerSecond": 0.00304232804,
              "secondsToCap": 2419200
            }
          },
          "ap-southeast-1": {
            "cache.r7g.large": {
              "pricePerMonth": 230,
              "pricePerHour": 0.34226190476,
              "pricePerSecond": 9.507275e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 460,
              "pricePerHour": 0.68452380952,
              "pricePerSecond": 0.0001901455,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 920,
              "pricePerHour": 1.36904761905,
              "pricePerSecond": 0.00038029101,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1840,
              "pricePerHour": 2.7380952381,
              "pricePerSecond": 0.00076058201,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3680,
              "pricePerHour": 5.47619047619,
              "pricePerSecond": 0.00152116402,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5520,
              "pricePerHour": 8.21428571429,
              "pricePerSecond": 0.00228174603,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 7360,
              "pricePerHour": 10.95238095238,
              "pricePerSecond": 0.00304232804,
              "secondsToCap": 2419200
            }
          },
          "ap-southeast-2": {
            "cache.r7g.large": {
              "pricePerMonth": 240,
              "pricePerHour": 0.35714285714,
              "pricePerSecond": 9.920635e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 480,
              "pricePerHour": 0.71428571429,
              "pricePerSecond": 0.0001984127,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 960,
              "pricePerHour": 1.42857142857,
              "pricePerSecond": 0.0003968254,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1920,
              "pricePerHour": 2.85714285714,
              "pricePerSecond": 0.00079365079,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3840,
              "pricePerHour": 5.71428571429,
              "pricePerSecond": 0.00158730159,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5760,
              "pricePerHour": 8.57142857143,
              "pricePerSecond": 0.00238095238,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 7680,
              "pricePerHour": 11.42857142857,
              "pricePerSecond": 0.00317460317,
              "secondsToCap": 2419200
            }
          },
          "ca-central-1": {
            "cache.r7g.large": {
              "pricePerMonth": 210,
              "pricePerHour": 0.3125,
              "pricePerSecond": 8.680556e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 420,
              "pricePerHour": 0.625,
              "pricePerSecond": 0.00017361111,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 840,
              "pricePerHour": 1.25,
              "pricePerSecond": 0.00034722222,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1680,
              "pricePerHour": 2.5,
              "pricePerSecond": 0.00069444444,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3360,
              "pricePerHour": 5,
              "pricePerSecond": 0.00138888889,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5040,
              "pricePerHour": 7.5,
              "pricePerSecond": 0.00208333333,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6720,
              "pricePerHour": 10,
              "pricePerSecond": 0.00277777778,
              "secondsToCap": 2419200
            }
          },
          "eu-central-1": {
            "cache.r7g.large": {
              "pricePerMonth": 230,
              "pricePerHour": 0.34226190476,
              "pricePerSecond": 9.507275e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 460,
              "pricePerHour": 0.68452380952,
              "pricePerSecond": 0.0001901455,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 920,
              "pricePerHour": 1.36904761905,
              "pricePerSecond": 0.00038029101,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1840,
              "pricePerHour": 2.7380952381,
              "pricePerSecond": 0.00076058201,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3680,
              "pricePerHour": 5.47619047619,
              "pricePerSecond": 0.00152116402,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5520,
              "pricePerHour": 8.21428571429,
              "pricePerSecond": 0.00228174603,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 7360,
              "pricePerHour": 10.95238095238,
              "pricePerSecond": 0.00304232804,
              "secondsToCap": 2419200
            }
          },
          "eu-west-1": {
            "cache.r7g.large": {
              "pricePerMonth": 220,
              "pricePerHour": 0.32738095238,
              "pricePerSecond": 9.093915e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 440,
              "pricePerHour": 0.65476190476,
              "pricePerSecond": 0.00018187831,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 880,
              "pricePerHour": 1.30952380952,
              "pricePerSecond": 0.00036375661,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1760,
              "pricePerHour": 2.61904761905,
              "pricePerSecond": 0.00072751323,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3520,
              "pricePerHour": 5.2380952381,
              "pricePerSecond": 0.00145502646,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5280,
              "pricePerHour": 7.85714285714,
              "pricePerSecond": 0.00218253968,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 7040,
              "pricePerHour": 10.47619047619,
              "pricePerSecond": 0.00291005291,
              "secondsToCap": 2419200
            }
          },
          "eu-west-2": {
            "cache.r7g.large": {
              "pricePerMonth": 240,
              "pricePerHour": 0.35714285714,
              "pricePerSecond": 9.920635e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 480,
              "pricePerHour": 0.71428571429,
              "pricePerSecond": 0.0001984127,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 960,
              "pricePerHour": 1.42857142857,
              "pricePerSecond": 0.0003968254,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1920,
              "pricePerHour": 2.85714285714,
              "pricePerSecond": 0.00079365079,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3840,
              "pricePerHour": 5.71428571429,
              "pricePerSecond": 0.00158730159,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 5760,
              "pricePerHour": 8.57142857143,
              "pricePerSecond": 0.00238095238,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 7680,
              "pricePerHour": 11.42857142857,
              "pricePerSecond": 0.00317460317,
              "secondsToCap": 2419200
            }
          },
          "us-east-1": {
            "cache.r7g.large": {
              "pricePerMonth": 200,
              "pricePerHour": 0.29761904762,
              "pricePerSecond": 8.267196e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 400,
              "pricePerHour": 0.59523809524,
              "pricePerSecond": 0.00016534392,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 800,
              "pricePerHour": 1.19047619048,
              "pricePerSecond": 0.00033068783,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1600,
              "pricePerHour": 2.38095238095,
              "pricePerSecond": 0.00066137566,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3200,
              "pricePerHour": 4.7619047619,
              "pricePerSecond": 0.00132275132,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4800,
              "pricePerHour": 7.14285714286,
              "pricePerSecond": 0.00198412698,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6400,
              "pricePerHour": 9.52380952381,
              "pricePerSecond": 0.00264550265,
              "secondsToCap": 2419200
            }
          },
          "us-east-2": {
            "cache.r7g.large": {
              "pricePerMonth": 200,
              "pricePerHour": 0.29761904762,
              "pricePerSecond": 8.267196e-5,
              "secondsToCap": 2419200
            },
            "cache.r7g.xlarge": {
              "pricePerMonth": 400,
              "pricePerHour": 0.59523809524,
              "pricePerSecond": 0.00016534392,
              "secondsToCap": 2419200
            },
            "cache.r7g.2xlarge": {
              "pricePerMonth": 800,
              "pricePerHour": 1.19047619048,
              "pricePerSecond": 0.00033068783,
              "secondsToCap": 2419200
            },
            "cache.r7g.4xlarge": {
              "pricePerMonth": 1600,
              "pricePerHour": 2.38095238095,
              "pricePerSecond": 0.00066137566,
              "secondsToCap": 2419200
            },
            "cache.r7g.8xlarge": {
              "pricePerMonth": 3200,
              "pricePerHour": 4.7619047619,
              "pricePerSecond": 0.00132275132,
              "secondsToCap": 2419200
            },
            "cache.r7g.12xlarge": {
              "pricePerMonth": 4800,
              "pricePerHour": 7.14285714286,
              "pricePerSecond": 0.00198412698,
              "secondsToCap": 2419200
            },
            "cache.r7g.16xlarge": {
              "pricePerMonth": 6400,
              "pricePerHour": 9.52380952381,
              "pricePerSecond": 0.00264550265,
              "secondsToCap": 2419200
            }
          }
        }
      },
      "backup": {
        "pricePerGbMonth": 0.1
      }
    },
    "managedQueue": {
      "sizes": [{
        "id": "mq-pro-256mb",
        "class": "pro",
        "vcpu": 0.0625,
        "ram": "256 MiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-pro-512mb",
        "class": "pro",
        "vcpu": 0.125,
        "ram": "512 MiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-pro-1gb",
        "class": "pro",
        "vcpu": 0.25,
        "ram": "1 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-pro-2gb",
        "class": "pro",
        "vcpu": 0.5,
        "ram": "2 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-pro-4gb",
        "class": "pro",
        "vcpu": 1,
        "ram": "4 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-pro-8gb",
        "class": "pro",
        "vcpu": 2,
        "ram": "8 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-dedicated-256mb",
        "class": "dedicated",
        "vcpu": 0.0625,
        "ram": "256 MiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-dedicated-512mb",
        "class": "dedicated",
        "vcpu": 0.125,
        "ram": "512 MiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-dedicated-1gb",
        "class": "dedicated",
        "vcpu": 0.25,
        "ram": "1 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-dedicated-2gb",
        "class": "dedicated",
        "vcpu": 0.5,
        "ram": "2 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-dedicated-4gb",
        "class": "dedicated",
        "vcpu": 1,
        "ram": "4 GiB",
        "visibilityStatus": "public"
      }, {
        "id": "mq-dedicated-8gb",
        "class": "dedicated",
        "vcpu": 2,
        "ram": "8 GiB",
        "visibilityStatus": "public"
      }],
      "regionalPricing": {
        "ap-northeast-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "ap-southeast-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "ap-southeast-2": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "ca-central-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "eu-central-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "eu-west-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "eu-west-2": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "me-central-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 5.84472e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.8264e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.6528e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 7.3056e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.46124e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.92236e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 5.84472e-5
          }
        },
        "us-east-1": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.522e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.044e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 6.088e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.2177e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.4353e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 4.8706e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.522e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.044e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 6.088e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.2177e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.4353e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 4.8706e-5
          }
        },
        "us-east-2": {
          "mq-pro-256mb": {
            "pricePerSecond": 1.522e-6
          },
          "mq-pro-512mb": {
            "pricePerSecond": 3.044e-6
          },
          "mq-pro-1gb": {
            "pricePerSecond": 6.088e-6
          },
          "mq-pro-2gb": {
            "pricePerSecond": 1.2177e-5
          },
          "mq-pro-4gb": {
            "pricePerSecond": 2.4353e-5
          },
          "mq-pro-8gb": {
            "pricePerSecond": 4.8706e-5
          },
          "mq-dedicated-256mb": {
            "pricePerSecond": 1.522e-6
          },
          "mq-dedicated-512mb": {
            "pricePerSecond": 3.044e-6
          },
          "mq-dedicated-1gb": {
            "pricePerSecond": 6.088e-6
          },
          "mq-dedicated-2gb": {
            "pricePerSecond": 1.2177e-5
          },
          "mq-dedicated-4gb": {
            "pricePerSecond": 2.4353e-5
          },
          "mq-dedicated-8gb": {
            "pricePerSecond": 4.8706e-5
          }
        }
      },
      "operations": {
        "pricePerMillion": 1,
        "pricePerOperation": 1.0e-6
      },
      "pricingGroupKeys": ["environment_identifier", "instance_identifier", "queue_name"]
    },
    "edgeSmartRouting": {
      "provider": "Cloudflare Argo",
      "pricing": {
        "additionalPricePerRequest": 5.0e-6
      }
    },
    "dedicatedZones": {
      "provider": "Cloudflare",
      "pricing": {
        "pricePerZone": 250
      }
    },
    "ipAddress": {
      "provider": "Laravel Cloud",
      "pricing": {
        "dedicatedInbound": {
          "pricePerMonth": 100
        }
      }
    },
    "domains": {
      "provider": "Laravel Cloud",
      "pricing": {
        "pricePerDomain": 0.25
      }
    }
  }
};

export const MySQLComputePriceTableV2 = ({pricesData}) => {
  const formatCurrency = amount => {
    if (amount >= 0.01) {
      return `$${amount.toFixed(4)}`;
    }
    const decimals = Math.min(9, Math.ceil(-Math.log10(amount)) + 2);
    return `$${amount.toFixed(decimals)}`;
  };
  const narrowColumnStyles = {
    class: {
      width: '3.5rem',
      minWidth: '3.5rem'
    },
    vcpu: {
      width: '3rem',
      minWidth: '3rem'
    },
    ram: {
      width: '5rem',
      minWidth: '5rem'
    }
  };
  const visibleSizes = pricesData.charges.mysql.sizes.filter(size => size.visibilityStatus === "public");
  const groups = {};
  visibleSizes.forEach(size => {
    const key = size.class;
    if (!groups[key]) {
      groups[key] = [];
    }
    groups[key].push(size);
  });
  const groupKeys = Object.keys(groups);
  const regions = (pricesData.regions || []).filter(region => region.visibilityStatus === "public");
  const [selectedRegion, setSelectedRegion] = useState(regions[0]?.id || '');
  if (!regions.length) {
    return <div>No regions available</div>;
  }
  const currentRegion = regions.find(r => r.id === selectedRegion) || regions[0];
  return <div>
            <select value={selectedRegion} onChange={e => setSelectedRegion(e.target.value)} className="my-4 select-arrow flex rounded-xl w-full max-w-xs items-center text-sm leading-6 h-9 pl-3.5 pr-8 shadow-sm text-gray-500 dark:text-white/50 bg-background-light dark:bg-background-dark dark:brightness-[1.1] dark:ring-1 dark:hover:brightness-[1.25] ring-1 ring-gray-400/20 hover:ring-gray-600/25 dark:ring-gray-600/30 dark:hover:ring-gray-500/30 focus:outline-primary truncate gap-2 appearance-none">
                {regions.map(region => <option key={region.id} value={region.id}>
                        {region.name}
                    </option>)}
            </select>

            <table className="table table-fixed w-full">
                <thead>
                    <tr className="text-left">
                        <th style={narrowColumnStyles.class}>Class</th>
                        <th style={narrowColumnStyles.vcpu}>vCPU</th>
                        <th style={narrowColumnStyles.ram}>RAM</th>
                        <th>Price / second</th>
                        <th>Monthly cap</th>
                    </tr>
                </thead>
                <tbody>
                    {groupKeys.map(key => {
    const sizes = groups[key];
    return sizes.map((size, index) => {
      const pricing = pricesData.charges.mysql.regionalPricing[currentRegion.id][size.id];
      const isFirst = index === 0;
      return <tr key={size.id}>
                                    <td style={narrowColumnStyles.class}>{isFirst ? size.class : ''}</td>
                                    <td style={narrowColumnStyles.vcpu}>{size.vcpu}</td>
                                    <td style={narrowColumnStyles.ram}>{size.ram}</td>
                                    <td>{formatCurrency(pricing.pricePerSecond)}</td>
                                    <td>{`$${pricing.pricePerMonth.toFixed(2)}`}</td>
                                </tr>;
    });
  })}
                </tbody>
            </table>
            {(() => {
    const storageRegion = pricesData.charges.mysql.storageRegions.find(sr => sr.region === currentRegion.id);
    return storageRegion ? <div className="mt-4">
                        <p><span className="font-bold">Storage & Backups:</span> ${storageRegion.storagePricePerGbMonth.toFixed(2)} per GB-month</p>
                    </div> : null;
  })()}
        </div>;
};

export const ComputeTable = ({pricesData}) => {
  const formatCurrency = amount => {
    if (amount >= 0.01) {
      return `$${amount.toFixed(4)}`;
    }
    const decimals = Math.min(9, Math.ceil(-Math.log10(amount)) + 2);
    return `$${amount.toFixed(decimals)}`;
  };
  const narrowColumnStyles = {
    class: {
      width: '3.5rem',
      minWidth: '3.5rem'
    },
    vcpu: {
      width: '3rem',
      minWidth: '3rem'
    },
    ram: {
      width: '5rem',
      minWidth: '5rem'
    }
  };
  const visibleSizes = pricesData.charges.compute.sizes.filter(size => size.visibilityStatus === "public" && size.class !== "dedicated");
  const groups = {};
  visibleSizes.forEach(size => {
    const key = size.class;
    if (!groups[key]) {
      groups[key] = [];
    }
    groups[key].push(size);
  });
  const groupKeys = Object.keys(groups);
  const regions = (pricesData.regions || []).filter(region => region.visibilityStatus === "public");
  const [selectedRegion, setSelectedRegion] = useState(regions[0]?.id || '');
  if (!regions.length) {
    return <div>No regions available</div>;
  }
  const currentRegion = regions.find(r => r.id === selectedRegion) || regions[0];
  return <div>
            <select value={selectedRegion} onChange={e => setSelectedRegion(e.target.value)} className="mb-4 select-arrow flex rounded-xl w-full max-w-xs items-center text-sm leading-6 h-9 pl-3.5 pr-8 shadow-sm text-gray-500 dark:text-white/50 bg-background-light dark:bg-background-dark dark:brightness-[1.1] dark:ring-1 dark:hover:brightness-[1.25] ring-1 ring-gray-400/20 hover:ring-gray-600/25 dark:ring-gray-600/30 dark:hover:ring-gray-500/30 focus:outline-primary truncate gap-2 appearance-none">
                {regions.map(region => <option key={region.id} value={region.id}>
                        {region.name}
                    </option>)}
            </select>

            <table className="table table-fixed w-full">
                <thead>
                    <tr className="text-left">
                        <th style={narrowColumnStyles.class}>Class</th>
                        <th style={narrowColumnStyles.vcpu}>vCPU</th>
                        <th style={narrowColumnStyles.ram}>RAM</th>
                        <th>Included Data Transfer</th>
                        <th>Price / second</th>
                        <th>Monthly cap</th>
                    </tr>
                </thead>
                <tbody>
                    {groupKeys.map(key => {
    const sizes = groups[key];
    return sizes.map((size, index) => {
      const pricing = pricesData.charges.compute.regionalPricing[currentRegion.id][size.id];
      const isFirst = index === 0;
      return <tr key={size.id}>
                                    <td style={narrowColumnStyles.class}>{isFirst ? size.class : ''}</td>
                                    <td style={narrowColumnStyles.vcpu}>{size.vcpu}</td>
                                    <td style={narrowColumnStyles.ram}>{size.ram}</td>
                                    <td>{size.dataTransferAllowanceGB} GB/mo</td>
                                    <td>{formatCurrency(pricing.pricePerSecond)}</td>
                                    <td>{`$${pricing.pricePerMonth.toFixed(2)}`}</td>
                                </tr>;
    });
  })}
                </tbody>
            </table>
        </div>;
};

## Plans

The <b>Starter plan</b> is perfect for kicking the tires and hosting small-scale, real-world applications. For \$5/mo, you get \$5 in monthly usage credits plus access to lightweight and cost-efficient compute, databases, and other resources. New Starter subscriptions get their first month free. Scale to Zero is on by default, so you can preview and ship your code without the fear of a runaway bill. Plus, **custom domains are included**, giving you all the essentials to ship your first apps to production right away.

As your applications scale up, you may need access to advanced features like autoscaling, high performance compute, dedicated worker clusters, preview environments, edge security, and user/role management. When you're ready, upgrade to the **Growth** or **Business** plans to unlock the full range of Laravel Cloud's productivity, performance, and security features. Every paid plan includes \$5 in monthly usage credits, which apply to all usage and reset at the start of each billing cycle.

<table class="table table-auto">
  <thead class="">
    <tr class="text-lg text-center">
      <th />

      <th class="text-center">
        <div>Starter</div>
        <div class="text-xs font-normal text-gray-500">\$5/mo + usage</div>
      </th>

      <th class="text-center">
        <div>Growth</div>
        <div class="text-xs font-normal text-gray-500">\$20/mo + usage</div>
      </th>

      <th class="text-center">
        <div>Business</div>
        <div class="text-xs font-normal text-gray-500">\$200/mo + usage</div>
      </th>

      <th class="text-center">
        <div>Enterprise</div>
        <div class="text-xs font-normal text-gray-500">Custom pricing</div>
      </th>
    </tr>
  </thead>

  <tbody class="text-center">
    <tr>
      <td />

      <td class="whitespace-nowrap">
        <a class="group px-4 py-1.5 relative inline-flex items-center text-sm font-medium not-prose" target="_blank" href="https://cloud.laravel.com/signup?plan=starter">
          <span class="absolute inset-0 bg-primary-dark rounded-full group-hover:opacity-[0.9]" />

          <div class="mr-0.5 space-x-2.5 flex items-center z-10 text-white">Get Started</div>
        </a>
      </td>

      <td class="whitespace-nowrap">
        <a class="group px-4 py-1.5 relative inline-flex items-center text-sm font-medium not-prose" target="_blank" href="https://cloud.laravel.com/signup?plan=growth">
          <span class="absolute inset-0 bg-primary-dark rounded-full group-hover:opacity-[0.9]" />

          <div class="mr-0.5 space-x-2.5 flex items-center z-10 text-white">Get Started</div>
        </a>
      </td>

      <td class="whitespace-nowrap">
        <a class="group px-4 py-1.5 relative inline-flex items-center text-sm font-medium not-prose" target="_blank" href="https://cloud.laravel.com/signup?plan=business">
          <span class="absolute inset-0 bg-primary-dark rounded-full group-hover:opacity-[0.9]" />

          <div class="mr-0.5 space-x-2.5 flex items-center z-10 text-white">Get Started</div>
        </a>
      </td>

      <td><a target="_blank" href="https://cloud.laravel.com/contact">Contact us</a></td>
    </tr>

    <tr>
      <td class="text-left font-bold">Features</td>
    </tr>

    <tr class="short">
      <td class="text-left">Applications</td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">Environments</td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">Builds</td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>

      <td>
        Unlimited
      </td>
    </tr>

    <tr>
      <td class="text-left">Background processes</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Task scheduler</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Scale to Zero</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Spending limits</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Worker clusters</td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Managed queues</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Preview environments</td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">Autoscaling</td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        Up to 10x
      </td>

      <td>
        Unlimited
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left font-bold">Networking & Security</td>
    </tr>

    <tr>
      <td class="text-left">SSL/TLS</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">laravel.cloud domains</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left">Custom domains</td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">
        DDoS mitigation
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">
        WAF
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        Basic
      </td>

      <td>
        Advanced
      </td>

      <td>
        Custom
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">
        Private networking add-ons
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr>
      <td class="text-left font-bold">User management</td>
    </tr>

    <tr class="short">
      <td class="text-left">
        Two Factor Authentication
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>

      <td>
        <Icon icon="check" iconType="solid" />
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">
        <Tooltip tip="Role Based Access Control"><a href="/rbac">RBAC</a></Tooltip>
      </td>

      <td class="short">
        <Icon icon="check" iconType="solid" />
      </td>

      <td class="short">
        Team
      </td>

      <td class="short">
        Custom
      </td>

      <td class="short">
        Custom
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">
        <Tooltip tip="Enable single sign on with SAML">SAML</Tooltip>
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        Coming soon
      </td>
    </tr>

    <tr class="short">
      <td class="text-left">
        <Tooltip tip="Automate user provisioning & deprovisioning with SCIM">SCIM Provisioning</Tooltip>
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td>
        <Icon icon="dash" iconType="solid" color="3e4246" />
      </td>

      <td colspan="2">
        Coming soon
      </td>
    </tr>

    <tr>
      <td class="text-left font-bold">Allowances</td>
    </tr>

    <tr>
      <td class="text-left short">Monthly usage credits</td>
      <td class="short text-xs">\$5</td>
      <td class="short text-xs">\$5</td>
      <td class="short text-xs">\$5</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left font-bold">Limits</td>
    </tr>

    <tr>
      <td class="text-left short">Scaling</td>
      <td class="short text-xs">1x (no scaling)</td>
      <td class="short text-xs">1-10x (fixed or auto)</td>
      <td class="short text-xs">Unlimited</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left short">App compute sizes</td>
      <td class="short text-xs">Flex</td>
      <td class="short text-xs">Flex & Pro</td>
      <td class="short text-xs">Flex & Pro</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left short">MySQL database sizes</td>
      <td class="short text-xs">Flex</td>
      <td class="short text-xs">Flex & Pro</td>
      <td class="short text-xs">Flex & Pro</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left short">Serverless Postgres sizes</td>
      <td class="short text-xs">Up to 1 vCPU</td>
      <td class="short text-xs">Up to 4 vCPU</td>
      <td class="short text-xs">Up to 10 vCPU</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left short">Valkey sizes</td>
      <td class="short text-xs">Flex</td>
      <td class="short text-xs">Flex & Pro</td>
      <td class="short text-xs">Flex & Pro</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left short">Custom domains (per org)</td>
      <td class="short text-xs">10</td>
      <td class="short text-xs">50</td>
      <td class="short text-xs">250</td>
      <td class="short text-xs">Custom</td>
    </tr>

    <tr>
      <td class="text-left short">Log & Metrics retention</td>
      <td class="short text-xs">1 day</td>
      <td class="short text-xs">7 days</td>
      <td class="short text-xs">30 days</td>
      <td class="short text-xs">Custom</td>
    </tr>
  </tbody>
</table>

## Compute

Laravel Cloud applications run on the latest generation of AWS Graviton EC2 servers with an optimized cost to performance ratio, allowing us to pass on best-in-class compute performance and pricing.

Laravel Cloud offers two classes of compute: Flex and Pro. Within each class, there are multiple sizes of CPU and RAM available.

<CardGroup cols="2">
  <Card title="Flex" icon="microchip" iconType="light">
    Lightweight and cost-efficient. Scales to zero and wakes up in under 500 milliseconds. Perfect for smaller apps that have periods of inactivity.
  </Card>

  <Card title="Pro" icon="microchip" iconType="solid">
    More powerful compute designed for sustained, heavy utilization. Best for large-scale, always-on production applications.
  </Card>
</CardGroup>

<Tip>
  Enable [Scale to Zero](/compute#scale-to-zero) on your latency-tolerant environments to save even more on compute.
</Tip>

### Compute sizes

<ComputeTable pricesData={prices} />

### How compute billing works

Compute usage is billed pro rata for each second a replica in an App or Worker cluster is running. To keep your compute spend consistent and predictable, each replica is billed for a maximum of 28 days (2,419,200 seconds) every billing cycle.

## Bandwidth

Each Cloud environment includes an allowance of [free data transfer](#compute-sizes). Additional data transfer is billed at \$0.10 per GB. These allowances are set significantly higher than the average usage of most applications at each compute size. As a result, most Cloud users can expect not to incur any bandwidth overage charges.

### How bandwidth allowances work

For every second a compute instance is running, a proportional amount of data transfer allowance is credited to your organization for each second of compute used.

For example, a `Flex 1GiB RAM` instance earns 100GB of data transfer allowance per month, which is equivalent to \~0.000041GB (41KB) per second.

If multiple instances (replicas) are running in a compute cluster, the data transfer allowance earned per second is multiplied by the number of running instances.

Unused data transfer allowances reset at the end of each billing cycle.

### Sharing bandwidth allowances across environments

Data transfer allowances are shared across all environments and applications within your Cloud organization.

**Example:** If Environment A earns 500GB and uses 100GB, while Environment B earns 500GB and uses 800GB:

* **Total allowance:** 1,000GB (1TB)
* **Total usage:** 900GB
* **Remaining:** 100GB (no overage charges)

Note: spiky traffic may cause your [Allowances](https://cloud.laravel.com/to/org/usage/allowances) summary to temporarily estimate a data transfer overage. However, overage charges are not officially applied until the end of the billing cycle after all data transfer allowances have been accrued.

### Calculating bandwidth usage

* What's included: cached data returned from the [Edge Network](/network#cloud-edge-network), incoming request & response data served by your application(s) in the [Compute Network](/network#cloud-compute-network), and outgoing request & response data when your application makes an external connection to a database, API, or other services.
* What's excluded: internal data transfers that take place within the Cloud Network.

<Info>
  Laravel MySQL, Laravel Reverb, and Laravel Valkey are hosted within the Cloud Network and qualify as internal data transfers. All other resources are managed by partners and are considered external data transfer. See [Resources](#resources) below for more details.
</Info>

## Resources

Laravel applications often utilize additional resources like databases, caches, or object storage buckets. Laravel Cloud offers first-party support for the following resources:

### Laravel MySQL

A managed MySQL database that offers easy scaling of compute and storage plus daily backups.

Laravel MySQL offers two classes of compute:

<CardGroup cols="2">
  <Card title="Flex" icon="microchip" iconType="light">
    Lightweight and cost-efficient. Perfect for small databases that need the flexibility to support periodic bursts in traffic.
  </Card>

  <Card title="Pro" icon="microchip" iconType="solid">
    More powerful compute designed for sustained, heavy utilization. Best for large-scale, mission-critical workloads.
  </Card>
</CardGroup>

<MySQLComputePriceTableV2 pricesData={prices} />

**Plan limitations:** Starter plan users are limited to `flex` compute sizes only, while Growth and Business plan users can use both `flex` and `pro` compute sizes.

### Serverless Postgres

A managed, serverless PostgreSQL database powered by [Neon](https://neon.tech) that includes scale to zero, autoscaling, and point-in-time recovery.

<ServerlessPostgresTable pricesData={prices} />

Serverless Postgres databases are billed to the second for the time they are active (regardless of query activity) and not sleeping. Any database query or transaction will restart the delay before the database scales to zero.

<Tip>
  Pair a Laravel Serverless Postgres database that scales to zero with application compute that scales to zero to minimize costs on your dev environments or side projects.
</Tip>

**Plan Limitations:**

* **Starter**: Up to 1 vCPU
* **Growth**: Up to 4 vCPU
* **Business**: Up to 16 vCPU

### Laravel Valkey

A managed Redis API-compatible KV Store. Commonly used as a Laravel cache, queue, or session driver.

<LaravelValkeyPriceTable pricesData={prices} />

### Managed queues

Fully managed queues with dedicated workers that scale based on queue pressure, including a built-in failed jobs dashboard.

<ManagedQueuesPriceTable pricesData={prices} />

### Redis by Upstash

A managed Redis API-compatible KV Store powered by [Upstash](https://upstash.com).

<table class="table table-auto">
  <thead>
    <tr class="text-left">
      <th>Data Storage</th>
      <th>Max data transfer</th>
      <th>Max connections</th>
      <th>Max commands</th>
      <th>Max record size</th>
      <th>Max request size</th>
      <th>Monthly Price</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>250MB</td>
      <td>100 GB/mo</td>
      <td>10K concurrent</td>
      <td>10K per sec</td>
      <td>100 MB</td>
      <td>10 MB</td>
      <td>\$5</td>
    </tr>

    <tr>
      <td>1GB</td>
      <td>200 GB/mo</td>
      <td>10K concurrent</td>
      <td>10K per sec</td>
      <td>100 MB</td>
      <td>10 MB</td>
      <td>\$20</td>
    </tr>

    <tr>
      <td>2.5GB</td>
      <td>400 GB/mo</td>
      <td>10K concurrent</td>
      <td>10K per sec</td>
      <td>200 MB</td>
      <td>10 MB</td>
      <td>\$40</td>
    </tr>

    <tr>
      <td>5GB</td>
      <td>800 GB/mo</td>
      <td>10K concurrent</td>
      <td>10K per sec</td>
      <td>300 MB</td>
      <td>20 MB</td>
      <td>\$77</td>
    </tr>

    <tr>
      <td>12GB</td>
      <td>2 TB/mo</td>
      <td>10K concurrent</td>
      <td>16K per sec</td>
      <td>400 MB</td>
      <td>30 MB</td>
      <td>\$180</td>
    </tr>

    <tr>
      <td>50GB</td>
      <td>5 TB/mo</td>
      <td>10K concurrent</td>
      <td>16K per sec</td>
      <td>500 MB</td>
      <td>50 MB</td>
      <td>\$280</td>
    </tr>

    <tr>
      <td>100GB</td>
      <td>10 TB/mo</td>
      <td>10K concurrent</td>
      <td>16K per sec</td>
      <td>1 GB</td>
      <td>75 MB</td>
      <td>\$680</td>
    </tr>

    <tr>
      <td>500GB</td>
      <td>20 TB/mo</td>
      <td>100K concurrent</td>
      <td>20K per sec</td>
      <td>5 GB</td>
      <td>100 MB</td>
      <td>\$1500</td>
    </tr>
  </tbody>
</table>

**Plan Limitations:**

* **Starter**: Up to 2.5GB
* **Growth**: Up to 50GB
* **Business**: Up to 500GB

<Warning>
  **Redis by Upstash is deprecated.** New caches can no longer be created, and existing caches are scheduled to be sunset. We recommend migrating to [Laravel Valkey](#laravel-valkey), which offers Redis API compatibility, better performance, and more precise per-second billing. If you need a larger cache, managed AWS [ElastiCache](/private-cloud/elasticache) caches are available to Enterprise customers — [contact sales](https://laravel.com/cloud/contact) to learn more.
</Warning>

### Laravel Object Storage

S3-compatible object storage buckets powered by [Cloudflare R2](https://www.cloudflare.com/developer-platform/products/r2/). Commonly used as a Laravel file storage driver.

<table class="table table-auto">
  <thead>
    <tr class="text-left">
      <th>Metric</th>
      <th>Price</th>
      <th>Notes</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>Storage (GB-mo)</td>
      <td>\$0.02</td>
      <td>Average storage volume during the month.</td>
    </tr>

    <tr>
      <td>Class A Operations (per thousand)</td>
      <td>\$0.005</td>
      <td>See operations list below.</td>
    </tr>

    <tr>
      <td>Class B Operations (per thousand)</td>
      <td>\$0.0005</td>
      <td>See operations list below.</td>
    </tr>

    <tr>
      <td>Data transfer</td>
      <td>Free</td>
      <td>No fees for data accessed from buckets.</td>
    </tr>
  </tbody>
</table>

Class A Operations: `ListBuckets`, `PutBucket`, `ListObjects`, `PutObject`, `CopyObject`, `CompleteMultipartUpload`, `CreateMultipartUpload`, `LifecycleStorageTierTransition`, `ListMultipartUploads`, `UploadPart`, `UploadPartCopy`, `ListParts`, `PutBucketEncryption`, and `PutBucketCors`.

Class B Operations: `HeadBucket`, `HeadObject`, `GetObject`, `UsageSummary`, `GetBucketEncryption`, and `GetBucketLocation`.

Free operations: `DeleteObject`, `DeleteBucket` and `AbortMultipartUpload`.

### Laravel Reverb

A fully managed WebSocket server powered by Laravel Reverb.

<table class="table table-auto">
  <thead>
    <tr class="text-left">
      <th>Concurrent connections</th>
      <th>Max messages per day</th>
      <th>Max message size</th>
      <th>Monthly Price</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>100</td>
      <td>200K</td>
      <td>10kb</td>
      <td>\$5</td>
    </tr>

    <tr>
      <td>200</td>
      <td>400K</td>
      <td>10kb</td>
      <td>\$10</td>
    </tr>

    <tr>
      <td>500</td>
      <td>1M</td>
      <td>10kb</td>
      <td>\$25</td>
    </tr>

    <tr>
      <td>2,000</td>
      <td>8M</td>
      <td>10kb</td>
      <td>\$100</td>
    </tr>

    <tr>
      <td>5,000</td>
      <td>16M</td>
      <td>10kb</td>
      <td>\$200</td>
    </tr>
  </tbody>
</table>

## Example scenarios

The best way to understand Cloud pricing is to see it applied to real applications. The estimates below use **US East (Ohio)** pricing over a 30-day month, with hourly rates derived from the per-second [compute](#compute-sizes) and resource prices for readability. Always-on resources cap at 28 days (672 hours) per billing cycle. Every plan includes \$5 in monthly usage credits that these totals do not subtract, so your actual bill is often lower.

<Info>
  Flex compute, Serverless Postgres, and Flex-sized Laravel Valkey caches all [scale to zero](/compute#scale-to-zero) when idle and wake in well under a second. Latency-tolerant and bursty workloads only pay for the hours they are actually running.
</Info>

### Side project

A score tracker for a local pub quiz with around 30 users that runs a few times a month and sleeps the rest of the time. With Scale to Zero enabled on both compute and the database, the entire application costs pennies to run.

| Line item                               | Calculation               | Monthly est. |
| --------------------------------------- | ------------------------- | ------------ |
| Flex 512MB compute                      | 4 hrs × \$0.00893/hr      | \$0.04       |
| Serverless Postgres compute (0.25 vCPU) | 4 hrs × \$0.106/hr × 0.25 | \$0.11       |
| Serverless Postgres storage             | 0.5 GB × \$0.50/GB        | \$0.25       |
| **Total**                               |                           | **\~\$0.40** |

This sits comfortably inside the \$5 monthly usage credit, so the effective compute and database cost is \$0.

### Small blog or content site

A content site with a few thousand monthly readers and a newsletter signup. Static pages are served from the [Edge Network](/network#cloud-edge-network) cache, so compute only wakes to process a form submission or render a page that has not been cached yet.

| Line item                               | Calculation                | Monthly est. |
| --------------------------------------- | -------------------------- | ------------ |
| Flex 1GB compute                        | 60 hrs × \$0.01786/hr      | \$1.07       |
| Serverless Postgres compute (0.25 vCPU) | 60 hrs × \$0.106/hr × 0.25 | \$1.59       |
| Serverless Postgres storage             | 5 GB × \$0.50/GB           | \$2.50       |
| Laravel Valkey 250MB (Flex)             | 60 hrs × \$0.00893/hr      | \$0.54       |
| **Total**                               |                            | **\~\$5.70** |

Edge caching keeps compute asleep through the long tail of idle hours, while Scale to Zero on the database and cache means you only pay when a reader actually triggers a query.

### Medium SaaS application

A SaaS application with a few hundred monthly users, quiet on nights and weekends, with background jobs handled by a [managed queue](/queues#managed-queues). Compute scales to zero off-hours while the database stays on so data is always available.

| Line item                       | Calculation                     | Monthly est.  |
| ------------------------------- | ------------------------------- | ------------- |
| Flex 2GB compute (primary)      | 365 hrs × \$0.03571/hr          | \$13.04       |
| Flex 2GB compute (autoscaled)   | 73 hrs × \$0.03571/hr           | \$2.61        |
| Laravel MySQL Flex 2GB compute  | 672 hrs (capped) × \$0.03274/hr | \$22.00       |
| Laravel MySQL storage           | 20 GB × \$0.10/GB               | \$2.00        |
| Laravel Valkey 1GB (Flex)       | 365 hrs × \$0.03571/hr          | \$13.04       |
| Managed queue workers (256 MiB) | \~40 worker-hrs × \$0.00548/hr  | \$0.22        |
| Managed queue operations        | \~1M ops × \$1.00/1M            | \$1.00        |
| **Total**                       |                                 | **\~\$53.90** |

The managed queue replaces a dedicated worker entirely. Workers scale up only while jobs are waiting and back to zero when the queue drains, so background processing costs about \$1, far less than running an always-on worker around the clock.

### High-traffic e-commerce store or consumer SaaS

A high-traffic e-commerce store or consumer SaaS that runs around the clock. Three always-on replicas keep it available under load, and a [managed queue](/queues#managed-queues) absorbs continuous job volume, scaling out during spikes instead of running idle workers.

| Line item                       | Calculation                                  | Monthly est.   |
| ------------------------------- | -------------------------------------------- | -------------- |
| Pro 4GB compute                 | 672 hrs (capped) × \$0.04762/hr × 3 replicas | \$96.00        |
| Laravel MySQL Pro 4GB compute   | 672 hrs (capped) × \$0.07143/hr              | \$48.00        |
| Laravel MySQL storage           | 40 GB × \$0.10/GB                            | \$4.00         |
| Laravel Valkey 2.5GB (Flex)     | 672 hrs (capped) × \$0.07143/hr              | \$48.00        |
| Managed queue workers (512 MiB) | \~730 worker-hrs × \$0.01096/hr              | \$8.00         |
| Managed queue operations        | \~15.5M ops × \$1.00/1M                      | \$15.50        |
| **Total**                       |                                              | **\~\$219.50** |

Always-on Pro compute and matching resources deliver consistent performance, while the managed queue scales workers with queue pressure so you pay for processing rather than idle capacity. The three replicas also pool 300 GB of included data transfer each month. Pair this setup with [Laravel Nightwatch](https://nightwatch.laravel.com) for per-job tracing and request-level observability across web and queue traffic.
