In This Post
The week in one paragraph
Sixty-six announcements in five days, unevenly spread: 14 on Monday, 13 Tuesday, 8 Wednesday, a startling 21 on Thursday, and 10 on Friday. The theme, if there is one, is AWS filling in operational gaps rather than launching new services: vector search arriving inside a database people already run, GPU capacity sold in eighths instead of whole units, backup data readable without a restore, and route-hijack protection folded into the tool that already holds your address inventory.
Two things stood out as genuinely architectural rather than incremental. DynamoDB vector search removes an entire component from a common RAG design. ECS fractional GPU scheduling changes the unit of purchase for inference. Both are covered in full below.
One pattern worth naming: several of this week's launches are gated in ways the announcements do not lead with. Lambda's bandwidth increase needs a Service Quotas request. IPAM's route protection needs the Advanced Tier. ECR's larger layers only apply on one of two upload paths. If you skim announcements, you will over-estimate what you actually get.
Covered in depth this week
Six daily posts published this week, each carrying the detail its announcement left out. The day column is when AWS announced the change, not when the post went out β the daily series runs a day behind the news, so Monday's post covers the previous week.
| Day | Topic | The part the announcement omitted |
|---|---|---|
| Mon | Lambda SQS Provisioned Mode reaches 10,000 event pollers | Provisioned Mode and the Maximum concurrency setting are mutually exclusive β enabling one silently removes a protective control. |
| Tue | RFC 9151 CNSA 1.0 TLS policies on ALB and NLB | Selecting any RFC 9151 policy pins backend connections to the most permissive one. The strict policy does not give you an end-to-end compliant path. |
| Wed | DynamoDB adds real-time vector search | For Cosine and Euclidean, a lower score means more similar. Threshold logic ported from any other vector store keeps the worst matches. |
| Thu | ECS fractional GPU scheduling on G6f | The fraction belongs to the instance, not the container. And 3 GB of GPU memory at one-eighth is the real constraint, not compute. |
| Fri | IPAM BGP route protection and delegated RPKI | Deleting an Internet Registry Association deletes every ROA under it, silently. Traffic keeps flowing; the prefixes just stop being protected. |
| 30 Jul | Policy-Based Routing on AWS Transit Gateway | Associating a policy table with a VPN or Connect attachment stops BGP advertisement to that peer entirely. Published Monday, covering the previous week β the series opened mid-cycle. |
The last row is the exception worth explaining: that post published on Monday but covers a 30 July announcement, so it falls outside this roundup's news window. It is listed because it published this week, and it is worth reading if you run centralised traffic inspection.
That is every Daily Intelligence post published to date β the series began this week. From next week, each roundup covers the dailies published since the previous one, and the full Daily Intelligence archive always holds every post.
Storage and backup
AWS Backup for S3: read backup data without restoring it
The strongest item that did not get its own post. You can now create an S3 Access Point against a recovery point and read backup data with ordinary S3 calls β AWS names GetObject, HeadObject and ListObjectsV2 β without initiating a restore. It works with snapshot and continuous point-in-time recovery points, in standard or logically air-gapped vaults, including recovery points shared across accounts.
This changes three workflows that previously all began with "restore it somewhere and wait": targeted single-file recovery, compliance sampling, and forensic investigation after an incident.
One operational catch worth knowing before you build on it: while an access point is active, the associated recovery point is protected from deletion. That is helpful during an investigation and awkward if it collides with a vault lifecycle policy expecting recovery points to age out.
ECR raises the image layer limit to 200 GB β on one path only
The maximum single layer size goes from 50 GB to 200 GB, which matters if you embed model weights or large datasets directly in an image rather than fetching them at runtime.
The asymmetry is the story. Only docker push gets 200 GB. Images pushed with the AWS SDK or CLI, via the UploadLayerPart API, remain limited to 50 GB. If your build pipeline uses the SDK path β and plenty of CI systems do β nothing changed for you.
Compute and containers
Lambda network bandwidth scales to 3,000 Mbps, with three conditions
Bandwidth now scales with memory: 625 Mbps at 2 GB, up to 3,000 Mbps at 10 GB, proportionally in between. No additional charge, all commercial Regions.
Three conditions the headline does not carry, and any one of them can rule you out:
- It applies only to functions outside a VPC. Functions in a VPC are not eligible β which excludes most enterprise Lambda estates.
- It needs 2 GB of memory or more.
- It is not on by default. You must request it through Service Quotas under "Network bandwidth per execution environment". Once enabled it applies automatically to all qualifying functions in the account.
Aurora Serverless scales faster from idle
Aurora Serverless now reaches up to 12 ACUs within a second and continues to 256, aimed at agentic and bursty workloads with long idle windows. Automatically enabled on clusters running platform versions 3 or 4; versions 1 and 2 can upgrade to version 4.
AI and agents
Bedrock AgentCore runtime instances go GA
Agents can now run on EC2 instances with sessions lasting up to 14 days, against 8 hours on the existing microVM-based serverless runtime. AWS manages provisioning, patching, scaling and lifecycle. Nine Regions. Management fees apply on top of EC2 costs.
The 8-hour ceiling was a real constraint for long-running agent work. This is the answer, at the cost of running instances rather than paying per invocation.
AgentCore adds temporal policies and per-user rate limiting
Stateful authorization rules and per-user traffic limits for agent deployments. Under-covered relative to its importance: as soon as agents act on behalf of users, "what may this agent do, for whom, and how often" becomes a real access-control question, and this is the first native answer.
Bedrock Web Search for GPT models
Grounds GPT model responses against a web index operated by Amazon, with a built-in knowledge graph, through OpenAI's standard tool-use interface β one API parameter. AWS states data residency is maintained within your AWS environment with zero data egress, which is the point for anyone who could not use a third-party search API for compliance reasons. Three US Regions.
1M token context for GPT-5.6, and full fine-tuning on SageMaker
GPT-5.6 Sol, Terra and Luna now support 1 million token context windows on Bedrock, with prompt caching discounts on repeated context. Separately, SageMaker AI serverless model customization added full fine-tuning β updating all parameters rather than the LoRA-style subset β across 25+ open models including gpt-oss, Gemma, Llama, Nemotron and Qwen. Four Regions.
Security and identity
Security Hub adds supply chain security as a tenth category
Curated partner solutions from Chainguard and Socket to detect and block malicious dependencies before they are built into applications, bringing the Extended plan to 23 partner solutions. GA in all commercial Regions where Security Hub operates, pay-as-you-go.
Dependency-confusion and typosquatting attacks are a live problem and most organisations have no control at this layer at all. The announcement is thin on how it integrates with CI/CD, which is the question that decides whether it is useful.
Network Firewall Forward Proxy β Preview, one Region
Network Firewall can now act as an explicit forward proxy in a new "no-source-preservation" deployment mode, so a single policy covers both explicit-proxy and transparent inspection with feature parity β managed rule groups, active threat defence, geo-IP filtering, URL and domain category filtering, and container attribute rules for EKS and ECS.
Architecturally the most interesting thing AWS shipped this week. But it is public preview in US East (Ohio) only, so it is one to design against later rather than adopt now. Free during preview.
MSK delivers Kafka authorizer logs
Denied authorization requests, with the client IP and the API attempted, delivered to CloudWatch Logs, S3 or Data Firehose. No additional cost, all Regions with MSK Provisioned except the European Sovereign Cloud. Small feature, disproportionately useful the first time you debug a permissions problem on a Kafka cluster.
IAM Identity Center: two steps toward easier multi-Region
Account access management became optional for new organization instances β when disabled, the service-linked role is not provisioned into member accounts, reducing exposure. Then a one-click multi-Region option arrived, which creates the customer managed multi-Region KMS key and replicates the instance for you, replacing a multi-step manual process. Both apply to new organization instances only.
Data and analytics
Glue Data Quality anomaly detection is now free
ETL anomaly detection moves to no additional cost, with improved prediction accuracy through observation mode. A price going to zero is the cheapest possible reason to revisit something you previously rejected on cost.
Config adds 15 resource types β and possibly to your bill
New coverage across Bedrock, OpenSearch Serverless, SageMaker, AppSync, Connect and Glue, usable with Config rules and aggregators. Worth noting: if you record all resource types, Config tracks these automatically. Broader governance coverage, and a cost increase nobody chose.
EMR on EC2 gains Spark Connect
Interactive Spark development from SageMaker notebooks and IDEs against persistent session contexts, rather than submitting jobs and waiting.
Everything else
Ranked Medium or below, listed for completeness and searchability.
| Service | What shipped |
|---|---|
| AWS Transform | Continuous modernization GA β repo-wide technical debt analysis that opens pull requests; separately, post-launch migration actions now automate through Systems Manager |
| Organizations | Maximum account quota and its utilisation now visible in Service Quotas, no support ticket needed. us-east-1 only |
| WAF | Miggo Security managed rule groups for emerging threats and AI/ML application protection |
| S3 | S3 Vectors available in the European Sovereign Cloud (Germany) |
| RDS | Visibility into storage volume initialization status after a restore β answers "why is my restored database slow?" |
| ElastiCache | Graviton4 M8g, R8g and C8gn nodes, up to 47% higher throughput and 43% lower P99 latency than the previous generation |
| Timestream for InfluxDB | On-demand and automated backup and restore, with incremental backup support |
| Lambda | Console-to-IDE integration extended to Kiro and Cursor |
| SES | An isBotEvent field distinguishes automated opens and clicks from human ones β email engagement metrics get meaningfully more honest |
| Cognito | Available as a skill in the Agent Toolkit for AWS, so coding agents can set up and troubleshoot it |
Beyond the announcements: blogs and events
The What's New feed is not the whole picture. AWS also publishes longer engineering write-ups on the News Blog, and event news lands separately again.
AWS News Blog, this week
Three posts, two of them deep dives on announcements listed above. Worth reading if either is relevant to you β they carry design detail the announcement pages do not.
- Runtime instances: persistent compute for production AI agents on Amazon Bedrock AgentCore6 August, SΓ©bastien Stormacq β the engineering detail behind the AgentCore GA listed above.
- Amazon DynamoDB now supports real-time vector search at any scale5 August, Esra Kayabali β the source for the dimension limits and distance functions in my write-up.
- AWS Weekly Roundup, 3 August3 August, Micah Walter β AWS's own roundup, covering the previous week rather than this one.
Events and conferences
No event or conference announcements this week. Nothing in the What's New feed and nothing on the News Blog.
The one date worth holding: re:Invent 2026 runs 30 November to 4 December in Las Vegas, with early-bird registration open. I will not repeat that every week β it appears here because this is the first roundup, and again only when something about it actually changes.
What I would act on
Most weeks produce a handful of things worth doing something about now, as opposed to knowing about. This week, four.
- Check whether your Lambda estate can even use the bandwidth increase. If your functions run in a VPC β most enterprise ones do β the answer is no, and it is better to know that than to plan around it. If they qualify, the Service Quotas request is the blocker, and requests take time.
- Audit your Config recording scope. If you record all resource types, 15 new ones started being tracked this week without a decision from you. Worth confirming the cost impact rather than discovering it on the invoice.
- Look at your BYOIP RPKI posture, using the free tier. IPAM route discovery costs nothing and answers a question most teams cannot answer: are our advertised prefixes actually protected? The findings that tell you whether they are protected need Advanced Tier, but the inventory is free.
- If you run AWS Backup for S3, revisit your recovery runbook. "Restore and wait" may no longer be the first step for targeted recovery or investigation. Check the access-point deletion-protection interaction with your vault lifecycle before relying on it.
And one to watch rather than act on: Network Firewall Forward Proxy. Preview in one Region, but it is the launch most likely to change egress inspection design once it reaches GA.
Complete inventory: all 66 announcements
Everything AWS announced this week, in full, grouped by day. Nothing is omitted β regional expansions, marketplace changes and minor features are all here, because the point of this page is that you should not have to look anywhere else.
Each entry carries AWS's own one-line summary rather than my paraphrase, so you can trust it without taking my word for it, and every link goes to the official announcement. All 66 were checked and resolve.
Friday 07 August β 10 announcements
- Amazon EC2 R8i and R8i-Flex instances are now available in Europe (Milan) regionStarting today, Amazon Elastic Compute Cloud (Amazon EC2) R8i and R8i-flex instances are available in the Europe (Milan) region.
- Amazon Timestream for InfluxDB now supports backup and restoreAmazon Timestream for InfluxDB now lets you create and manage your own backups and restore your data on demand.
- Amazon Cognito now available as a skill in the Agent Toolkit for AWSAmazon Cognito is now available as a core skill (aws-auth) in the Agent Toolkit for AWS .
- AWS IAM Identity Center supports one-click multi-Region option for new organization instancesAWS IAM Identity Center now makes it easier to enable multi-Region support when creating a new organization instance.
- Amazon VPC IPAM now supports BGP route protection monitoring and delegated RPKI for BYOIP prefixesAmazon Virtual Private Cloud (VPC) IP Address Manager (IPAM) now supports BGP route protection monitoring and delegated Resource Public Key Infrastructure (RPKI) management for Bring Your Own IP (BYOIP) prefixes.Full write-up β
- Amazon Bedrock AgentCore adds memory, policy, and harness in AWS GovCloud (US-West)Today, Amazon Bedrock AgentCore introduces new capabilities in AWS GovCloud (US-West).
- Amazon GameLift Servers now supports 21 new EC2 instance typesAmazon GameLift Servers now supports 21 additional Amazon EC2 instance types for managed EC2 fleets and managed container fleets.
- Amazon OpenSearch Service announces additional upgrade runway for existing domains and support dates for additional versionsIn November 2024, Amazon OpenSearch Service announced Extended Support for legacy Elasticsearch and OpenSearch engine versions (see also the detailed blog post ).
- Amazon SES now helps identify automated open and click events in event notificationsAmazon Simple Email Service (SES) now helps you identify automated email interactions.
- AWS Parallel Computing Service is now in scope for FedRAMP, SOC, ISO, CSA STAR, and PCIAWS Parallel Computing Service (PCS), a managed service that simplifies running and scaling high performance computing (HPC) workloads on AWS using Slurm, has expanded its security and compliance coverage.
Thursday 06 August β 21 announcements
- Amazon ECS now supports fractional GPU scheduling with Amazon EC2 G6f instancesAmazon Elastic Container Service (Amazon ECS) now supports fractional GPU scheduling with Amazon EC2 G6f instances, enabling you to run your workloads on GPU partitions as small as one-eighth of anβ¦Full write-up β
- AWS Lambda console extends console-to-IDE integration to Kiro and CursorAWS Lambda console now extends its console-to-IDE integration to support Kiro and Cursor IDEs.
- AWS WAF now supports a Salt Security managed rule group for API and MCP threat detectionAWS WAF now supports the Salt Security managed rule group, available through AWS Marketplace: Salt Managed Rules for AWS WAF - AI Agent & API Security .
- Amazon EC2 G7 instances are now available in the AWS Europe (Spain) RegionAmazon Elastic Compute Cloud (Amazon EC2) G7 instances powered by NVIDIA RTX PRO 4500 Blackwell Server Edition GPUs are now available in Europe (Spain) Region.
- AgentCore runtime instances are now generally availableToday, AWS announces runtime instances, a new feature in Amazon Bedrock AgentCore that lets you run agents on your own Amazon EC2 instances without managing infrastructure.
- Amazon ElastiCache now supports Graviton4-based M8g, R8g, and C8gn nodesAmazon ElastiCache now supports Graviton4-based M8g, R8g, and C8gn node families for Valkey and Memcached.
- AWS Glue Schema Registry is now available in ten more AWS regionsYou can now use the AWS Glue Schema Registry , a serverless and free feature of AWS Glue , in the Asia Pacific (New Zealand), Asia Pacific (Thailand), Asia Pacific (Hyderabad), Asia Pacific (Osaka),β¦
- Amazon OpenSearch UI now supports Network Access ControlAmazon OpenSearch Service now supports network access controls for OpenSearch UI applications.
- AWS Transform for migrations automates post-launch actionsAWS Transform now automates the configuration and execution of post-launch actions through the migration workflow.
- Amazon Connect Customer adds one-click drill-down on real-time metrics dashboardsAmazon Connect Customer dashboards now support drilling down into real-time queue and routing profile performance.
- AWS Security Agent now supports email-based MFA for penetration testingAWS Security Agent (now part of AWS Continuum ) now enables penetration testing of applications that use email-based multi-factor authentication (MFA) as part of their login flow.
- Amazon RDS now provides visibility into storage volume initialization statusAmazon RDS now provides visibility into the initialization status of database storage volumes created from snapshots.
- Amazon WorkSpaces Applications now publishes enhanced observability metricsAmazon WorkSpaces Applications now publishes additional performance and session health metrics to Amazon CloudWatch, enabling IT administrators to gain deeper visibility into their application streaming workloads.
- Amazon WorkSpaces now publishes enhanced observability metricsAmazon WorkSpaces now publishes additional performance and session health metrics to Amazon CloudWatch, enabling IT administrators to gain deeper visibility into their virtual desktop workloads.
- AWS Marketplace now lets sellers configure net payment terms on private offersAWS Marketplace now supports configurable net payment terms on private offers, with options including Net 30, Net 45, Net 60, or Net 90.
- Amazon MSK now delivers Kafka Authorizer Logs to customersAmazon Managed Streaming for Apache Kafka (MSK) now supports Authorizer Log Delivery for Provisioned clusters, including both Standard and Express brokers, at no additional cost.
- AWS Backup for Amazon S3 now supports direct access to backup dataAWS Backup for Amazon S3 now supports creating S3 Access Points, providing immediate read-only access to backup data using standard S3 APIs without initiating a restore.
- AWS Backup extends logically air-gapped vault support for Amazon Neptune to three additional AWS RegionsAWS Backup logically air-gapped vault support for Amazon Neptune is now available in three additional AWS Regions: Asia Pacific (Melbourne), Europe (Spain), and Europe (Zurich).
- Amazon Quick supports multi-dataset analytical capabiityToday, Amazon Quick announces supporting multi-dataset topics, enabling users to model relationships across multiple datasets in a single topic and use that model to build dashboards and answer questions in natural language.
- Announcing temporal policies and rate limiting in Amazon Bedrock AgentCoreAmazon Bedrock AgentCore announces two new controls: temporal policies for stateful agent authorization and rate limiting for AI traffic.
- Amazon EC2 M8g instances now available in additional regionsStarting today, Amazon Elastic Compute Cloud (Amazon EC2) M8g instances are available in AWS Asia Pacific (Taipei), and AWS Mexico (Central) regions.
Wednesday 05 August β 8 announcements
- AWS Lambda announces scalable network bandwidth up to 3,000 Mbps for functions outside a VPCAWS Lambda now supports scalable network bandwidth for Lambda functions, enabling faster data transfer to and from your execution environment for latency-sensitive workloads.
- Amazon Keyspaces (for Apache Cassandra) is now available in the Canada West (Calgary) Region (ca-west-1)Amazon Keyspaces (for Apache Cassandra) is now available in the Canada West (Calgary) Region (ca-west-1), allowing customers in the Canada West Region to build Cassandra-compatible applications withβ¦
- AWS Glue Data Quality makes ETL anomaly detection free and improves anomaly predictionsAWS Glue Data Quality now offers improved anomaly detection with a new observation mode that reduces detection of false anomalies and removes pricing for anomaly detection in ETL jobs.
- AWS Marketplace adds AI Insights so buyers can understand pricing before they buyYou can now understand how a product's pricing works before you buy it.
- Amazon DynamoDB now supports real-time vector searchToday, AWS announces the general availability of vector search for Amazon DynamoDB, a new feature to index and search vectors in real time.Full write-up β
- AWS Glue Data Catalog now supports metadata exports to S3 Tables (Preview)AWS Glue Data Catalog is a centralized metadata repository that helps you discover and understand data, with semantic search and support for adding business context to datasets currently in preview.
- AWS IAM Identity Center makes management of AWS account access optional for new organization instancesAWS IAM Identity Center now lets you decide whether to enable management of AWS account access when you create a new organization instance.
- Amazon Aurora serverless now scales faster to support agentic AI and other bursty workloadsAmazon Aurora serverless now delivers higher initial capacity during scale-up events, reaching up to 12 ACUs within a second and continuing to scale up to 256 ACUs as your workload grows.
Tuesday 04 August β 13 announcements
- [Preview Announcement] Re-introducing Forward Proxy as AWS Network Firewall FunctionalityYou can now use your Network Firewall with all its existing filtering capabilities and features as an explicit forward proxy.
- Amazon Connect Customer now lets you export cases to CSV from the agent workspaceAmazon Connect Customer now supports exporting cases to a CSV file directly from the agent workspace, making it easier to share case data with internal teams and external stakeholders such as vendors, legal teams, or business partners.
- Amazon Bedrock launches Web Search for OpenAI GPT modelsToday, we are announcing the general availability of Web Search on Amazon Bedrock, a built-in server side tool that performs web search entirely within AWS, enabling OpenAI models (GPT-5.4, GPT-5.5,β¦
- Run interactive workloads on Amazon EMR on EC2 with Spark ConnectAmazon EMR on EC2 now supports interactive Apache Spark sessions with Spark Connect.
- AWS Security Hub Extended adds supply chain security as its 10th categoryThe AWS Security Hub Extended plan now includes Supply Chain Security as its 10th security category, with Chainguard and Socket as the curated partners.
- Amazon EC2 C8g instances now available in additional regionsStarting today, Amazon Elastic Compute Cloud (Amazon EC2) C8g instances are available in AWS Europe (Paris), AWS Africa (Cape Town), AWS Israel (Tel Aviv), and AWS Canada West (Calgary) regions.
- AWS Application and Network Load Balancers now support RFC 9151 compliant security policiesAWS Application Load Balancer (ALB) and Network Load Balancer (NLB) now support new TLS-based security policies that comply with RFC 9151 TLS server requirements for Commercial National Security Algorithm (CNSA) 1.0 suite requirements.Full write-up β
- Amazon S3 Vectors is now available in the AWS European Sovereign Cloud (Germany) RegionAmazon S3 Vectors is now available in the AWS European Sovereign Cloud (Germany) Region.
- Amazon Connect Customer now supports capacity planning in 15 or 30 minute intervalsAmazon Connect Customer now lets you generate capacity plans at the interval level (15-minute or 30-minute intervals), giving workforce planners visibility into more granular staffing requirementsβ¦
- Amazon EC2 I8g instances now available in AWS Europe (Paris), Asia Pacific (Jakarta) regionsAWS announces the general availability of Amazon EC2 Storage Optimized I8g instances in AWS Europe (Paris) and Asia Pacific (Jakarta) regions.
- Amazon RDS for SQL Server now support BYOM in additional commercial regionsAmazon Relational Database Service (Amazon RDS) for SQL Server now supports Bring Your Own Media (BYOM) in 10 additional AWS Regions: Asia Pacific (Taipei, Hyderabad, Jakarta, Malaysia, Melbourne,β¦
- Amazon RDS for SQL Server supports Developer Edition in additional AWS regionsAmazon Relational Database Service (Amazon RDS) for SQL Server Developer Edition is now available in 13 additional AWS Regions: Asia Pacific (Hong Kong, Taipei, Hyderabad, Jakarta, Malaysia,β¦
- RDS SQL Server now supports publishing SQL Server Audit logs to CloudWatchAmazon Relational Database Service (Amazon RDS) for SQL Server now supports publishing SQL Server Audit logs to CloudWatch.
Monday 03 August β 14 announcements
- AWS Transform continuous modernization is now generally availableAWS Transform continuous modernization is now generally available in all AWS Regions where AWS Transform is supported .
- OpenAI GPT-5.6 Sol, Terra, and Luna now support 1 million token context windows on Amazon BedrockGPT-5.6 Sol, Terra, and Luna now support 1 million token context windows on Amazon Bedrock, enabling you to process full codebases, lengthy documents, and multi-turn agent histories in a single request.
- Amazon GameLift Streams now supports sharing streams with stream URLsAmazon GameLift Streams now offers stream URLs, which give end users temporary, unauthenticated access to a playable stream session in a supported web browser.
- Amazon SageMaker Studio notebooks now support G7 instance typesAmazon G7 instances , powered by NVIDIA RTX PRO 4500 Blackwell Server Edition GPUs, deliver up to 4.6x AI inference performance compared to previous-generation G6 instances.
- AWS HealthOmics now supports task-level timeout for WDL workflowsAWS HealthOmics now supports task-level timeout for Workflow Description Language (WDL) workflows, enabling you to set maximum execution duration for individual tasks.
- AWS Resilience Hub now provides recommended resilience testsAWS Resilience Hub now offers recommended resilience tests that help platform engineering and site reliability teams validate how their services respond to and recover from known failure scenarios.
- AWS Organizations now provides maximum account quota visibility in Service QuotasAWS Organizations customers can now view their maximum number of accounts quota and its utilization directly through AWS Service Quotas instead of relying on AWS Support or AWS account teams to determine their current account limit.
- AWS Lambda Provisioned Mode for Amazon SQS event source mappings now supports up to 10,000 event pollersAWS Lambda now supports a maximum of 10,000 event pollers for Provisioned Mode for Amazon SQS event source mappings (ESMs), a 5x increase from the previous limit of 2,000.Full write-up β
- Amazon EC2 I7i instances now available in Asia Pacific (Thailand) and Israel (Tel Aviv) RegionsAmazon Web Services (AWS) announces the availability of high performance Storage Optimized Amazon EC2 I7i instances in the Asia Pacific (Thailand) and Israel (Tel Aviv) Regions.
- Amazon SageMaker AI serverless model customization now supports full fine-tuningAmazon SageMaker AI serverless model customization now supports full fine-tuning for over 25 open-source models.
- AWS Transform for full-stack Windows modernization now supports offline schema transformation to Aurora PostgreSQLToday, AWS Transform for full-stack Windows modernization announced general availability of offline source transformation, enabling customers to modernize Microsoft SQL Server databases to Amazonβ¦
- AWS Config now supports 15 new resource typesAWS Config now supports 15 additional AWS resource types across key services including Amazon Bedrock, Amazon OpenSearch Serverless, and Amazon SageMaker.
- AWS WAF now supports Miggo Security managed rule groups for emerging threats and AI/ML application protectionAWS WAF now supports two new partner managed rule groups from Miggo Security, available through AWS Marketplace: Miggo Rules for AWS WAF β High Emerging Application Threats , and Miggo Rules for AWS WAF β AI/ML Application Protection .
- Amazon ECR now supports image layers up to 200 GBAmazon Elastic Container Registry (Amazon ECR) has increased the maximum image layer size limit to 200 GB, for images pushed via Docker push.
Official AWS references
- AWS Backup for Amazon S3 now supports direct access to backup data
- Amazon ECR now supports image layers up to 200 GB
- AWS Lambda announces scalable network bandwidth up to 3,000 Mbps
- Amazon VPC IPAM now supports BGP route protection monitoring β AWS has since removed the IPAM documentation this section originally cited, so the launch announcement is the surviving first-party source
- Amazon Aurora serverless now scales faster
- AgentCore runtime instances are now generally available
- Temporal policies and rate limiting in Amazon Bedrock AgentCore
- Amazon Bedrock launches Web Search for OpenAI GPT models
- GPT-5.6 models support 1 million token context windows on Bedrock
- SageMaker AI serverless model customization supports full fine-tuning
- AWS Security Hub Extended adds supply chain security
- Re-introducing Forward Proxy as AWS Network Firewall functionality (Preview)
- Amazon MSK now delivers Kafka Authorizer Logs
- IAM Identity Center makes account access management optional
- IAM Identity Center supports a one-click multi-Region option
- AWS Glue Data Quality makes ETL anomaly detection free
- AWS Config now supports 15 new resource types
- Run interactive workloads on Amazon EMR on EC2 with Spark Connect
- AWS What's New β the full feed
Comments