You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2024/02/05 13:01:02 UTC

(camel) branch main updated: CAMEL-20281 - Camel-AWS Components: Make it possible to use AwsSessionCredentials to support temporary credentials - AWS SES, added check for presence of sessionToken (#13012)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 3402fb67730 CAMEL-20281 - Camel-AWS Components: Make it possible to use AwsSessionCredentials to support temporary credentials - AWS SES, added check for presence of sessionToken (#13012)
3402fb67730 is described below

commit 3402fb67730f308d9b223922bb4508978facdc1e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 5 14:00:56 2024 +0100

    CAMEL-20281 - Camel-AWS Components: Make it possible to use AwsSessionCredentials to support temporary credentials - AWS SES, added check for presence of sessionToken (#13012)
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../component/aws2/ses/client/impl/Ses2ClientSessionTokenImpl.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/client/impl/Ses2ClientSessionTokenImpl.java b/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/client/impl/Ses2ClientSessionTokenImpl.java
index 3f06b70cf3b..fd51eede61b 100644
--- a/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/client/impl/Ses2ClientSessionTokenImpl.java
+++ b/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/client/impl/Ses2ClientSessionTokenImpl.java
@@ -70,7 +70,8 @@ public class Ses2ClientSessionTokenImpl implements Ses2InternalClient {
             httpClientBuilder = ApacheHttpClient.builder().proxyConfiguration(proxyConfig.build());
             isClientConfigFound = true;
         }
-        if (configuration.getAccessKey() != null && configuration.getSecretKey() != null) {
+        if (configuration.getAccessKey() != null && configuration.getSecretKey() != null
+                && configuration.getSessionToken() != null) {
             AwsSessionCredentials cred = AwsSessionCredentials.create(configuration.getAccessKey(),
                     configuration.getSecretKey(), configuration.getSessionToken());
             if (isClientConfigFound) {