From f1f33ea21db0bb8df78928e497d40e549a9a9cd6 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Thu, 19 Sep 2024 14:26:18 -0400 Subject: [PATCH] Fix semgrep 'ci.typed-enum-conversion'. --- internal/service/ses/identity_notification_topic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/ses/identity_notification_topic.go b/internal/service/ses/identity_notification_topic.go index 9b441a376b15..ce17ed2b6d32 100644 --- a/internal/service/ses/identity_notification_topic.go +++ b/internal/service/ses/identity_notification_topic.go @@ -167,7 +167,7 @@ func resourceIdentityNotificationTopicDelete(ctx context.Context, d *schema.Reso const identityNotificationTopicResourceIDSeparator = "|" func identityNotificationTopicCreateResourceID(identity string, notificationType awstypes.NotificationType) string { - parts := []string{identity, string(notificationType)} + parts := []string{identity, string(notificationType)} // nosemgrep:ci.typed-enum-conversion id := strings.Join(parts, identityNotificationTopicResourceIDSeparator) return id