From f91bbf0277b38a9a55f7811e76a23d99d0719a61 Mon Sep 17 00:00:00 2001 From: ysaito1001 Date: Mon, 30 Sep 2024 13:46:04 -0500 Subject: [PATCH] Use correct env var name in docs for Assume role session name --- aws/rust-runtime/aws-config/Cargo.lock | 4 ++-- aws/rust-runtime/aws-config/Cargo.toml | 2 +- aws/rust-runtime/aws-config/src/web_identity_token.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aws/rust-runtime/aws-config/Cargo.lock b/aws/rust-runtime/aws-config/Cargo.lock index f849dcd596..a7d514a7f5 100644 --- a/aws/rust-runtime/aws-config/Cargo.lock +++ b/aws/rust-runtime/aws-config/Cargo.lock @@ -45,7 +45,7 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "aws-config" -version = "1.5.6" +version = "1.5.8" dependencies = [ "aws-credential-types", "aws-runtime", @@ -298,7 +298,7 @@ dependencies = [ [[package]] name = "aws-smithy-types" -version = "1.2.6" +version = "1.2.7" dependencies = [ "base64-simd", "bytes", diff --git a/aws/rust-runtime/aws-config/Cargo.toml b/aws/rust-runtime/aws-config/Cargo.toml index bedb7d0bcc..a583475971 100644 --- a/aws/rust-runtime/aws-config/Cargo.toml +++ b/aws/rust-runtime/aws-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws-config" -version = "1.5.7" +version = "1.5.8" authors = [ "AWS Rust SDK Team ", "Russell Cohen ", diff --git a/aws/rust-runtime/aws-config/src/web_identity_token.rs b/aws/rust-runtime/aws-config/src/web_identity_token.rs index 8399e2226c..878a64b66a 100644 --- a/aws/rust-runtime/aws-config/src/web_identity_token.rs +++ b/aws/rust-runtime/aws-config/src/web_identity_token.rs @@ -19,7 +19,7 @@ //! WebIdentityTokenCredentialProvider will load the following environment variables: //! - `AWS_WEB_IDENTITY_TOKEN_FILE`: **required**, location to find the token file containing a JWT token //! - `AWS_ROLE_ARN`: **required**, role ARN to assume -//! - `AWS_IAM_ROLE_SESSION_NAME`: **optional**: Session name to use when assuming the role +//! - `AWS_ROLE_SESSION_NAME`: **optional**: Session name to use when assuming the role //! //! ## AWS Profile Configuration //! _Note: Configuration of the web identity token provider via a shared profile is only supported