Skip to content

Amazon Managed Blockchain

Last Updated: September 12, 2026

What This Document Covers

  • Which burdens of self-operation Amazon Managed Blockchain (AMB) takes on, and what it cannot do
  • Criteria for choosing managed versus self-operated — and one variable you must include in that judgment
  • What the shift in AWS's ledger and blockchain portfolio implies for architecture decisions

What AMB Consists Of

AMB is not one service but a bundle of components with different characters.

OfferingWhat it providesCost/operations boundary
Hyperledger FabricPermissioned network/member/peer resourcesComponent/node/storage and network pricing; customer retains application, channel and identity responsibilities
Dedicated Ethereum nodesManaged node access on supported networksNode/storage/network charges where applicable
Serverless AMB AccessSupported public-chain RPC access without dedicated node provisioningRequest pricing; verify current chains, methods and Regions
AMB QueryIndexed blockchain-data APIsAPI/request pricing and supported query coverage; not an arbitrary full-node RPC substitute

These offerings have different provisioning, API, billing and responsibility models. Choose the required network and method first; do not treat AMB as one universally per-node service.

Needs verification

AMB's supported frameworks and chains, regional availability, and preview/GA status vary over time per component. Confirmed changes include the end of support for the Ethereum Goerli testnet (April 1, 2024) and the Polygon Mumbai testnet (April 15, 2024), and Polygon PoS mainnet was at one point offered in Public Preview.

Before finalizing a design, check the AMB official documentation and regional availability directly. This document does not assert the current support status of any specific chain.

What It Takes On

Contrasting with the burdens covered in the self-operation document makes the boundary clear.

Burden when self-operatingWith AMB
StatefulSet, volume, storage class designHandled
Watching disk growth and expanding volumesHandled
Initial sync and snapshot managementHandled
P2P exposure and advertised address configurationHandled
Client version upgradesHandled
Hard fork responseHandled (managed nodes)
Fabric certificate issuance infrastructureLargely handled (managed CA)
Node availability and monitoring foundationHandled

Managed providers handle the node/service maintenance promised by the selected offering. Verify supported networks, upgrade notices, API behavior and your retained application responsibilities; a protocol cadence does not by itself define an AWS service guarantee.

What It Cannot Do

This is the crux of the decision.

ItemConstraint
Client choiceLimited to the clients and versions AMB offers. You cannot directly control a client diversity strategy
Fine-grained tuningCache sizes, pruning modes, kernel parameters are not adjustable
Supported chainsOnly what AMB supports. New or small chains are generally unsupported
Archive modeCoverage may be limited
Validator operationManaged nodes are generally for queries and transaction submission. Running a staking validator is a separate matter
Region and network configurationLimited to AMB-supported regions and connectivity options
Cost structureDepends on offering: provisioned node/component costs or serverless request/API charges; measure equivalent coverage and usage

Validator operation is an especially important distinction. AMB Access public chain nodes are for reading chain data and submitting transactions; participating as a PoS validator to earn staking rewards is a different set of requirements (key management, signing availability, slashing risk). If staking is the goal, AMB does not solve it.

Selection Criteria

SituationRecommendation
Only reading chain dataAMB Query — no node needed at all
Queries plus submission, limited operations staffAMB Access managed nodes
Specific client or tuning neededSelf-operate
Validator/stakingSelf-operate (or a specialized staking service)
Chain not supported by AMBSelf-operate
Consortium Fabric, fast startAMB Access Fabric
Fine-grained control over FabricSelf-operate with an operator
High traffic, cost optimization goalSelf-operate (comparison needed)

Decision order

Step 1 — do you actually need a node? If you only query data, AMB Query or a third-party RPC provider may be enough. Running nodes is a costly, burdensome choice, so confirm the need first.

Step 2 — do you need control? If you need any of client choice, tuning, archive, or validator participation, self-operate.

Step 3 — cost? Price the selected offering: dedicated resources, serverless requests or Query APIs as applicable. Compare EC2/EKS, storage, transfer, redundancy and staff costs under equivalent coverage and availability. There is no measured universal crossover based only on node count.

Step 4 — can you mix? Usually yes, and often sensible in practice — for instance, managed for general queries and self-operated for special purposes.

The Shift in AWS's Ledger and Blockchain Portfolio — A Variable You Must Consider

This is the most important part of this document. Deciding on technical comparison alone misses a risk.

The end of Amazon QLDB

Amazon QLDB (Quantum Ledger Database) was a managed ledger database providing a cryptographically verifiable, immutable transaction log. It was announced at re:Invent 2018 and went GA in 2019.

DateEvent
2018Announced at re:Invent
2019GA
July 2024End of support announced
July 31, 2025Service ended

The migration path AWS offered was Amazon Aurora PostgreSQL. But there is an important point here — moving to Aurora PostgreSQL loses the cryptographic verifiability that was QLDB's core value. Ledger-like functionality can be implemented with extensions, but the part that "mathematically proves nothing was tampered with" is not replaced.

What this implies

QLDB and AMB are different services, and QLDB's end of support does not imply AMB's. But there are lessons for architecture decisions.

LessonPractical application
Managed services can also be discontinuedEspecially low-adoption, special-purpose services
A migration path may not be functionally equivalent"A replacement exists" is not "it provides the same thing"
The notice period can be shortCalculate the time your migration would need in advance
Standard technology is easier to move offBuilt on an open-source protocol, you can move to self-operation

Needs verification

AMB's forward roadmap and service continuity plans could not be confirmed in this document. No end-of-support announcement for AMB as a whole was found at the time of research — but that is not evidence of "no plans to discontinue," it means "no announcement was found."

If you are designing a long-lived system, confirm the service roadmap directly with your AWS account team or solutions architect. In environments with long system lifespans, such as financial services, this confirmation may matter more than the technical comparison.

Designing to reduce discontinuation risk

This risk cannot be eliminated, only mitigated.

MitigationContent
Stay on standard protocolsWith open protocols like Ethereum or Fabric, you can move to self-operation or another provider if the managed offering disappears
An abstraction layerKeep the application from depending directly on AMB APIs. Abstracting the RPC interface makes swapping backends easy
Data independenceKeep chain data in your own index or warehouse too. Historical data survives a provider change
Key recovery and exitKMS private signing keys cannot be exported. Plan recovery/exit before funding or enrolling an identity; distinguish public-key download, imported-key backups, CloudHSM backup/wrapping rules and account/contract rotation options
Estimate migration timeMeasuring how long node resync and data migration take lets you judge whether you could respond within a notice period

The "abstraction layer" is the most effective response. If the application speaks a standard RPC interface (Ethereum JSON-RPC and the like), the backend can be AMB, self-operated, or third-party. Coupling directly to AMB-specific APIs forfeits that flexibility.

Integration With AWS Services

One of AMB's substantive benefits is AWS ecosystem integration.

IntegrationUse
IAMAccess control — IAM policies applied to chain node access
CloudWatchMetrics and logs
CloudTrailAuditing management API calls
VPC endpoints / PrivateLinkPrivate connectivity
KMSKey management

IAM integration is particularly useful. A self-operated node's RPC endpoint needs its own authentication scheme (or network-layer control only), whereas AMB can be controlled via IAM — meaning it is managed consistently with your internal permission model.

For private connectivity, concepts from the VPC Lattice section may apply — though whether AMB and Lattice integrate directly is a separate item to confirm (the same character as the unconfirmed items in VPC Lattice Constraints).

Comparison With Self-Operation

ItemAMBSelf-operated (EKS/EC2)
Initial build timeShortLong (including sync)
Operations staffFewMany
Hard fork responseAWSYou
Disk growth managementAWSYou
Client choiceLimitedFree
Tunable scopeLimitedEverything
Validator operationDifficultPossible
Supported chainsAMB's listUnconstrained
Cost structureDepends on offering: provisioned node/component costs or serverless request/API charges; measure equivalent coverage and usage
IAM integrationBuilt inBuild it yourself
Service lifecycle riskManaged offering availability/support can changeOpen-source/client maintenance, protocol and infrastructure dependencies also remain
PortabilityPossible on standard protocols

Summary

  • AMB bundles AMB Access Fabric (consortium networks), AMB Access public nodes (node operations offloaded), and AMB Query (data without nodes), each solving a different problem.
  • Managed maintenance can reduce node-operation work, but offering-specific duties, upgrade notices and application validation remain relevant.
  • Among the things it cannot do, the most important distinction is validator operation. Managed nodes are for queries and submission; staking is a different requirement set.
  • Decision order: ① do you really need a node → ② do you need control → ③ cost → ④ can you mix. Many cases are filtered out at step 1.
  • QLDB ended on July 31, 2025, and its migration path (Aurora PostgreSQL) does not provide cryptographic verifiability. It is a case study in managed services being discontinued and replacements not being functionally equivalent.
  • The most effective mitigation is standard protocols plus an abstraction layer. Avoid coupling directly to AMB-specific APIs and you can change backends.
  • For a long-lived system, confirm the service roadmap directly with your AWS account team. It may matter more than the technical comparison.

Next: Financial Services Perspective covers regulatory, privacy, and review-board issues.

References