From 3dac69840816a35676b1daf7b8d1f6989edfd331 Mon Sep 17 00:00:00 2001 From: Dmitry Kropachev Date: Fri, 17 Jul 2026 02:02:37 -0400 Subject: [PATCH] DRIVER-671 Document aws_region config --- include/scylladb/alternator/config.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/scylladb/alternator/config.h b/include/scylladb/alternator/config.h index 1c45d52..968346f 100644 --- a/include/scylladb/alternator/config.h +++ b/include/scylladb/alternator/config.h @@ -101,6 +101,11 @@ struct Config { std::uint16_t port = 8080; std::string scheme = "http"; RoutingScopePtr routing_scope = NewClusterScope(); + // The AWS SDK requires a non-empty region for client configuration, + // signing scope, and diagnostics. Alternator routing ignores this value, + // so the default is only a placeholder. Set it to the deployment or + // Scylla Cloud region when SDK logs, traces, or metrics should show a + // meaningful region. std::string aws_region = "default-alb-region"; Credentials credentials;