The week in one paragraph
Sixty-three announcements, up half again on last week's forty-one, and the distribution was unusual: one substantial platform release in AWS Glue 6.0, and then a long tail of small changes that share a property worth naming. Network Firewall started counting rule hits. Direct Connect gained controls over what a customer gateway may advertise. CloudWatch log centralization began propagating log group tags. Amazon Quick added deny by default. DynamoDB Streams gained attribute-based access control. None of those is a headline feature, and all of them answer the same class of question — what is this thing actually doing, and who can make it do that — which has been the harder problem in most estates for some time.
Covered in depth
Every working day this week produced a deep-dive. Each one is linked below with the detail the announcement itself omitted.
| News | Post | What the announcement left out |
|---|---|---|
| Mon 17 | #12 — The sign-in page changed | A visual redesign that only automation notices, because the entry point and the flow between pages moved. |
| Tue 18 | #13 — Policy Autopilot reads your Terraform plan | It reads the plan, not the runtime — so it sees intent rather than behaviour, which is a different and narrower thing. |
| Wed 19 | #14 — Twenty managed policies per role | Roles doubled to 20, raisable to 25. Users stayed at 10, and groups stayed at 10 with a maximum of 10, so there is no increase to request there at all. |
| Thu 20 | #15 — Rule hit counts, and why zero does not mean unused | Counts come from alert logs, so pass rules and stateless rules report zero while fully live. The allow-list is invisible to the counter. |
| Fri 21 | #16 — Glue 6.0 and the reach of Iceberg v3 | Athena cannot read v3 tables. The new types need Spark DataFrames, not DynamicFrames. And it is a Spark 4 migration underneath. |
Visibility and control
The largest group this week, and the one most worth a Monday morning.
- Network Firewall rule hit count — on by default, free, everywhere except Middle East (UAE) and Middle East (Bahrain). Covered above; read the caveat before pruning anything.
- Direct Connect inbound prefix controls and higher prefix scale — filtering what a customer gateway is permitted to advertise, plus more room. Prefix limits are a constraint hybrid designs hit in practice, and advertisement filtering changes who is able to break your routing.
- CloudWatch log centralization now propagates log group tags — centralised logs previously arrived stripped of the tags that told you whose they were. This is a small change with a direct effect on cost allocation and access scoping.
- CloudWatch pipelines adds GeoIP, RDS and XML processors — transformation moving into the pipeline rather than into a Lambda somebody maintains.
- Aurora DSQL supports CloudWatch Database Insights — DSQL has been notably thin on observability, so this closes a real gap.
- WorkSpaces Applications gains in-console monitoring, and Deadline Cloud now tracks automatic download status in its monitor.
- AWS Security Agent, now part of AWS Continuum, adds budget controls and finding revalidation — revalidation matters more than it reads, because a findings list nobody re-checks becomes a list nobody trusts.
- Client-side network failure visibility with NEL (Network Error Logging) on CloudFront — the failures that never reach your logs because the request never arrived. Blog post rather than a launch, but the most interesting thing published on Friday after Glue.
Data platform
AWS Glue 6.0 dominates, and the summary is that the price cut is the least consequential part of it. Spark 4.1.1, Scala 2.13.17, Python 3.13, Iceberg 1.11.0. EMRFS is gone, AWS SDK for Java v1 is gone, Scala 2.12 JARs must be recompiled, and ANSI mode is on by default so overflows throw where they used to write NULL. The Iceberg v3 support is real but narrower than it sounds: v3 tables cannot be read by Athena, and the new types work only with Spark DataFrames.
- Redshift long-term system table retention with S3 Tables — system tables have always aged out on a fixed window, which makes retrospective analysis of a slow-building problem impossible. Landing them in Iceberg changes what you can ask.
- SageMaker Unified Studio adds data profiling and anomaly detection.
- MWAA Serverless now supports PythonOperator and BashOperator — their absence was the main reason Serverless was not a drop-in for an existing DAG.
- OpenSearch Ingestion reaches GovCloud, and S3 Metadata and annotations reach GovCloud (US).
- PostgreSQL 19 Beta 3 in the RDS Database Preview Environment.
Networking and footprint
- CloudFront Origin Access Control for S3 Multi-Region Access Points — OAC and MRAP were previously mutually exclusive, which forced a choice between multi-Region resilience and the recommended way to lock a bucket to a distribution.
- A new Availability Zone in Europe (London), and a new Local Zone in Las Vegas.
- Lambda MicroVMs in five additional Regions.
- EC2 AMI creation from local snapshots on Outposts — narrow, but it removes a round trip to the parent Region for anyone running a genuine edge estate.
- MediaConnect Router configurable recovery latency modes.
- Instance Region expansions: C8gd/M8gd/R8gd, P6-B300 in Seoul, R8a in Taipei, R8i in Tel Aviv, U7i High Memory in Zurich.
Identity and access
A third consecutive week where permissions is the busiest theme.
- IAM: 20 managed policies per role by default — covered in depth above, including the three limits that did not move.
- IAM Policy Autopilot supports Terraform plan files — also covered above.
- DynamoDB Streams supports attribute-based access control — tag-based authorisation reaching a surface that previously needed named-resource policies.
- SageMaker notebooks support trusted identity propagation — the user's identity reaching the data, rather than the notebook's execution role standing in for everyone.
- Amazon Quick adds deny by default for custom permissions — a default worth having and worth checking, because flipping a default changes existing behaviour.
- Storage Gateway supports FIPS-compliant private connectivity for Tape and Volume Gateway over PrivateLink — a long-standing gap for regulated estates, and one this backlog has been holding for weeks.
- IAM identity federation to external services in the AWS European Sovereign Cloud.
- Amazon Corretto August 2026 critical security patch updates — patch, do not read.
One note on tracking AWS security bulletins yourself: the bulletins RSS feed stamps every entry with the feed's own generation time rather than the bulletin's publication date, so the dates it reports are not the dates the bulletins were issued. Read the Published: line in each bulletin body instead.
AI and agents
Bedrock had its usual heavy week, and most of it is model and Region availability rather than capability.
- AgentCore payments reaches GA — the one with real consequences, since an agent that can transact needs authorisation boundaries designed before it is switched on rather than after.
- External web access for web search on Bedrock, and Web Search in AgentCore gains domain and published-date filtering, expanding to Europe and Asia Pacific. Date filtering is the useful half: an agent grounding on undated web content is grounding on nothing in particular.
- Grok 4.6 with cross-Region inference, OpenAI models in India, expanded API support and cross-Region inference for OpenAI models, and reduced pricing for GPT-5.6 Sol.
- Cost Anomaly Detection supports third-party models on Bedrock, and Generative AI Inference Recommendation reaches SageMaker AI Studio.
What I would act on
- Pin
format-versionto 2 on Iceberg tables before anyone upgrades a Glue job. The Glue 6.0 default path is attractive and the failure is downstream and delayed: a table written at v3 is one Athena refuses withCannot read unsupported version 3. Decide this deliberately rather than discovering it when an analyst reports a broken query. - Inventory your Glue jobs for Scala JARs and AWS SDK v1 imports now, whether or not you plan to upgrade. Both are removed in 6.0, and the work is the same whenever it happens. Run one representative job with
spark.sql.ansi.enabledleft at its new default while you are there — that is the change that alters results rather than failing loudly. - Look at Network Firewall hit counts, but count your
passrules first. The feature is on and free, and the temptation to prune is immediate. Establish what fraction of your ruleset it cannot see before you act on a zero. - Check whether CloudWatch log centralization tag propagation changes your cost allocation. Tags arriving on centralised log groups where none existed before is a change to how those logs are attributed, and that is worth knowing before the invoice explains it.
Complete inventory: all 63 announcements
Every AWS What's New announcement from 17–21 August 2026, grouped by day, straight from the feed. Sixty-three items, every link checked.
Validating 63 links...Friday 21 August — 6 announcements
- Amazon Bedrock announces reduced pricing for OpenAI GPT-5.6 SolToday, OpenAI announced that they are lowering API prices for GPT-5.6 Sol.
- Amazon Connect Customer now lets managers chat with their dataAmazon Connect Customer now lets managers chat with their data in plain language and get back the answer, the evidence behind it, and the fix, in seconds.
- AWS Deadline Cloud now tracks automatic download status in the Deadline Cloud MonitorThe AWS Deadline Cloud monitor now shows the progress, status, and health of your automatic file downlaods from jobs running in the cloud.
- Amazon EKS Capability for Argo CD now supports custom configurationThe Amazon Elastic Kubernetes Service (Amazon EKS) Capability for Argo CD now supports custom configuration through a standard argocd-cm ConfigMap in your cluster.
- AWS Glue 6.0 delivers 30% price reduction and Iceberg v3 supportAWS Glue 6.0 is now generally available, delivering a 30% price reduction and introducing full support for Apache Iceberg v3, newer versions of Apache Hudi and Delta Lake, and new capabilities to improve developer productivity.
- Amazon SES now supports open and click tracking override parametersAmazon Simple Email Service (SES) now supports open and click tracking override parameters in the SendEmail and SendBulkEmail APIs.
Thursday 20 August — 13 announcements
- AWS announces the general availability of a new AWS Local Zone in Las Vegas, NevadaAWS Local Zone in Las Vegas, Nevada is now generally available.
- Amazon Timestream for InfluxDB now supports customer managed keysAmazon Timestream for InfluxDB now supports AWS Key Management Service (AWS KMS) customer managed keys for encrypting data at rest in InfluxDB 2 database instances, InfluxDB 2 Read Replicas, and InfluxDB 3 clusters.
- Amazon EC2 C8gd, M8gd and R8gd instances are now available in additional AWS RegionsAmazon Elastic Compute Cloud (Amazon EC2) C8gd, M8gd, and R8gd instances with up to 11.4 TB of local NVMe-based SSD block-level storage are now available in additional regions.
- Amazon EC2 P6-B300 instances are now available in the Asia Pacific (Seoul) RegionStarting today, Amazon Elastic Cloud Compute (Amazon EC2) P6-B300 instances are available in the Asia Pacific (Seoul) Region.
- Amazon EKS now supports certificate authority (CA) rotation with automated lifecycle managementToday, Amazon Elastic Kubernetes Service (Amazon EKS) announced certificate authority (CA) rotation, enabling customers to rotate their cluster's CA through a managed lifecycle with automated safeguards.
- Amazon CloudFront now supports Origin Access Control (OAC) for Amazon S3 Multi-Region Access PointsStarting today, customers can protect their origins using Amazon S3 Multi-Region Access Points (MRAP) by using CloudFront Origin Access Control (OAC) to only allow access from designated CloudFront distributions.
- AWS Partner Central agents MCP Server now supports OAuth with AWS Sign-InAWS partners can now access AWS Partner Central agents from tools they already use, such as Amazon Quick and Kiro, using OAuth through AWS Sign-In.
- ARC Region switch adds Amazon RDS Switchover Read Replica execution blockToday, we are launching the Amazon RDS Switchover Read Replica execution block in ARC Region switch , which automates recovery orchestration for Amazon RDS databases running Oracle Data Guard in multi-Region workloads.
- Generative AI Inference Recommendation for Amazon SageMaker now available in the SageMaker AI StudioAmazon SageMaker AI now offers Generative AI Inference Recommendations in SageMaker AI Studio, giving customers a guided, low-code, no-code path to find the best inference configuration for their workload.
- Amazon Aurora DSQL now supports Amazon CloudWatch Database InsightsAmazon Aurora DSQL now features a new Amazon CloudWatch Database Insights metric that delivers per-statement, cluster-level performance monitoring details.
- AWS Direct Connect introduces inbound prefix controls and higher prefix scaleToday, AWS Direct Connect announced inbound prefix controls, a new capability that lets you allocate and manage inbound route-prefix allocations for your private and transit virtual interfaces (VIFs) based on your workload's needs.
- Amazon Redshift introduces long-term system table retention with Amazon S3 Tables integrationAmazon Redshift now supports long-term retention for system table data through native integration with Amazon S3 Tables.
- AWS Marketplace now supports category-based notifications and multi-channel delivery for partnersAWS partners can now configure category-based notifications and multi-channel delivery for AWS Marketplace notifications through AWS User Notifications.
Wednesday 19 August — 20 announcements
- Launching External Web Access for Web Search on Amazon BedrockEarlier this month, we announced Web Search on Amazon Bedrock , a built-in server-side tool that allows you to ground model responses with current web knowledge, while maintaining data within your…
- Web Search in Amazon Bedrock AgentCore adds domain and published date filtering, expands to Europe and Asia PacificWeb Search in Amazon Bedrock AgentCore now supports domain filtering and published-date filtering, giving agents per-request control over which web sources and time windows they search.
- Amazon EC2 enables AMI creation with local snapshots from instances on OutpostsAmazon EC2 now supports creating Amazon Machine Images (AMIs) with local snapshots from instances running on AWS Outposts.
- Amazon CloudWatch log Centralization now supports log group tag propagationAmazon CloudWatch Centralization now copies log group tags from source accounts to the destination log groups created by centralization rules.
- Amazon DynamoDB Streams now supports attribute-based access controlAmazon DynamoDB Streams now supports attribute-based access control (ABAC), enabling you to use tag-based conditions in your Identity and Access Management (IAM) policies to control access to your data streams.
- Amazon SageMaker notebooks now support trusted identity propagationAmazon SageMaker Notebooks now support Trusted Identity Propagation (TIP) with Amazon Athena, Amazon Redshift, and Amazon EMR Serverless, enabling per-user access control for data analytics.
- Amazon CloudWatch pipelines adds GeoIP, RDS, and XML processorsAmazon CloudWatch pipelines now includes three new processors that parse and enrich log data as it's ingested: an Amazon RDS log parser, an XML parser and a GeoIP enrichment processor.
- AWS Security Agent (now part of AWS Continuum) now supports budget controls and finding revalidationAWS Security Agent (now part of AWS Continuum) has a on-demand penetration testing service that uses an AI agent to autonomously test web applications for vulnerabilities, billing based on cumulative…
- AWS Elemental MediaConnect Router now supports configurable recovery latency modesAWS Elemental MediaConnect Router now enables customers to configure latency settings, providing control over the internal connection latency between inputs and outputs within the router.
- AWS Cost Anomaly Detection supports third-party models on Amazon BedrockAWS Cost Anomaly Detection now monitors spend on third-party foundation models running on Amazon Bedrock, such as Anthropic Claude and other provider-hosted models.
- Amazon OpenSearch Ingestion is now available in GovCloud RegionsStarting today, customers can use Amazon OpenSearch Ingestion in AWS GovCloud (US-East) and AWS GovCloud (US-West), for ingesting data into their Amazon OpenSearch Service managed clusters or serverless collections.
- AWS Marketplace launches support for Amazon LightsailToday, AWS Marketplace announces support for launching select Amazon Machine Images (AMIs) on Amazon Lightsail.
- AWS announces a new Availability Zone in the Europe (London) RegionAWS has added a fourth Availability Zone to the Europe (London) Region (eu-west-2), expanding infrastructure capacity to meet growing demand for cloud compute in the Region.
- AWS Lambda MicroVMs is now available in 5 additional AWS regionsAWS Lambda MicroVMs is now available in 5 additional AWS Regions: Asia Pacific (Mumbai), Asia Pacific (Singapore), Asia Pacific (Sydney), Europe (Frankfurt), and Europe (Stockholm).
- Amazon Quick adds deny by default for custom permissionsAmazon Quick custom permissions now include deny by default, a governance setting that automatically restricts new AI capabilities before they reach users.
- AWS IAM now supports 20 managed policies per role by defaultAWS Identity and Access Management (IAM) has increased the default quota for managed policies per role from 10 to 20.
- Amazon WorkSpaces Applications now offers in-console monitoring capabilitiesAmazon WorkSpaces Applications now offers a native monitoring experience embedded directly in the service console.
- AWS Storage Gateway now supports FIPS-compliant private connectivity for Tape and Volume GatewayAWS Storage Gateway now supports FIPS 140-3 validated endpoints over AWS PrivateLink for Tape Gateway and Volume Gateway.
- Amazon EC2 R8a instances are now available in Asia Pacific (Taipei) regionStarting today, Amazon EC2 R8a instances are now available in Asia Pacific (Taipei) Region.
- Amazon Bedrock now supports SpaceXAI Grok 4.6 with Cross Region InferencingAmazon Bedrock now supports SpaceXAI Grok 4.6, a frontier model built for coding, agentic tasks, and knowledge work, with US Geo and Global cross-Region inference.
Tuesday 18 August — 12 announcements
- Amazon Bedrock now supports OpenAI models in IndiaAmazon Bedrock now supports the OpenAI GPT-5.6 models (Terra and Luna) in India, with India Geo cross-Region inference.
- AWS IAM identity federation to external services is now available in AWS European Sovereign Cloud RegionAWS Identity and Access Management (IAM) now enables AWS workloads in the AWS European Sovereign Cloud (Germany) Region to securely authenticate with external services using short-lived JSON Web Tokens (JWTs).
- Amazon Corretto August 2026 Critical Security Patch UpdatesOn Aug 18, 2026, Amazon announced critical security patch update (CSPU) for Amazon Corretto Long-Term Support (LTS) and Feature Release (FR) versions of OpenJDK.
- AgentCore payments is now generally available in Amazon Bedrock AgentCoreToday, AWS announces the general availability of AgentCore payments, a capability within Amazon Bedrock AgentCore that enables AI agents to autonomously discover, access, and pay for paid APIs, MCPs,…
- Amazon SageMaker Unified Studio now supports data profiling and anomaly detectionAmazon SageMaker Unified Studio now supports data profiling and anomaly detection, powered by AWS Glue Data Quality.
- Amazon MWAA Serverless now supports PythonOperator and BashOperatorAmazon Managed Workflows for Apache Airflow (Amazon MWAA) Serverless now supports running custom Python functions and shell scripts directly in the serverless runtime using PythonOperator and BashOperator.
- Amazon EC2 R8i instances are now available in Israel (Tel Aviv) regionStarting today, Amazon Elastic Compute Cloud (Amazon EC2) R8i instances are available in the Israel (Tel Aviv) region.
- IAM Policy Autopilot now supports Terraform plan filesIAM Policy Autopilot can now generate baseline IAM policies directly from a Terraform plan file.
- PostgreSQL 19 Beta 3 is now available in Amazon RDS Database Preview EnvironmentStarting today, Amazon RDS for PostgreSQL 19 Beta 3 is available in the Amazon RDS Database Preview Environment , allowing you to evaluate the pre-release of PostgreSQL 19 on Amazon RDS for PostgreSQL.
- Amazon EC2 High Memory U7i instances now available in AWS Europe (Zurich) regionAmazon EC2 High Memory U7i-6TB instances (u7i-6tb.112xlarge) are now available in AWS Europe (Zurich) region.
- Amazon WorkSpaces now supports Nested VirtualizationAmazon WorkSpaces now supports nested virtualization for Amazon WorkSpaces Personal and Amazon WorkSpaces Core Managed Bundles.
- Amazon S3 Metadata and annotations are now available in AWS GovCloud (US) RegionsAmazon S3 Metadata and annotations are now available in AWS GovCloud (US-East) and AWS GovCloud (US-West) Regions, giving you the easiest and fastest way to discover, understand, and enrich your S3 data.
Monday 17 August — 12 announcements
- Amazon Bedrock expands API support and introduces Cross Region Inferencing for OpenAI modelsAmazon Bedrock now supports the OpenAI GPT-5.6 models (Sol, Terra, and Luna) on the bedrock-runtime endpoint, with support for the Responses, Converse, and Chat Completions APIs.
- Amazon ECR now supports 25 replication rules per registryAmazon Elastic Container Registry (Amazon ECR) has increased the maximum number of replication rules per registry from 10 to 25.
- Amazon EC2 Auto Scaling now supports batch instance terminationAmazon EC2 Auto Scaling now supports batch instance termination in a single API call.
- Amazon MSK now supports configuring custom domain names for MSK Provisioned clustersYou can now easily configure custom domain names on Amazon MSK Provisioned clusters, on either ZooKeeper or KRaft mode for metadata management.
- Amazon EC2 R8i and R8i-Flex instances are now available in Canada West (Calgary) regionStarting today, Amazon Elastic Compute Cloud (Amazon EC2) R8i and R8i-flex instances are available in the Canada West (Calgary) region.
- Amazon Connect Customer dashboards now support reporting on routing steps and agent proficienciesAmazon Connect Customer dashboards now support reporting on routing steps and agent proficiencies enabling supervisors to monitor and optimize how contacts are matched to agents based on agent proficiencies.
- AWS Network Firewall Now Supports Stateful Rule Hit CountsAWS Network Firewall now provides rule hit counts for stateful rules, giving network administrators and security engineers visibility into how often each stateful rule in the firewall policy matches network traffic.
- Amazon Quick Microsoft 365 extensions are now generally availableAmazon Quick announces the general availability of Microsoft 365 extensions for Excel, PowerPoint, Word, and Outlook.
- Amazon OpenSearch Service now supports automatic semantic enrichment for VPC domainsAmazon OpenSearch Service now extends automatic semantic enrichment to VPC-enabled domains, allowing customers with private network configurations to leverage AI-powered semantic search without exposing their domains to the public internet.
- AWS Console-to-Code adds 26 services and cross-region recordingAWS Console-to-Code now supports 26 additional AWS services and introduces cross-region and cross-browser-tab action recording.
- Amazon Location Service now supports POI category and density filtering in map stylesToday, Amazon Location Service adds per-category and density-based Point of Interest (POI) filtering to its maps.
- AWS CloudShell now includes a built-in visual file editorAWS CloudShell now includes a built-in visual file editor that you can launch directly from your shell session using a single 'edit' command, no setup required.
Official AWS references
- Migrating AWS Glue jobs to AWS Glue version 6.0 — the runtime version table, the Iceberg v3 limitations including the Athena read error, and the breaking changes: EMRFS removed, AWS SDK for Java v1 removed, ANSI mode on by default
- AWS Glue pricing — the ETL and interactive sessions rate, billed by the second
- AWS What's New — the source feed for this inventory
Comments