Skip to content

Commit df28319

Browse files
author
awstools
committed
feat(client-sesv2): This release introduces a new recommendation in Virtual Deliverability Manager Advisor, which detects elevated complaint rates for customer sending identities.
1 parent b5c504b commit df28319

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

clients/client-sesv2/src/commands/ListRecommendationsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
4949
* // Recommendations: [ // RecommendationsList
5050
* // { // Recommendation
5151
* // ResourceArn: "STRING_VALUE",
52-
* // Type: "DKIM" || "DMARC" || "SPF" || "BIMI",
52+
* // Type: "DKIM" || "DMARC" || "SPF" || "BIMI" || "COMPLAINT",
5353
* // Description: "STRING_VALUE",
5454
* // Status: "OPEN" || "FIXED",
5555
* // CreatedTimestamp: new Date("TIMESTAMP"),

clients/client-sesv2/src/models/models_0.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7385,6 +7385,7 @@ export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof Re
73857385
*/
73867386
export const RecommendationType = {
73877387
BIMI: "BIMI",
7388+
COMPLAINT: "COMPLAINT",
73887389
DKIM: "DKIM",
73897390
DMARC: "DMARC",
73907391
SPF: "SPF",

codegen/sdk-codegen/aws-models/sesv2.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10173,6 +10173,12 @@
1017310173
"traits": {
1017410174
"smithy.api#enumValue": "BIMI"
1017510175
}
10176+
},
10177+
"COMPLAINT": {
10178+
"target": "smithy.api#Unit",
10179+
"traits": {
10180+
"smithy.api#enumValue": "COMPLAINT"
10181+
}
1017610182
}
1017710183
}
1017810184
},

0 commit comments

Comments
 (0)