From 91a1a4cb4556829bd0bd415e92feed400be4b7c5 Mon Sep 17 00:00:00 2001 From: Ben Schofield Date: Thu, 5 Dec 2024 08:02:32 -0800 Subject: [PATCH] Fix dsql token gen example Fix the example in the dsql token generator. --- aws/rust-runtime/aws-inlineable/src/dsql_auth_token.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/rust-runtime/aws-inlineable/src/dsql_auth_token.rs b/aws/rust-runtime/aws-inlineable/src/dsql_auth_token.rs index 8d8dc766d5..e5fa64e44f 100644 --- a/aws/rust-runtime/aws-inlineable/src/dsql_auth_token.rs +++ b/aws/rust-runtime/aws-inlineable/src/dsql_auth_token.rs @@ -36,7 +36,7 @@ const SERVICE: &str = "dsql"; /// .build() /// .expect("cfg is valid"), /// ); -/// let token = generator.auth_token(&cfg).await.unwrap(); +/// let token = generator.db_connect_admin_auth_token(&cfg).await.unwrap(); /// println!("{token}"); /// } /// ```