From 1310c5a108b64ce9c64212c6fb2c838f8d74ffb5 Mon Sep 17 00:00:00 2001 From: Josh Elkins Date: Mon, 21 Oct 2024 11:51:17 -0500 Subject: [PATCH] feat: Enable sigv4a for SESv2 service (#1795) --- .../software/amazon/smithy/aws/swift/codegen/AWSAuthUtils.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/smithy-aws-swift-codegen/src/main/kotlin/software/amazon/smithy/aws/swift/codegen/AWSAuthUtils.kt b/codegen/smithy-aws-swift-codegen/src/main/kotlin/software/amazon/smithy/aws/swift/codegen/AWSAuthUtils.kt index 7e4d971faa1..43d855c7bc0 100644 --- a/codegen/smithy-aws-swift-codegen/src/main/kotlin/software/amazon/smithy/aws/swift/codegen/AWSAuthUtils.kt +++ b/codegen/smithy-aws-swift-codegen/src/main/kotlin/software/amazon/smithy/aws/swift/codegen/AWSAuthUtils.kt @@ -66,7 +66,7 @@ open class AWSAuthUtils( val effectiveAuthSchemes = ServiceIndex(ctx.model).getEffectiveAuthSchemes(ctx.service) val sdkId = AuthSchemeResolverGenerator.getSdkId(ctx) - val servicesUsingSigV4A = arrayOf("S3", "EventBridge", "CloudFrontKeyValueStore") + val servicesUsingSigV4A = arrayOf("S3", "EventBridge", "CloudFrontKeyValueStore", "SESv2") var updatedAuthSchemeList = authSchemeList if (effectiveAuthSchemes.contains(SigV4Trait.ID)) {