S3 Intelligent-Tiering · 2026 cost guide

S3 Intelligent-Tiering — when it cuts your storage bill, and when the monitoring fee eats the savings.

Intelligent-Tiering moves every object across five access tiers automatically — Frequent, Infrequent, Archive Instant, Archive, and Deep Archive — based on real access patterns, for a flat $0.0025 per 1,000 objects per month. This page covers exactly how the auto-tiering works, the monitoring-fee breakeven by object size and count, when IT beats hand-rolled storage classes plus lifecycle policies, and the small-object gotcha that quietly makes it more expensive than Standard.

access tiers
5
monitoring fee
$0.0025 / 1K obj
no retrieval fees
Frequent/IA/AIA
typical S3 saving
30–68%
TL;DR
  • S3 Intelligent-Tiering automatically moves each object across five tiers — Frequent Access, Infrequent Access (after 30 days idle), Archive Instant Access (after 90 days), and the optional asynchronous Archive (90–270+ days) and Deep Archive (180–730+ days) — based on the object's own access pattern. You pay a flat monitoring fee of ~$0.0025 per 1,000 objects per month instead of guessing storage classes yourself.
  • IT wins when access patterns are unknown, irregular, or change over time — the most common real-world case. There are no retrieval fees and no per-object transition charges for the Frequent, Infrequent, and Archive Instant tiers, so a hot object that gets re-read costs nothing extra to pull back up. The one trap: objects under 128 KB are never auto-tiered down, so a bucket full of tiny files pays the monitoring fee for savings it can never collect.
  • If your access pattern is already known and stable — write-once logs you'll never read, or a hot dataset you always read — a manual storage class (Standard-IA, Glacier Flexible Retrieval, Glacier Deep Archive) plus a lifecycle policy is cheaper because you skip the monitoring fee. A CloudRoute-matched AWS partner audits your buckets, models IT-vs-lifecycle per prefix, and does the rework — often AWS-funded, so you frequently cut the bill for $0.
mechanics

IHow S3 Intelligent-Tiering actually works

Intelligent-Tiering is a single S3 storage class that contains multiple internal access tiers. You upload objects to it once; S3 then monitors each object individually and moves it between tiers based on when it was last accessed — no lifecycle rules, no manual transitions, no retrieval fees on the non-archive tiers.

The core idea is that you stop predicting access patterns. With classic S3 you have to decide, per object or per prefix, whether data is "hot" (S3 Standard), "warm" (Standard-IA), or "cold" (Glacier), and then encode that decision into lifecycle rules. Get it wrong and you either overpay for storage (hot class on cold data) or pay surprise retrieval fees (cold class on data you actually read). Intelligent-Tiering removes the prediction: S3 watches each object's last-access timestamp and demotes or promotes it automatically.

When an object in a lower tier is read, S3 promotes it back to the Frequent Access tier with no retrieval fee and no penalty for the Frequent, Infrequent, and Archive Instant tiers. That asymmetry is the whole point — being wrong about an object being cold costs you nothing, because the next access silently pulls it back to hot. This is why IT is so forgiving for irregular, bursty, or unpredictable workloads.

There is exactly one extra cost: a small per-object monitoring and automation fee, roughly $0.0025 per 1,000 objects per month (about $2.50 per million objects per month) — check the S3 pricing page for the current rate in your Region. There is no per-GB monitoring cost, so the fee is driven entirely by object count, not object size. That single fact is the hinge for the entire breakeven analysis later on this page.

Intelligent-Tiering applies its monitoring to objects of all sizes, but it only auto-tiers objects 128 KB and larger. Objects smaller than 128 KB are always charged at the Frequent Access tier rate and never moved to a cheaper tier — though as of the 2024 pricing change AWS stopped charging the monitoring fee on those sub-128 KB objects, so they are not actively harmful, just never optimized. The practical implication is still that IT does nothing for a bucket dominated by tiny files.

the five tiers

IIThe five access tiers and what triggers each move

Intelligent-Tiering ships with three automatic tiers enabled by default, plus two optional asynchronous archive tiers you opt into per bucket or per configuration. Understanding the thresholds tells you how fast cold data starts saving money.

The first three tiers are automatic and always on. The two archive tiers are opt-in because retrieval from them is asynchronous (minutes to hours), so you only enable them for data where a retrieval delay is acceptable. Here is the full ladder, from hottest to coldest, with representative us-east-1 list prices — always confirm current rates in the S3 pricing console:

  • Frequent Access (default landing tier) — Same price as S3 Standard, roughly $0.023/GB-month. Every object starts here. No retrieval fee. An object stays here as long as it is accessed at least once every 30 days.
  • Infrequent Access (after 30 days idle) — Roughly $0.0125/GB-month — about 45% cheaper than Frequent. An object drops here automatically after 30 consecutive days without access. No retrieval fee; a read promotes it straight back to Frequent.
  • Archive Instant Access (after 90 days idle) — Roughly $0.004/GB-month — about 68% cheaper than Frequent — with millisecond retrieval, same as the others. An object drops here after 90 consecutive days without access. Still no retrieval fee and still instant access, which makes this tier the quiet workhorse of IT.
  • Archive Access (optional, 90–730+ days) — Roughly $0.0036/GB-month, comparable to Glacier Flexible Retrieval. Asynchronous retrieval (minutes to ~12 hours depending on retrieval option). You configure the idle threshold yourself, anywhere from 90 days up to 730+ days. Opt-in per bucket.
  • Deep Archive Access (optional, 180–730+ days) — Roughly $0.00099/GB-month, comparable to Glacier Deep Archive — about 96% cheaper than Frequent. Asynchronous retrieval measured in hours (typically up to 12). For genuinely cold, compliance-style data you almost never touch. Opt-in per bucket.

The first three tiers cover the overwhelming majority of real savings without any retrieval-latency tradeoff, because Archive Instant Access already delivers ~68% off Standard at millisecond latency. You only reach for the two asynchronous archive tiers when you have data cold enough that a retrieval delay is genuinely fine — backups, raw event archives, regulatory retention. For a typical SaaS workload, enabling just the default three tiers captures most of the win.

the monitoring-fee math

IIIThe monitoring-fee breakeven — object size and count are everything

Because the monitoring fee is per object (not per GB), Intelligent-Tiering is a function of average object size. Large objects make the fee a rounding error; tiny objects make it dominate. Here is how to compute the breakeven for your own bucket.

The monitoring fee is ~$0.0025 per 1,000 objects/month = $0.0000025 per object/month. The savings from auto-tiering one object is (storage-price-delta in $/GB-month) × (object size in GB). So Intelligent-Tiering is worth it for an object when:

monitoring fee per object < tiering savings per object — i.e. $0.0000025 < (price delta $/GB) × (object size in GB).

Take the Frequent → Infrequent move, a delta of about $0.0105/GB-month ($0.023 − $0.0125). Solve for the object size where the fee equals the saving: $0.0000025 ÷ $0.0105 ≈ 0.000238 GB ≈ 0.24 MB. So once an object is just under a quarter of a megabyte and gets demoted to IA, IT already pays for itself — and at the Archive Instant tier (delta ~$0.019/GB) the breakeven is even smaller. This is why IT is close to free-win territory for media, backups, logs in bulk, data-lake objects, and analytics output: those objects are megabytes to gigabytes each.

Now flip it. Imagine a bucket of 50 million thumbnail JSON blobs averaging 20 KB each. They sit below the 128 KB floor, so they never tier down — and even if they did, 20 KB × $0.0105 = $0.00000021 of monthly saving per object, an order of magnitude below the fee. Pre-2024 this bucket would have paid ~$125/month in pure monitoring overhead for zero benefit; today AWS waives the fee on the sub-128 KB objects, so the damage is neutral rather than negative — but IT still buys you nothing. The fix is to leave tiny-object buckets on S3 Standard (or, better, repack many small objects into fewer large objects before storing).

the one-line rule

Intelligent-Tiering is a clear win when your average object size is comfortably above ~128 KB and access is unpredictable. It is pointless-to-mildly-wasteful when the bucket is dominated by sub-128 KB objects. Compute your bucket's average object size first (total bytes ÷ object count) — that single number tells you most of the answer.

IT vs manual classes + lifecycle

IVWhen Intelligent-Tiering beats manual storage classes + lifecycle policies

The honest comparison is not "IT vs S3 Standard" — it's "IT vs a well-tuned set of storage classes and lifecycle rules." Lifecycle policies are free; IT charges a monitoring fee. So IT has to earn that fee by being smarter than a rule you could write yourself.

A lifecycle policy is a blunt, time-based instrument: "transition everything in this prefix to Standard-IA after 30 days, to Glacier after 90." It does not know whether a specific object is actually being read — it moves everything on a calendar. If your access pattern is genuinely uniform and predictable (e.g. log files that are write-once and never read, or a dataset you read constantly for its whole life), a lifecycle rule is the cheaper, simpler tool because you skip the monitoring fee and you already know the right destination.

Intelligent-Tiering earns its fee precisely when the lifecycle assumption breaks: when objects within the same prefix have different, changing, or unknown access patterns. A real example is a content bucket where 5% of assets stay hot for years (a popular product image) while 95% go cold in a month. A lifecycle rule that moves everything to IA after 30 days will hit the hot 5% with retrieval fees every time they're served; IT keeps those hot objects in Frequent Access automatically and only demotes the genuinely idle 95%. The retrieval-fee avoidance alone often dwarfs the monitoring fee.

The decision rule most FinOps teams converge on: use lifecycle policies when you know the access pattern and it is stable; use Intelligent-Tiering when you don't know, or when objects in the same bucket age at different rates. And you can combine them — run IT for the unpredictable middle of an object's life, then add a lifecycle rule that expires or hard-deletes objects past a retention cutoff, because IT never deletes anything on its own.

IT vs S3 Standard-IA specifically

Standard-IA is cheaper per GB than the IT Infrequent tier list price by a hair, but it carries a per-GB retrieval fee (~$0.01/GB) AND a 30-day minimum storage charge AND a 128 KB minimum billable object size. If you put data in Standard-IA and then read it, or delete it early, you eat penalties. IT's Infrequent and Archive Instant tiers have no retrieval fee and no early-delete penalty on those tiers, so for data that might be read, IT is usually the safer bet even though the headline per-GB price looks similar.

The clean heuristic: choose Standard-IA directly only when you are confident the data will be retained at least 30 days and read rarely-to-never. The moment "read rarely-to-never" becomes "read sometimes, unpredictably," IT wins because the retrieval fees you avoid exceed the monitoring fee you pay.

IT vs Glacier Flexible Retrieval / Deep Archive

Glacier Flexible Retrieval and Glacier Deep Archive are the cheapest per-GB storage AWS sells, but they impose asynchronous retrieval (minutes to 12+ hours), retrieval fees, and long minimum-storage commitments (90 days for Flexible, 180 for Deep Archive). IT's optional Archive and Deep Archive Access tiers reach the same per-GB price points while letting S3 decide when an object is cold enough — but they inherit the same async-retrieval behavior, so they are not a latency free lunch.

Use direct Glacier storage classes when you have a large, well-understood cold archive that you intend to keep for years and rarely retrieve — a lifecycle rule straight to Glacier Deep Archive is the cheapest possible option. Use IT's archive tiers when the same dataset has uncertain or mixed coldness and you'd rather S3 sort it out per object than commit a whole prefix on a fixed schedule.

how to turn it on

VEnabling Intelligent-Tiering — new buckets vs existing data

There are two distinct jobs: making new objects land in IT automatically, and moving the petabytes you already have. They use different mechanisms, and the second one is where teams stall.

For new data, the cleanest approach is to set the storage class at upload time. Pass StorageClass=INTELLIGENT_TIERING on the PutObject / multipart upload call (or set it in your SDK / Terraform / CDK defaults), so every new object lands directly in Intelligent-Tiering with no transition cost. If you can't change the upload path, write a lifecycle rule that transitions objects to INTELLIGENT_TIERING at day 0 — functionally the same outcome, applied automatically to everything written to the prefix.

To enable the two optional archive tiers, you attach an Intelligent-Tiering configuration to the bucket (console, S3 API PutBucketIntelligentTieringConfiguration, or IaC) specifying the idle-day thresholds for Archive Access and Deep Archive Access. Without that configuration you get the default three automatic tiers only — which, again, is often all you want for low-latency workloads.

For existing data already sitting in S3 Standard, you have two routes. A lifecycle transition rule will migrate matching objects to INTELLIGENT_TIERING over time and is the zero-effort path — but each transition is a billable request (~$0.01 per 1,000 transitions for IT), so a billion-object bucket carries a real one-time transition cost you should model first. The faster, more controlled route for large or one-shot migrations is S3 Batch Operations: generate an S3 Inventory report, then run a Batch Operations job that copies or re-tiers objects into Intelligent-Tiering. Batch Operations gives you a manifest, progress tracking, retries, and a completion report — which matters when you're moving hundreds of millions of objects and need an audit trail.

sequence that avoids surprise transition bills

Before mass-migrating an existing bucket, pull an S3 Inventory report and compute object count + average object size. If average size is well above 128 KB, migrate. If it's tiny-object-heavy, repack or leave on Standard. Then prefer S3 Batch Operations over a blanket lifecycle rule for very large buckets, so you can see the transition-request cost before you commit, not after.

the traps

VIGotchas: small objects, transition costs, and what IT will not do

Intelligent-Tiering is close to set-and-forget, but a handful of edge cases quietly cost money or create false expectations. These are the ones that show up most in real S3 audits.

  • The sub-128 KB floor — Objects under 128 KB never tier down — they stay billed at the Frequent Access rate forever. A bucket dominated by tiny files gets zero storage savings from IT. Repack small objects (e.g. combine many small logs into larger archives, or use a columnar format like Parquet for analytics) before storing, or keep that bucket on S3 Standard.
  • Transition requests are billable on the way in — Migrating existing objects into IT via a lifecycle rule charges a per-1,000-objects transition fee. For a bucket with hundreds of millions of small objects, that one-time cost can be material — model it from an S3 Inventory report before flipping the switch.
  • IT never deletes anything — Intelligent-Tiering moves objects between tiers; it does not expire or delete them. If your goal is also to purge data past a retention window, you still need a separate lifecycle expiration rule. IT + a delete-after-N-days lifecycle rule is a common, correct pairing.
  • Archive tiers are asynchronous — The optional Archive and Deep Archive Access tiers retrieve in minutes-to-hours, not milliseconds. If anything in the bucket needs instant access, do not enable those tiers for it — the default Archive Instant Access tier already gives you ~68% savings at millisecond latency.
  • Versioning multiplies object count — If the bucket has versioning on, every noncurrent version is its own object paying its own (potential) monitoring fee. Pair IT with a lifecycle rule that transitions or expires noncurrent versions, or the version sprawl inflates both storage and object count.
  • Replication and cross-Region copies double the spend — Objects replicated to another Region are stored (and monitored) independently in the destination bucket. Apply IT in both Regions deliberately, and confirm the replica bucket actually needs the same retention — a surprising amount of S3 waste is forgotten replica data.
the combined pattern

VIIPairing Intelligent-Tiering with lifecycle policies — the best-practice layout

IT and lifecycle rules are not either/or. The strongest setups use IT to handle the part of an object's life you can't predict, and lifecycle rules to handle the parts you can — namely the start (get it into IT) and the end (expire it).

A clean reference pattern for a typical SaaS bucket looks like this. At day 0, a lifecycle rule (or the upload call) places the object in INTELLIGENT_TIERING, so S3 immediately begins watching access and auto-demotes idle data through Frequent → Infrequent → Archive Instant Access without you lifting a finger. That covers the unpredictable middle of the object's life, where you genuinely don't know which assets will stay hot.

At the cold end, you layer two more lifecycle rules. First, transition truly noncurrent versions (if versioning is on) to a cheaper class or expire them outright, so version sprawl doesn't accumulate. Second, add an expiration rule that deletes or moves objects past your retention cutoff — say, expire raw event data after 400 days — because IT will happily keep paying to store data forever otherwise. The result is a self-managing bucket: new data is auto-tiered for cost, stale versions are cleaned, and end-of-life data is purged on schedule.

The one combination to avoid is fighting yourself: don't put data in IT and also write a lifecycle rule that transitions the same objects to Standard-IA or Glacier on a fixed timer. That double-charges transitions and overrides IT's smarter per-object decisions. Let IT own the tier transitions; let lifecycle own getting data in at day 0 and getting it out at end-of-life. Keeping that division of labor clean is exactly the kind of thing a partner-led S3 audit nails down per prefix.

the CloudRoute angle

VIIIA partner-led S3 cost audit — often AWS-funded, so you cut the bill for $0

Intelligent-Tiering is one lever inside a much larger S3 optimization surface. A vetted AWS partner audits the whole picture, models IT-vs-lifecycle per prefix, and does the rework — and because AWS funds qualifying partner-led optimization engagements, you frequently pay nothing.

S3 optimization is rarely one decision. A real audit looks at object-size distribution per bucket (the IT breakeven), current storage-class mix, retrieval-fee exposure from mis-set IA/Glacier, request-cost patterns, incomplete-multipart-upload garbage that quietly accrues storage, versioning sprawl, replication waste, and whether lifecycle rules even match how the data is actually accessed. Getting all of that right by hand, across dozens of buckets, is a project — which is exactly why teams bring in a partner.

Here is the honest funding picture. AWS funds partner-led cost-optimization and Well-Architected engagements through its partner programs, and a Well-Architected Review can unlock remediation credits — so for qualifying, credit-eligible engagements, the customer often cuts their AWS bill for $0. When an engagement isn't credit-eligible, it's a vetted-partner referral that pays for itself out of the savings: an S3 audit that moves the right buckets to Intelligent-Tiering, fixes the wrong ones, and cleans up multipart and version waste routinely takes 30–68% off the S3 line, recurring every month thereafter.

CloudRoute's role is the routing: we triage your situation, match you to an AWS partner with a track record in storage and FinOps work, and confirm whether your engagement qualifies for AWS funding or a Well-Architected remediation path before anyone spends a discovery call. You spend roughly 30 minutes of input; the partner does the modeling and the rework. CloudRoute is paid by the partner — you don't see an invoice from us.

what the audit typically finds first

In most S3 audits the fastest wins are: (1) large-object buckets on Standard that should be on Intelligent-Tiering, (2) data wrongly parked in Standard-IA/Glacier that's actually read often and bleeding retrieval fees, (3) incomplete multipart uploads silently billing for storage, and (4) unbounded versioning. IT is usually the headline fix — but rarely the only one.

storage-class comparison

S3 storage classes side by side — cost, access, and best use

The right class is a function of how predictable your access pattern is and how much retrieval latency you can tolerate. Prices are representative us-east-1 list rates as of 2026 — confirm current figures in the S3 pricing console for your Region.

Storage classStorage $/GB-mo (approx)Retrieval latencyRetrieval feeMin storageBest for
S3 Standard~$0.023millisecondsnonenoneHot data read constantly; tiny-object buckets (< 128 KB)
Intelligent-Tiering (Frequent)~$0.023 + monitoringmillisecondsnonenoneUnknown / changing access patterns; objects ≥ 128 KB
Intelligent-Tiering (Archive Instant)~$0.004 + monitoringmillisecondsnonenoneAuto-demoted idle data you might still read instantly
S3 Standard-IA~$0.0125milliseconds~$0.01/GB30 daysKnown-warm data retained ≥ 30 days, read rarely
S3 One Zone-IA~$0.01milliseconds~$0.01/GB30 daysReproducible / non-critical warm data in one AZ
Glacier Flexible Retrieval~$0.0036minutes–12 hrsper-GB + per-request90 daysCold archives retrieved a few times a year
Glacier Deep Archive~$0.00099up to ~12 hrsper-GB + per-request180 daysCompliance / long-term cold data almost never read
Intelligent-Tiering's Archive Instant tier (~$0.004/GB, instant, no retrieval fee) is the standout: it reaches near-Glacier pricing while keeping millisecond access, which is why IT is the default recommendation for any bucket where access is unpredictable and objects are comfortably above 128 KB.
not sure if IT or lifecycle is right for your buckets?
Get an AWS partner to model Intelligent-Tiering vs lifecycle for your actual S3 data
Start the S3 audit in 3 minutes →
a recent match

A media-heavy SaaS that cut its S3 bill 61% — anonymized

inquiry · seed-stage B2B media-SaaS, ~$9K/mo AWS, US-East
Seed-stage B2B SaaS storing user-generated media + analytics exports; ~2.1 PB across three buckets; S3 was ~$48K/year and growing ~6%/month

Situation: Everything sat in S3 Standard "to be safe." The team had no idea which assets were hot — a small fraction of media was served constantly while the bulk went cold within weeks, and the analytics-export bucket was write-heavy and read almost never. A prior attempt at a blanket lifecycle-to-IA rule had backfired: it hit the hot media with retrieval fees on every serve, so they'd turned it off and reverted to all-Standard. Nobody had time to model it per prefix.

What CloudRoute did: Routed within 20 hours to a US-East partner with an S3 / FinOps track record. The partner pulled S3 Inventory across all three buckets, computed object-size distributions (media averaged ~3.4 MB — well above the 128 KB floor; analytics exports averaged ~40 MB), then moved the two large-object buckets to Intelligent-Tiering via S3 Batch Operations with the Archive Instant tier doing the heavy lifting and no async archive tiers (instant access preserved). They left a fourth tiny-thumbnail bucket on Standard, added lifecycle expiration on noncurrent versions, and swept ~7 TB of incomplete multipart uploads.

Outcome: S3 line dropped 61% — from ~$4,000/month to ~$1,560/month — recurring, with no change to retrieval latency for served media. Monitoring fee came to ~$38/month against ~$2,440/month saved. The engagement qualified for AWS partner funding tied to a Well-Architected cost-pillar review, so the customer paid $0 for the audit and rework; CloudRoute's commission was paid by the partner.

buckets audited: 3 · objects re-tiered via Batch Ops: ~620M · recurring S3 saving: ~$29K/yr · founder time: ~5 hours · cost to customer: $0

faq

Common questions

Is S3 Intelligent-Tiering always cheaper than S3 Standard?
No. It is cheaper than Standard whenever objects actually go idle and get demoted to the Infrequent or Archive Instant tiers, which more than covers the small monitoring fee — true for the vast majority of real workloads with objects above 128 KB. It is NOT cheaper when the bucket is dominated by objects under 128 KB (they never tier down) or when every object stays genuinely hot for its whole life (nothing demotes, so you pay the monitoring fee for no benefit). Compute your bucket's average object size first: total bytes ÷ object count.
How much is the Intelligent-Tiering monitoring fee?
Roughly $0.0025 per 1,000 objects per month — about $2.50 per million objects per month. It is charged per object, not per GB, so it is driven entirely by how many objects you have, not their size. As of the 2024 pricing change, objects smaller than 128 KB are not charged the monitoring fee (they also never tier down). Always confirm the current rate for your Region on the S3 pricing page.
What are the five Intelligent-Tiering access tiers?
Frequent Access (the default landing tier, priced like S3 Standard), Infrequent Access (after 30 days idle, ~45% cheaper), Archive Instant Access (after 90 days idle, ~68% cheaper, still millisecond retrieval), and two optional asynchronous tiers you opt into: Archive Access (Glacier-class pricing, minutes-to-hours retrieval) and Deep Archive Access (Glacier Deep Archive pricing, up to ~12-hour retrieval). The first three are automatic and always on; the last two are opt-in per bucket.
Does Intelligent-Tiering charge retrieval fees when I read cold data?
Not for the Frequent, Infrequent, or Archive Instant Access tiers — reads from those are free and instantly promote the object back to Frequent Access. That no-retrieval-fee behavior is the main reason IT beats manually setting Standard-IA or Glacier on data you might read. The two optional asynchronous archive tiers (Archive Access, Deep Archive Access) DO have retrieval fees and retrieval latency, which is why you only enable them for genuinely cold data.
When should I use lifecycle policies instead of Intelligent-Tiering?
Use lifecycle policies when the access pattern is known and stable — for example, write-once logs you will never read (lifecycle straight to Glacier Deep Archive) or a hot dataset you always read (just keep it on Standard). Lifecycle rules are free, so when you already know the right destination you avoid the IT monitoring fee. Use Intelligent-Tiering when access is unknown, irregular, or changes over time, or when objects in the same bucket age at different rates. The two also pair well: lifecycle to get data into IT at day 0 and to expire it at end-of-life, IT to handle the unpredictable middle.
How do I enable Intelligent-Tiering on a bucket that already has data?
Two routes. The zero-effort route is a lifecycle rule that transitions existing objects to INTELLIGENT_TIERING — but each transition is a billable request, so for very large buckets model the one-time cost from an S3 Inventory report first. The faster, auditable route for big or one-shot migrations is S3 Batch Operations: generate an S3 Inventory report, then run a Batch Operations job to re-tier objects, which gives you a manifest, progress tracking, retries, and a completion report. For new data, set StorageClass=INTELLIGENT_TIERING at upload time so it lands there directly.
Why is Intelligent-Tiering bad for small objects?
S3 only auto-tiers objects 128 KB and larger. Objects below that floor stay billed at the Frequent Access (Standard) rate permanently and never move to a cheaper tier, so IT delivers no storage savings on them. Even setting the floor aside, a 20 KB object would save a tiny fraction of a cent per month from tiering — far less than the monitoring fee historically cost. The fix is to repack many small objects into fewer large ones (e.g. Parquet for analytics, archive bundles for logs) or keep tiny-object buckets on S3 Standard.
Does CloudRoute charge for the S3 cost audit?
No — you pay CloudRoute nothing, and you frequently pay the partner nothing too. AWS funds qualifying partner-led cost-optimization and Well-Architected engagements through its partner programs, and a Well-Architected cost-pillar review can unlock remediation credits, so credit-eligible audits often cost the customer $0. When an engagement is not credit-eligible, it is a vetted-partner referral that pays for itself out of the savings — an S3 audit typically removes 30–68% of the S3 line, recurring monthly. CloudRoute is paid a routing commission by the partner, not by you.

Want 30–68% off your S3 bill without guessing storage classes?

CloudRoute routes you to a vetted AWS partner who audits your buckets, models Intelligent-Tiering vs lifecycle per prefix, and does the rework. Often AWS-funded — so you frequently cut the bill for $0. No procurement, no discovery theater.

typical S3 saving30–68%
matched within< 24h
cost to youoften $0
S3 Intelligent-Tiering: cost, tiers & breakeven (2026 guide) · CloudRoute