@aws-sdk/client-sesv2 3.670.0 → 3.672.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/dist-cjs/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +1 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +1 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -1692,6 +1692,7 @@ var se_PutConfigurationSetDeliveryOptionsCommand = /* @__PURE__ */ __name(async
|
|
|
1692
1692
|
let body;
|
|
1693
1693
|
body = JSON.stringify(
|
|
1694
1694
|
(0, import_smithy_client.take)(input, {
|
|
1695
|
+
MaxDeliverySeconds: [],
|
|
1695
1696
|
SendingPoolName: [],
|
|
1696
1697
|
TlsPolicy: []
|
|
1697
1698
|
})
|
|
@@ -772,6 +772,7 @@ export const se_PutConfigurationSetDeliveryOptionsCommand = async (input, contex
|
|
|
772
772
|
b.p("ConfigurationSetName", () => input.ConfigurationSetName, "{ConfigurationSetName}", false);
|
|
773
773
|
let body;
|
|
774
774
|
body = JSON.stringify(take(input, {
|
|
775
|
+
MaxDeliverySeconds: [],
|
|
775
776
|
SendingPoolName: [],
|
|
776
777
|
TlsPolicy: [],
|
|
777
778
|
}));
|
|
@@ -47,6 +47,7 @@ declare const CreateConfigurationSetCommand_base: {
|
|
|
47
47
|
* DeliveryOptions: { // DeliveryOptions
|
|
48
48
|
* TlsPolicy: "REQUIRE" || "OPTIONAL",
|
|
49
49
|
* SendingPoolName: "STRING_VALUE",
|
|
50
|
+
* MaxDeliverySeconds: Number("long"),
|
|
50
51
|
* },
|
|
51
52
|
* ReputationOptions: { // ReputationOptions
|
|
52
53
|
* ReputationMetricsEnabled: true || false,
|
|
@@ -55,6 +55,7 @@ declare const GetConfigurationSetCommand_base: {
|
|
|
55
55
|
* // DeliveryOptions: { // DeliveryOptions
|
|
56
56
|
* // TlsPolicy: "REQUIRE" || "OPTIONAL",
|
|
57
57
|
* // SendingPoolName: "STRING_VALUE",
|
|
58
|
+
* // MaxDeliverySeconds: Number("long"),
|
|
58
59
|
* // },
|
|
59
60
|
* // ReputationOptions: { // ReputationOptions
|
|
60
61
|
* // ReputationMetricsEnabled: true || false,
|
|
@@ -39,6 +39,7 @@ declare const PutConfigurationSetDeliveryOptionsCommand_base: {
|
|
|
39
39
|
* ConfigurationSetName: "STRING_VALUE", // required
|
|
40
40
|
* TlsPolicy: "REQUIRE" || "OPTIONAL",
|
|
41
41
|
* SendingPoolName: "STRING_VALUE",
|
|
42
|
+
* MaxDeliverySeconds: Number("long"),
|
|
42
43
|
* };
|
|
43
44
|
* const command = new PutConfigurationSetDeliveryOptionsCommand(input);
|
|
44
45
|
* const response = await client.send(command);
|
|
@@ -1189,6 +1189,14 @@ export interface DeliveryOptions {
|
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
1191
|
SendingPoolName?: string;
|
|
1192
|
+
/**
|
|
1193
|
+
* <p>The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email.
|
|
1194
|
+
* If specified, the value must greater than or equal to 300 seconds (5 minutes)
|
|
1195
|
+
* and less than or equal to 50400 seconds (840 minutes).
|
|
1196
|
+
* </p>
|
|
1197
|
+
* @public
|
|
1198
|
+
*/
|
|
1199
|
+
MaxDeliverySeconds?: number;
|
|
1192
1200
|
}
|
|
1193
1201
|
/**
|
|
1194
1202
|
* <p>Enable or disable collection of reputation metrics for emails that you send using this
|
|
@@ -6286,6 +6294,14 @@ export interface PutConfigurationSetDeliveryOptionsRequest {
|
|
|
6286
6294
|
* @public
|
|
6287
6295
|
*/
|
|
6288
6296
|
SendingPoolName?: string;
|
|
6297
|
+
/**
|
|
6298
|
+
* <p>The maximum amount of time, in seconds, that Amazon SES API v2 will attempt delivery of email.
|
|
6299
|
+
* If specified, the value must greater than or equal to 300 seconds (5 minutes)
|
|
6300
|
+
* and less than or equal to 50400 seconds (840 minutes).
|
|
6301
|
+
* </p>
|
|
6302
|
+
* @public
|
|
6303
|
+
*/
|
|
6304
|
+
MaxDeliverySeconds?: number;
|
|
6289
6305
|
}
|
|
6290
6306
|
/**
|
|
6291
6307
|
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
@@ -290,6 +290,7 @@ export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
|
|
|
290
290
|
export interface DeliveryOptions {
|
|
291
291
|
TlsPolicy?: TlsPolicy;
|
|
292
292
|
SendingPoolName?: string;
|
|
293
|
+
MaxDeliverySeconds?: number;
|
|
293
294
|
}
|
|
294
295
|
export interface ReputationOptions {
|
|
295
296
|
ReputationMetricsEnabled?: boolean;
|
|
@@ -1343,6 +1344,7 @@ export interface PutConfigurationSetDeliveryOptionsRequest {
|
|
|
1343
1344
|
ConfigurationSetName: string | undefined;
|
|
1344
1345
|
TlsPolicy?: TlsPolicy;
|
|
1345
1346
|
SendingPoolName?: string;
|
|
1347
|
+
MaxDeliverySeconds?: number;
|
|
1346
1348
|
}
|
|
1347
1349
|
export interface PutConfigurationSetDeliveryOptionsResponse {}
|
|
1348
1350
|
export interface PutConfigurationSetReputationOptionsRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.672.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sesv2",
|