@aws-sdk/client-sesv2 3.954.0 → 3.956.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +167 -19
- package/dist-es/SESv2.js +2 -0
- package/dist-es/commands/GetEmailAddressInsightsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +2 -0
- package/dist-es/models/enums.js +14 -4
- package/dist-es/schemas/schemas_0.js +127 -15
- package/dist-types/SESv2.d.ts +7 -0
- package/dist-types/SESv2Client.d.ts +3 -2
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +8 -0
- package/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +6 -0
- package/dist-types/commands/CreateEmailTemplateCommand.d.ts +6 -0
- package/dist-types/commands/GetAccountCommand.d.ts +8 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +8 -0
- package/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +6 -0
- package/dist-types/commands/GetEmailAddressInsightsCommand.d.ts +100 -0
- package/dist-types/commands/GetEmailTemplateCommand.d.ts +6 -0
- package/dist-types/commands/PutAccountSuppressionAttributesCommand.d.ts +8 -0
- package/dist-types/commands/PutConfigurationSetSuppressionOptionsCommand.d.ts +8 -0
- package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutSuppressedDestinationCommand.d.ts +1 -1
- package/dist-types/commands/SendBulkEmailCommand.d.ts +1 -1
- package/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
- package/dist-types/commands/SendEmailCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/enums.d.ts +35 -9
- package/dist-types/models/models_0.d.ts +182 -322
- package/dist-types/models/models_1.d.ts +322 -2
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/SESv2.d.ts +17 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetEmailAddressInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutSuppressedDestinationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendBulkEmailCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendEmailCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -5
- package/dist-types/ts3.4/models/models_0.d.ts +44 -49
- package/dist-types/ts3.4/models/models_1.d.ts +62 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +34 -34
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { PutSuppressedDestinationRequest, PutSuppressedDestinationResponse } from "../models/
|
|
3
|
+
import type { PutSuppressedDestinationRequest, PutSuppressedDestinationResponse } from "../models/models_1";
|
|
4
4
|
import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { SendBulkEmailRequest, SendBulkEmailResponse } from "../models/
|
|
3
|
+
import type { SendBulkEmailRequest, SendBulkEmailResponse } from "../models/models_1";
|
|
4
4
|
import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { SendCustomVerificationEmailRequest, SendCustomVerificationEmailResponse } from "../models/
|
|
3
|
+
import type { SendCustomVerificationEmailRequest, SendCustomVerificationEmailResponse } from "../models/models_1";
|
|
4
4
|
import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { SendEmailRequest } from "../models/
|
|
4
|
-
import type { SendEmailResponse } from "../models/models_1";
|
|
3
|
+
import type { SendEmailRequest, SendEmailResponse } from "../models/models_1";
|
|
5
4
|
import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -42,6 +42,7 @@ export * from "./GetDeliverabilityDashboardOptionsCommand";
|
|
|
42
42
|
export * from "./GetDeliverabilityTestReportCommand";
|
|
43
43
|
export * from "./GetDomainDeliverabilityCampaignCommand";
|
|
44
44
|
export * from "./GetDomainStatisticsReportCommand";
|
|
45
|
+
export * from "./GetEmailAddressInsightsCommand";
|
|
45
46
|
export * from "./GetEmailIdentityCommand";
|
|
46
47
|
export * from "./GetEmailIdentityPoliciesCommand";
|
|
47
48
|
export * from "./GetEmailTemplateCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -19,6 +19,6 @@ export * from "./schemas/schemas_0";
|
|
|
19
19
|
export * from "./pagination";
|
|
20
20
|
export * from "./models/enums";
|
|
21
21
|
export * from "./models/errors";
|
|
22
|
-
export
|
|
23
|
-
export
|
|
22
|
+
export * from "./models/models_0";
|
|
23
|
+
export * from "./models/models_1";
|
|
24
24
|
export { SESv2ServiceException } from "./models/SESv2ServiceException";
|
|
@@ -231,27 +231,40 @@ export type SuppressionListReason = (typeof SuppressionListReason)[keyof typeof
|
|
|
231
231
|
* @public
|
|
232
232
|
* @enum
|
|
233
233
|
*/
|
|
234
|
-
export declare const
|
|
235
|
-
readonly
|
|
236
|
-
readonly
|
|
237
|
-
readonly REQUIRE_OPEN_ONLY: "REQUIRE_OPEN_ONLY";
|
|
234
|
+
export declare const FeatureStatus: {
|
|
235
|
+
readonly DISABLED: "DISABLED";
|
|
236
|
+
readonly ENABLED: "ENABLED";
|
|
238
237
|
};
|
|
239
238
|
/**
|
|
240
239
|
* @public
|
|
241
240
|
*/
|
|
242
|
-
export type
|
|
241
|
+
export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
|
|
243
242
|
/**
|
|
244
243
|
* @public
|
|
245
244
|
* @enum
|
|
246
245
|
*/
|
|
247
|
-
export declare const
|
|
248
|
-
readonly
|
|
249
|
-
readonly
|
|
246
|
+
export declare const SuppressionConfidenceVerdictThreshold: {
|
|
247
|
+
readonly HIGH: "HIGH";
|
|
248
|
+
readonly MANAGED: "MANAGED";
|
|
249
|
+
readonly MEDIUM: "MEDIUM";
|
|
250
250
|
};
|
|
251
251
|
/**
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
export type
|
|
254
|
+
export type SuppressionConfidenceVerdictThreshold = (typeof SuppressionConfidenceVerdictThreshold)[keyof typeof SuppressionConfidenceVerdictThreshold];
|
|
255
|
+
/**
|
|
256
|
+
* @public
|
|
257
|
+
* @enum
|
|
258
|
+
*/
|
|
259
|
+
export declare const HttpsPolicy: {
|
|
260
|
+
readonly OPTIONAL: "OPTIONAL";
|
|
261
|
+
readonly REQUIRE: "REQUIRE";
|
|
262
|
+
readonly REQUIRE_OPEN_ONLY: "REQUIRE_OPEN_ONLY";
|
|
263
|
+
};
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
export type HttpsPolicy = (typeof HttpsPolicy)[keyof typeof HttpsPolicy];
|
|
255
268
|
/**
|
|
256
269
|
* @public
|
|
257
270
|
* @enum
|
|
@@ -492,6 +505,19 @@ export declare const DeliverabilityDashboardAccountStatus: {
|
|
|
492
505
|
* @public
|
|
493
506
|
*/
|
|
494
507
|
export type DeliverabilityDashboardAccountStatus = (typeof DeliverabilityDashboardAccountStatus)[keyof typeof DeliverabilityDashboardAccountStatus];
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* @enum
|
|
511
|
+
*/
|
|
512
|
+
export declare const EmailAddressInsightsConfidenceVerdict: {
|
|
513
|
+
readonly HIGH: "HIGH";
|
|
514
|
+
readonly LOW: "LOW";
|
|
515
|
+
readonly MEDIUM: "MEDIUM";
|
|
516
|
+
};
|
|
517
|
+
/**
|
|
518
|
+
* @public
|
|
519
|
+
*/
|
|
520
|
+
export type EmailAddressInsightsConfidenceVerdict = (typeof EmailAddressInsightsConfidenceVerdict)[keyof typeof EmailAddressInsightsConfidenceVerdict];
|
|
495
521
|
/**
|
|
496
522
|
* @public
|
|
497
523
|
* @enum
|