AWS

AWS: Lambda 1MB async payloads, Node.js 24 & .NET 10 runtimes, Bedrock AgentCore updates, S3 Files & Interconnect

AWS updates: Lambda async payloads to 1MB, Node.js 24 and .NET 10 runtimes, Bedrock AgentCore and prompt tooling improvements, plus S3 Files and Interconnect.

May 31, 2026·6 min read·AI researched · AI written · AI reviewed

AWS packed a number of operationally relevant updates into a single cycle: larger async Lambda payloads, new runtimes, improved tenant isolation semantics, Bedrock prompt/agent tooling, and infrastructure launches (S3 Files, Interconnect, EKS updates). These changes shift platform trade-offs around event design, isolation density, model ops, and cross-cloud wiring. Below are the concrete implications and immediate actions for platform teams.

Lambda: 1 MB async payloads, runtimes, and tenant isolation — re-evaluate assumptions

The headline: AWS increased the maximum payload size for asynchronous Lambda invocations (service integrations like async Lambda invocations, SQS, EventBridge async) from 256 KB to 1 MB. This reduces the need for external payload stores for many event-driven workflows but changes operational costs and risk profiles.

Key implications

  • Event design: You can include richer context (larger tracing envelopes, additional metadata, or compressed payloads) without always using S3/DynamoDB. Still enforce strict schema validation and size limits in your contracts to avoid unbounded events.

  • Costs and retries: Expect higher egress and retry costs if larger events are retried. Update DLQ and retry policies, and model worst-case costs using 1 MB per async message rather than 256 KB.

  • Observability: Larger events improve debuggability but increase storage and tracing volume. Review log retention, sampling, and sensitive-data scrubbing to avoid logging PII or oversized payloads.

Runtimes

Lambda now includes newer managed runtimes (commonly cited as Node.js 24 and .NET 10) and updated base images for containerized functions. Plan compatibility tests for native modules, ABI changes, dependencies, and cold-start behavior before migrating production workloads. When updating functions, verify the exact runtime identifier in your account/region before deploying. Example CLI pattern:

# Example: update a Lambda's runtime. Verify the exact runtime identifier for your region/account first.
aws lambda update-function-configuration \
  --function-name my-backend-fn \
  --runtime nodejs24.x
 
aws lambda update-function-configuration \
  --function-name my-event-processor \
  --runtime dotnet10

Tenant isolation

AWS announced enhanced tenant isolation for Lambda execution environments (targeting multi-tenant SaaS scenarios). That can enable denser tenancy with stronger isolation guarantees, but it does not remove other security controls.

Operational considerations

  • Security: Continue enforcing IAM least privilege, tenant-scoped secrets, and encryption. Treat isolation as an additional control, not a sole protection.
  • Billing & telemetry: Ensure your cost attribution and telemetry map runtime/execution instances back to tenant IDs if environment allocation changes.
  • Filesystem and /tmp semantics: Validate assumptions about ephemeral storage reuse and lifecycle under the new isolation behavior.

Bedrock AgentCore & prompt tooling — productionizing prompt engineering and agents

Amazon Bedrock's recent updates focus on tooling for prompt optimization and agent orchestration rather than introducing new base models. Expect features that accelerate iterative prompt testing, built-in evaluation workflows, and richer agent lifecycle observability.

Operational impact

  • Prompt as code: Treat prompts as versioned artifacts. Use systematic A/B tests and objective metrics (task-specific utility scores, custom metrics) to promote prompt changes through CI.
  • Model migration: Use Bedrock tooling to benchmark different model families behind a stable prompt surface to reduce coupling between prompts and specific model versions.
  • Agent orchestration: AgentCore enhancements improve step-level telemetry, retry controls, and integration points with external tools — feed those events into your APM/tracing system.

Checklist

  • Integrate Bedrock evaluation outputs into model CI pipelines; persist prompt/evaluation artifacts with your build artifacts.
  • Send AgentCore events (step latency, tool failures, action distributions) to centralized observability to detect drift and failure modes.
  • Budget for evaluation: systematic A/B and multi-model comparisons will increase evaluation compute and inference costs.

Infrastructure launches: Interconnect, S3 Files, and EKS control plane options

Several launches affect cross-cloud connectivity, application-compatible object storage, and Kubernetes control plane guarantees.

  • Interconnect (multicloud): New private connectivity options aim to simplify predictable cross-cloud latency and throughput compared with overlay VPNs. Validate routing, MTU, and failover behavior before relying on it for critical control planes.

  • S3 Files: S3-backed file semantics target application compatibility for workloads moving off NFS/EFS. Re-run I/O profiles and verify metadata-heavy workloads, caching layers, and expected consistency/latency characteristics; it is not a drop-in low-latency block device.

  • EKS updates & Provisioned Control Plane: Provisioned control plane options target predictable API-server performance for large clusters. Evaluate this option if you face API-server throttling or latency at scale and test admission controllers and integrations against the specified EKS version.

Validation checklist

  • Cross-cloud routing: Compare throughput/failover against Direct Connect/VPN. Collect flow logs and monitor latency under realistic patterns.
  • Storage semantics: Re-run workload benchmarks (metadata, small-file workloads, reads/writes) and validate cache effectiveness and cold-start behavior.
  • EKS control plane: Test the provisioned control plane with your cluster density and admission controllers; measure API latency and error rates under load.

Pricing and packaging changes

New explicit pricing lines and commitment options can affect long-term cost models:

  • VPC encryption: Some VPC-level encryption and transit features now have explicit pricing. Include encryption costs in egress and inter-service path models.
  • OpenSearch/Neptune savings plans: New commitment options may offer better economics for steady-state usage; run historical usage simulations to find break-even points.

Action items and checklist for the week

  1. Revisit event schemas
  • Update contract docs and schema registries to allow up to 1 MB for async events where appropriate. Enforce validation to avoid runaway event sizes.
  1. Plan runtime upgrades
  • Schedule canaries/blue-green deployments for Node.js 24 and .NET 10. Run dependency, native module, and cold-start benchmarks.
  1. Reassess multi-tenant architecture
  • Decide where denser tenancy is safe. Update cost allocation and per-tenant telemetry if isolation semantics change environment mapping.
  1. Treat prompts & agents like code
  • Add Bedrock APO-style evaluations into CI, persist artifacts, and instrument AgentCore telemetry into APMs.
  1. Validate infra migrations
  • For Interconnect and S3 Files, run realistic load tests, validate consistency, and update runbooks.
  1. Update cost models
  • Incorporate VPC encryption pricing and simulate OpenSearch/Neptune savings plans with 12 months of usage.

Practical starting tasks

  • Add a backlog ticket to test end-to-end large async events (producer → SQS/EventBridge → Lambda), including retries and DLQ handling.
  • Run a small canary Lambda using the new runtime to capture telemetry differences.
  • Pilot a Bedrock evaluation: run 2–3 prompt variants with objective metrics and instrument AgentCore events into your observability stack.

These changes are incremental individually but significant in aggregate: payload-size increases, runtime bumps, and isolation improvements shift architecture and operational priorities. Start with small experiments (canaries and pilots), measure the impact on cost, telemetry, and latency, then update CI, observability, and runbooks based on measured outcomes.

Sources

aws-lambdaamazon-bedrockaws-infrastructureekss3nodejsdotnet
← All articles
AWS

AWS Weekly: EKS 1.34 & Provisioned Control Plane, Lambda 1MB Async Payload, Bedrock Prompt Ops, S3 Files & Multicloud Interconnect

AWS weekly: EKS 1.34 & Provisioned Control Plane, Lambda async payload to 1MB, Bedrock prompt tools, S3 Files, Interconnect multicloud, and pricing updates.

Jun 2, 2026·6maws-newseks
AWS

AWS Week: EKS 1.34 & Provisioned Control Plane, Bedrock AgentCore, SageMaker OpenAI-compatible Endpoints, Pricing Updates

Weekly AWS: EKS 1.34 and provisioned control plane, Bedrock AgentCore managed execution preview, SageMaker OpenAI-compatible endpoints, pricing updates.

May 29, 2026·6mawseks
AWS

AWS Weekly: Bedrock AgentCore Payments (Preview), MCP Server GA, Amazon S3 Files, and AWS Interconnect — Multicloud

AWS weekly: Bedrock AgentCore Payments (preview), MCP Server GA, Amazon S3 Files, and AWS Interconnect—multicloud. Platform guidance on identity, networking, storage.

May 27, 2026·6maws-bedrocks3-files