@aws-sdk/client-sesv2 3.1089.0 → 3.1091.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 +7 -0
- package/dist-cjs/index.js +44 -3
- package/dist-es/SESv2.js +2 -0
- package/dist-es/commands/PutAccountPricingAttributesCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/schemas/schemas_0.js +27 -2
- package/dist-types/SESv2.d.ts +7 -0
- package/dist-types/SESv2Client.d.ts +3 -2
- package/dist-types/commands/CreateMultiRegionEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetAccountCommand.d.ts +4 -0
- package/dist-types/commands/PutAccountPricingAttributesCommand.d.ts +79 -0
- package/dist-types/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +66 -147
- package/dist-types/models/models_1.d.ts +148 -2
- package/dist-types/schemas/schemas_0.d.ts +4 -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/PutAccountPricingAttributesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/PutEmailIdentityDkimSigningAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -14
- package/dist-types/ts3.4/models/models_1.d.ts +17 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -719,6 +719,13 @@ PutAccountDetails
|
|
|
719
719
|
</details>
|
|
720
720
|
<details>
|
|
721
721
|
<summary>
|
|
722
|
+
PutAccountPricingAttributes
|
|
723
|
+
</summary>
|
|
724
|
+
|
|
725
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sesv2/command/PutAccountPricingAttributesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/PutAccountPricingAttributesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/PutAccountPricingAttributesCommandOutput/)
|
|
726
|
+
</details>
|
|
727
|
+
<details>
|
|
728
|
+
<summary>
|
|
722
729
|
PutAccountSendingAttributes
|
|
723
730
|
</summary>
|
|
724
731
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -222,7 +222,7 @@ const commonParams = {
|
|
|
222
222
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
223
223
|
};
|
|
224
224
|
|
|
225
|
-
var version = "3.
|
|
225
|
+
var version = "3.1090.0";
|
|
226
226
|
var packageInfo = {
|
|
227
227
|
version: version};
|
|
228
228
|
|
|
@@ -493,6 +493,7 @@ const _CMRE = "CreateMultiRegionEndpoint";
|
|
|
493
493
|
const _CMRER = "CreateMultiRegionEndpointRequest";
|
|
494
494
|
const _CMRERr = "CreateMultiRegionEndpointResponse";
|
|
495
495
|
const _CMS = "CustomerManagedStatus";
|
|
496
|
+
const _CP = "CurrentPlan";
|
|
496
497
|
const _CRD = "CustomRedirectDomain";
|
|
497
498
|
const _CS = "ConfigurationSets";
|
|
498
499
|
const _CSKL = "CurrentSigningKeyLength";
|
|
@@ -901,6 +902,7 @@ const _Me = "Message";
|
|
|
901
902
|
const _Met = "Metrics";
|
|
902
903
|
const _N = "Namespace";
|
|
903
904
|
const _NFE = "NotFoundException";
|
|
905
|
+
const _NP = "NextPlan";
|
|
904
906
|
const _NSKL = "NextSigningKeyLength";
|
|
905
907
|
const _NT = "NextToken";
|
|
906
908
|
const _Na = "Name";
|
|
@@ -909,6 +911,7 @@ const _OP = "OverallPlacement";
|
|
|
909
911
|
const _OSD = "OptimizedSharedDelivery";
|
|
910
912
|
const _OV = "OverallVolume";
|
|
911
913
|
const _P = "Policy";
|
|
914
|
+
const _PA = "PricingAttributes";
|
|
912
915
|
const _PAD = "PutAccountDetails";
|
|
913
916
|
const _PADIWA = "PutAccountDedicatedIpWarmupAttributes";
|
|
914
917
|
const _PADIWAR = "PutAccountDedicatedIpWarmupAttributesRequest";
|
|
@@ -916,6 +919,9 @@ const _PADIWARu = "PutAccountDedicatedIpWarmupAttributesResponse";
|
|
|
916
919
|
const _PADR = "PutAccountDetailsRequest";
|
|
917
920
|
const _PADRu = "PutAccountDetailsResponse";
|
|
918
921
|
const _PAE = "ProductionAccessEnabled";
|
|
922
|
+
const _PAPA = "PutAccountPricingAttributes";
|
|
923
|
+
const _PAPAR = "PutAccountPricingAttributesRequest";
|
|
924
|
+
const _PAPARu = "PutAccountPricingAttributesResponse";
|
|
919
925
|
const _PASA = "PutAccountSendingAttributes";
|
|
920
926
|
const _PASAR = "PutAccountSendingAttributesRequest";
|
|
921
927
|
const _PASARu = "PutAccountSendingAttributesResponse";
|
|
@@ -991,6 +997,7 @@ const _PTSA = "PutTenantSuppressionAttributes";
|
|
|
991
997
|
const _PTSAR = "PutTenantSuppressionAttributesRequest";
|
|
992
998
|
const _PTSARu = "PutTenantSuppressionAttributesResponse";
|
|
993
999
|
const _PV = "ProjectedVolume";
|
|
1000
|
+
const _Pl = "Plan";
|
|
994
1001
|
const _Po = "Policies";
|
|
995
1002
|
const _Q = "Queries";
|
|
996
1003
|
const _R = "Results";
|
|
@@ -1833,8 +1840,8 @@ var GetAccountRequest$ = [3, n0, _GAR,
|
|
|
1833
1840
|
];
|
|
1834
1841
|
var GetAccountResponse$ = [3, n0, _GARe,
|
|
1835
1842
|
0,
|
|
1836
|
-
[_DIAWE, _ESn, _PAE, _SQ, _SEe, _SA, _Det, _VA],
|
|
1837
|
-
[2, 0, 2, () => SendQuota$, 2, () => SuppressionAttributes$, [() => AccountDetails$, 0], () => VdmAttributes$]
|
|
1843
|
+
[_DIAWE, _ESn, _PAE, _SQ, _SEe, _SA, _Det, _VA, _PA],
|
|
1844
|
+
[2, 0, 2, () => SendQuota$, 2, () => SuppressionAttributes$, [() => AccountDetails$, 0], () => VdmAttributes$, () => PricingAttributes$]
|
|
1838
1845
|
];
|
|
1839
1846
|
var GetBlacklistReportsRequest$ = [3, n0, _GBRR,
|
|
1840
1847
|
0,
|
|
@@ -2396,6 +2403,11 @@ var PlacementStatistics$ = [3, n0, _PSl,
|
|
|
2396
2403
|
[_IP, _SP, _MP, _SPp, _DP],
|
|
2397
2404
|
[1, 1, 1, 1, 1]
|
|
2398
2405
|
];
|
|
2406
|
+
var PricingAttributes$ = [3, n0, _PA,
|
|
2407
|
+
0,
|
|
2408
|
+
[_CP, _NP],
|
|
2409
|
+
[0, 0]
|
|
2410
|
+
];
|
|
2399
2411
|
var PutAccountDedicatedIpWarmupAttributesRequest$ = [3, n0, _PADIWAR,
|
|
2400
2412
|
0,
|
|
2401
2413
|
[_AWE],
|
|
@@ -2416,6 +2428,16 @@ var PutAccountDetailsResponse$ = [3, n0, _PADRu,
|
|
|
2416
2428
|
[],
|
|
2417
2429
|
[]
|
|
2418
2430
|
];
|
|
2431
|
+
var PutAccountPricingAttributesRequest$ = [3, n0, _PAPAR,
|
|
2432
|
+
0,
|
|
2433
|
+
[_Pl],
|
|
2434
|
+
[0], 1
|
|
2435
|
+
];
|
|
2436
|
+
var PutAccountPricingAttributesResponse$ = [3, n0, _PAPARu,
|
|
2437
|
+
0,
|
|
2438
|
+
[],
|
|
2439
|
+
[]
|
|
2440
|
+
];
|
|
2419
2441
|
var PutAccountSendingAttributesRequest$ = [3, n0, _PASAR,
|
|
2420
2442
|
0,
|
|
2421
2443
|
[_SEe],
|
|
@@ -3325,6 +3347,9 @@ var PutAccountDedicatedIpWarmupAttributes$ = [9, n0, _PADIWA,
|
|
|
3325
3347
|
var PutAccountDetails$ = [9, n0, _PAD,
|
|
3326
3348
|
{ [_h]: ["POST", "/v2/email/account/details", 200] }, () => PutAccountDetailsRequest$, () => PutAccountDetailsResponse$
|
|
3327
3349
|
];
|
|
3350
|
+
var PutAccountPricingAttributes$ = [9, n0, _PAPA,
|
|
3351
|
+
{ [_h]: ["PUT", "/v2/email/account/pricing-attributes", 200] }, () => PutAccountPricingAttributesRequest$, () => PutAccountPricingAttributesResponse$
|
|
3352
|
+
];
|
|
3328
3353
|
var PutAccountSendingAttributes$ = [9, n0, _PASA,
|
|
3329
3354
|
{ [_h]: ["PUT", "/v2/email/account/sending", 200] }, () => PutAccountSendingAttributesRequest$, () => PutAccountSendingAttributesResponse$
|
|
3330
3355
|
];
|
|
@@ -3820,6 +3845,9 @@ class PutAccountDedicatedIpWarmupAttributesCommand extends command(_ep0, _mw0, "
|
|
|
3820
3845
|
class PutAccountDetailsCommand extends command(_ep0, _mw0, "PutAccountDetails", PutAccountDetails$) {
|
|
3821
3846
|
}
|
|
3822
3847
|
|
|
3848
|
+
class PutAccountPricingAttributesCommand extends command(_ep0, _mw0, "PutAccountPricingAttributes", PutAccountPricingAttributes$) {
|
|
3849
|
+
}
|
|
3850
|
+
|
|
3823
3851
|
class PutAccountSendingAttributesCommand extends command(_ep0, _mw0, "PutAccountSendingAttributes", PutAccountSendingAttributes$) {
|
|
3824
3852
|
}
|
|
3825
3853
|
|
|
@@ -4040,6 +4068,7 @@ const commands = {
|
|
|
4040
4068
|
ListTenantsCommand,
|
|
4041
4069
|
PutAccountDedicatedIpWarmupAttributesCommand,
|
|
4042
4070
|
PutAccountDetailsCommand,
|
|
4071
|
+
PutAccountPricingAttributesCommand,
|
|
4043
4072
|
PutAccountSendingAttributesCommand,
|
|
4044
4073
|
PutAccountSuppressionAttributesCommand,
|
|
4045
4074
|
PutAccountVdmAttributesCommand,
|
|
@@ -4340,6 +4369,12 @@ const JobStatus = {
|
|
|
4340
4369
|
FAILED: "FAILED",
|
|
4341
4370
|
PROCESSING: "PROCESSING",
|
|
4342
4371
|
};
|
|
4372
|
+
const PricingPlan = {
|
|
4373
|
+
ENTERPRISE: "ENTERPRISE",
|
|
4374
|
+
ESSENTIALS: "ESSENTIALS",
|
|
4375
|
+
NONE: "NONE",
|
|
4376
|
+
PRO: "PRO",
|
|
4377
|
+
};
|
|
4343
4378
|
const MailFromDomainStatus = {
|
|
4344
4379
|
FAILED: "FAILED",
|
|
4345
4380
|
PENDING: "PENDING",
|
|
@@ -4835,6 +4870,8 @@ exports.NotFoundException$ = NotFoundException$;
|
|
|
4835
4870
|
exports.OverallVolume$ = OverallVolume$;
|
|
4836
4871
|
exports.PinpointDestination$ = PinpointDestination$;
|
|
4837
4872
|
exports.PlacementStatistics$ = PlacementStatistics$;
|
|
4873
|
+
exports.PricingAttributes$ = PricingAttributes$;
|
|
4874
|
+
exports.PricingPlan = PricingPlan;
|
|
4838
4875
|
exports.PutAccountDedicatedIpWarmupAttributes$ = PutAccountDedicatedIpWarmupAttributes$;
|
|
4839
4876
|
exports.PutAccountDedicatedIpWarmupAttributesCommand = PutAccountDedicatedIpWarmupAttributesCommand;
|
|
4840
4877
|
exports.PutAccountDedicatedIpWarmupAttributesRequest$ = PutAccountDedicatedIpWarmupAttributesRequest$;
|
|
@@ -4843,6 +4880,10 @@ exports.PutAccountDetails$ = PutAccountDetails$;
|
|
|
4843
4880
|
exports.PutAccountDetailsCommand = PutAccountDetailsCommand;
|
|
4844
4881
|
exports.PutAccountDetailsRequest$ = PutAccountDetailsRequest$;
|
|
4845
4882
|
exports.PutAccountDetailsResponse$ = PutAccountDetailsResponse$;
|
|
4883
|
+
exports.PutAccountPricingAttributes$ = PutAccountPricingAttributes$;
|
|
4884
|
+
exports.PutAccountPricingAttributesCommand = PutAccountPricingAttributesCommand;
|
|
4885
|
+
exports.PutAccountPricingAttributesRequest$ = PutAccountPricingAttributesRequest$;
|
|
4886
|
+
exports.PutAccountPricingAttributesResponse$ = PutAccountPricingAttributesResponse$;
|
|
4846
4887
|
exports.PutAccountSendingAttributes$ = PutAccountSendingAttributes$;
|
|
4847
4888
|
exports.PutAccountSendingAttributesCommand = PutAccountSendingAttributesCommand;
|
|
4848
4889
|
exports.PutAccountSendingAttributesRequest$ = PutAccountSendingAttributesRequest$;
|
package/dist-es/SESv2.js
CHANGED
|
@@ -75,6 +75,7 @@ import { ListTenantResourcesCommand, } from "./commands/ListTenantResourcesComma
|
|
|
75
75
|
import { ListTenantsCommand, } from "./commands/ListTenantsCommand";
|
|
76
76
|
import { PutAccountDedicatedIpWarmupAttributesCommand, } from "./commands/PutAccountDedicatedIpWarmupAttributesCommand";
|
|
77
77
|
import { PutAccountDetailsCommand, } from "./commands/PutAccountDetailsCommand";
|
|
78
|
+
import { PutAccountPricingAttributesCommand, } from "./commands/PutAccountPricingAttributesCommand";
|
|
78
79
|
import { PutAccountSendingAttributesCommand, } from "./commands/PutAccountSendingAttributesCommand";
|
|
79
80
|
import { PutAccountSuppressionAttributesCommand, } from "./commands/PutAccountSuppressionAttributesCommand";
|
|
80
81
|
import { PutAccountVdmAttributesCommand, } from "./commands/PutAccountVdmAttributesCommand";
|
|
@@ -207,6 +208,7 @@ const commands = {
|
|
|
207
208
|
ListTenantsCommand,
|
|
208
209
|
PutAccountDedicatedIpWarmupAttributesCommand,
|
|
209
210
|
PutAccountDetailsCommand,
|
|
211
|
+
PutAccountPricingAttributesCommand,
|
|
210
212
|
PutAccountSendingAttributesCommand,
|
|
211
213
|
PutAccountSuppressionAttributesCommand,
|
|
212
214
|
PutAccountVdmAttributesCommand,
|
|
@@ -74,6 +74,7 @@ export * from "./ListTenantResourcesCommand";
|
|
|
74
74
|
export * from "./ListTenantsCommand";
|
|
75
75
|
export * from "./PutAccountDedicatedIpWarmupAttributesCommand";
|
|
76
76
|
export * from "./PutAccountDetailsCommand";
|
|
77
|
+
export * from "./PutAccountPricingAttributesCommand";
|
|
77
78
|
export * from "./PutAccountSendingAttributesCommand";
|
|
78
79
|
export * from "./PutAccountSuppressionAttributesCommand";
|
|
79
80
|
export * from "./PutAccountVdmAttributesCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -237,6 +237,12 @@ export const JobStatus = {
|
|
|
237
237
|
FAILED: "FAILED",
|
|
238
238
|
PROCESSING: "PROCESSING",
|
|
239
239
|
};
|
|
240
|
+
export const PricingPlan = {
|
|
241
|
+
ENTERPRISE: "ENTERPRISE",
|
|
242
|
+
ESSENTIALS: "ESSENTIALS",
|
|
243
|
+
NONE: "NONE",
|
|
244
|
+
PRO: "PRO",
|
|
245
|
+
};
|
|
240
246
|
export const MailFromDomainStatus = {
|
|
241
247
|
FAILED: "FAILED",
|
|
242
248
|
PENDING: "PENDING",
|
|
@@ -101,6 +101,7 @@ const _CMRE = "CreateMultiRegionEndpoint";
|
|
|
101
101
|
const _CMRER = "CreateMultiRegionEndpointRequest";
|
|
102
102
|
const _CMRERr = "CreateMultiRegionEndpointResponse";
|
|
103
103
|
const _CMS = "CustomerManagedStatus";
|
|
104
|
+
const _CP = "CurrentPlan";
|
|
104
105
|
const _CRD = "CustomRedirectDomain";
|
|
105
106
|
const _CS = "ConfigurationSets";
|
|
106
107
|
const _CSKL = "CurrentSigningKeyLength";
|
|
@@ -509,6 +510,7 @@ const _Me = "Message";
|
|
|
509
510
|
const _Met = "Metrics";
|
|
510
511
|
const _N = "Namespace";
|
|
511
512
|
const _NFE = "NotFoundException";
|
|
513
|
+
const _NP = "NextPlan";
|
|
512
514
|
const _NSKL = "NextSigningKeyLength";
|
|
513
515
|
const _NT = "NextToken";
|
|
514
516
|
const _Na = "Name";
|
|
@@ -517,6 +519,7 @@ const _OP = "OverallPlacement";
|
|
|
517
519
|
const _OSD = "OptimizedSharedDelivery";
|
|
518
520
|
const _OV = "OverallVolume";
|
|
519
521
|
const _P = "Policy";
|
|
522
|
+
const _PA = "PricingAttributes";
|
|
520
523
|
const _PAD = "PutAccountDetails";
|
|
521
524
|
const _PADIWA = "PutAccountDedicatedIpWarmupAttributes";
|
|
522
525
|
const _PADIWAR = "PutAccountDedicatedIpWarmupAttributesRequest";
|
|
@@ -524,6 +527,9 @@ const _PADIWARu = "PutAccountDedicatedIpWarmupAttributesResponse";
|
|
|
524
527
|
const _PADR = "PutAccountDetailsRequest";
|
|
525
528
|
const _PADRu = "PutAccountDetailsResponse";
|
|
526
529
|
const _PAE = "ProductionAccessEnabled";
|
|
530
|
+
const _PAPA = "PutAccountPricingAttributes";
|
|
531
|
+
const _PAPAR = "PutAccountPricingAttributesRequest";
|
|
532
|
+
const _PAPARu = "PutAccountPricingAttributesResponse";
|
|
527
533
|
const _PASA = "PutAccountSendingAttributes";
|
|
528
534
|
const _PASAR = "PutAccountSendingAttributesRequest";
|
|
529
535
|
const _PASARu = "PutAccountSendingAttributesResponse";
|
|
@@ -599,6 +605,7 @@ const _PTSA = "PutTenantSuppressionAttributes";
|
|
|
599
605
|
const _PTSAR = "PutTenantSuppressionAttributesRequest";
|
|
600
606
|
const _PTSARu = "PutTenantSuppressionAttributesResponse";
|
|
601
607
|
const _PV = "ProjectedVolume";
|
|
608
|
+
const _Pl = "Plan";
|
|
602
609
|
const _Po = "Policies";
|
|
603
610
|
const _Q = "Queries";
|
|
604
611
|
const _R = "Results";
|
|
@@ -1444,8 +1451,8 @@ export var GetAccountRequest$ = [3, n0, _GAR,
|
|
|
1444
1451
|
];
|
|
1445
1452
|
export var GetAccountResponse$ = [3, n0, _GARe,
|
|
1446
1453
|
0,
|
|
1447
|
-
[_DIAWE, _ESn, _PAE, _SQ, _SEe, _SA, _Det, _VA],
|
|
1448
|
-
[2, 0, 2, () => SendQuota$, 2, () => SuppressionAttributes$, [() => AccountDetails$, 0], () => VdmAttributes$]
|
|
1454
|
+
[_DIAWE, _ESn, _PAE, _SQ, _SEe, _SA, _Det, _VA, _PA],
|
|
1455
|
+
[2, 0, 2, () => SendQuota$, 2, () => SuppressionAttributes$, [() => AccountDetails$, 0], () => VdmAttributes$, () => PricingAttributes$]
|
|
1449
1456
|
];
|
|
1450
1457
|
export var GetBlacklistReportsRequest$ = [3, n0, _GBRR,
|
|
1451
1458
|
0,
|
|
@@ -2007,6 +2014,11 @@ export var PlacementStatistics$ = [3, n0, _PSl,
|
|
|
2007
2014
|
[_IP, _SP, _MP, _SPp, _DP],
|
|
2008
2015
|
[1, 1, 1, 1, 1]
|
|
2009
2016
|
];
|
|
2017
|
+
export var PricingAttributes$ = [3, n0, _PA,
|
|
2018
|
+
0,
|
|
2019
|
+
[_CP, _NP],
|
|
2020
|
+
[0, 0]
|
|
2021
|
+
];
|
|
2010
2022
|
export var PutAccountDedicatedIpWarmupAttributesRequest$ = [3, n0, _PADIWAR,
|
|
2011
2023
|
0,
|
|
2012
2024
|
[_AWE],
|
|
@@ -2027,6 +2039,16 @@ export var PutAccountDetailsResponse$ = [3, n0, _PADRu,
|
|
|
2027
2039
|
[],
|
|
2028
2040
|
[]
|
|
2029
2041
|
];
|
|
2042
|
+
export var PutAccountPricingAttributesRequest$ = [3, n0, _PAPAR,
|
|
2043
|
+
0,
|
|
2044
|
+
[_Pl],
|
|
2045
|
+
[0], 1
|
|
2046
|
+
];
|
|
2047
|
+
export var PutAccountPricingAttributesResponse$ = [3, n0, _PAPARu,
|
|
2048
|
+
0,
|
|
2049
|
+
[],
|
|
2050
|
+
[]
|
|
2051
|
+
];
|
|
2030
2052
|
export var PutAccountSendingAttributesRequest$ = [3, n0, _PASAR,
|
|
2031
2053
|
0,
|
|
2032
2054
|
[_SEe],
|
|
@@ -2962,6 +2984,9 @@ export var PutAccountDedicatedIpWarmupAttributes$ = [9, n0, _PADIWA,
|
|
|
2962
2984
|
export var PutAccountDetails$ = [9, n0, _PAD,
|
|
2963
2985
|
{ [_h]: ["POST", "/v2/email/account/details", 200] }, () => PutAccountDetailsRequest$, () => PutAccountDetailsResponse$
|
|
2964
2986
|
];
|
|
2987
|
+
export var PutAccountPricingAttributes$ = [9, n0, _PAPA,
|
|
2988
|
+
{ [_h]: ["PUT", "/v2/email/account/pricing-attributes", 200] }, () => PutAccountPricingAttributesRequest$, () => PutAccountPricingAttributesResponse$
|
|
2989
|
+
];
|
|
2965
2990
|
export var PutAccountSendingAttributes$ = [9, n0, _PASA,
|
|
2966
2991
|
{ [_h]: ["PUT", "/v2/email/account/sending", 200] }, () => PutAccountSendingAttributesRequest$, () => PutAccountSendingAttributesResponse$
|
|
2967
2992
|
];
|
package/dist-types/SESv2.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ import { type ListTenantResourcesCommandInput, type ListTenantResourcesCommandOu
|
|
|
75
75
|
import { type ListTenantsCommandInput, type ListTenantsCommandOutput } from "./commands/ListTenantsCommand";
|
|
76
76
|
import { type PutAccountDedicatedIpWarmupAttributesCommandInput, type PutAccountDedicatedIpWarmupAttributesCommandOutput } from "./commands/PutAccountDedicatedIpWarmupAttributesCommand";
|
|
77
77
|
import { type PutAccountDetailsCommandInput, type PutAccountDetailsCommandOutput } from "./commands/PutAccountDetailsCommand";
|
|
78
|
+
import { type PutAccountPricingAttributesCommandInput, type PutAccountPricingAttributesCommandOutput } from "./commands/PutAccountPricingAttributesCommand";
|
|
78
79
|
import { type PutAccountSendingAttributesCommandInput, type PutAccountSendingAttributesCommandOutput } from "./commands/PutAccountSendingAttributesCommand";
|
|
79
80
|
import { type PutAccountSuppressionAttributesCommandInput, type PutAccountSuppressionAttributesCommandOutput } from "./commands/PutAccountSuppressionAttributesCommand";
|
|
80
81
|
import { type PutAccountVdmAttributesCommandInput, type PutAccountVdmAttributesCommandOutput } from "./commands/PutAccountVdmAttributesCommand";
|
|
@@ -586,6 +587,12 @@ export interface SESv2 {
|
|
|
586
587
|
putAccountDetails(args: PutAccountDetailsCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountDetailsCommandOutput>;
|
|
587
588
|
putAccountDetails(args: PutAccountDetailsCommandInput, cb: (err: any, data?: PutAccountDetailsCommandOutput) => void): void;
|
|
588
589
|
putAccountDetails(args: PutAccountDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountDetailsCommandOutput) => void): void;
|
|
590
|
+
/**
|
|
591
|
+
* @see {@link PutAccountPricingAttributesCommand}
|
|
592
|
+
*/
|
|
593
|
+
putAccountPricingAttributes(args: PutAccountPricingAttributesCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountPricingAttributesCommandOutput>;
|
|
594
|
+
putAccountPricingAttributes(args: PutAccountPricingAttributesCommandInput, cb: (err: any, data?: PutAccountPricingAttributesCommandOutput) => void): void;
|
|
595
|
+
putAccountPricingAttributes(args: PutAccountPricingAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountPricingAttributesCommandOutput) => void): void;
|
|
589
596
|
/**
|
|
590
597
|
* @see {@link PutAccountSendingAttributesCommand}
|
|
591
598
|
*/
|
|
@@ -82,6 +82,7 @@ import type { ListTenantResourcesCommandInput, ListTenantResourcesCommandOutput
|
|
|
82
82
|
import type { ListTenantsCommandInput, ListTenantsCommandOutput } from "./commands/ListTenantsCommand";
|
|
83
83
|
import type { PutAccountDedicatedIpWarmupAttributesCommandInput, PutAccountDedicatedIpWarmupAttributesCommandOutput } from "./commands/PutAccountDedicatedIpWarmupAttributesCommand";
|
|
84
84
|
import type { PutAccountDetailsCommandInput, PutAccountDetailsCommandOutput } from "./commands/PutAccountDetailsCommand";
|
|
85
|
+
import type { PutAccountPricingAttributesCommandInput, PutAccountPricingAttributesCommandOutput } from "./commands/PutAccountPricingAttributesCommand";
|
|
85
86
|
import type { PutAccountSendingAttributesCommandInput, PutAccountSendingAttributesCommandOutput } from "./commands/PutAccountSendingAttributesCommand";
|
|
86
87
|
import type { PutAccountSuppressionAttributesCommandInput, PutAccountSuppressionAttributesCommandOutput } from "./commands/PutAccountSuppressionAttributesCommand";
|
|
87
88
|
import type { PutAccountVdmAttributesCommandInput, PutAccountVdmAttributesCommandOutput } from "./commands/PutAccountVdmAttributesCommand";
|
|
@@ -123,11 +124,11 @@ export { __Client };
|
|
|
123
124
|
/**
|
|
124
125
|
* @public
|
|
125
126
|
*/
|
|
126
|
-
export type ServiceInputTypes = BatchGetMetricDataCommandInput | CancelExportJobCommandInput | CreateConfigurationSetCommandInput | CreateConfigurationSetEventDestinationCommandInput | CreateContactCommandInput | CreateContactListCommandInput | CreateCustomVerificationEmailTemplateCommandInput | CreateDedicatedIpPoolCommandInput | CreateDeliverabilityTestReportCommandInput | CreateEmailIdentityCommandInput | CreateEmailIdentityPolicyCommandInput | CreateEmailTemplateCommandInput | CreateExportJobCommandInput | CreateImportJobCommandInput | CreateMultiRegionEndpointCommandInput | CreateTenantCommandInput | CreateTenantResourceAssociationCommandInput | DeleteConfigurationSetCommandInput | DeleteConfigurationSetEventDestinationCommandInput | DeleteContactCommandInput | DeleteContactListCommandInput | DeleteCustomVerificationEmailTemplateCommandInput | DeleteDedicatedIpPoolCommandInput | DeleteEmailIdentityCommandInput | DeleteEmailIdentityPolicyCommandInput | DeleteEmailTemplateCommandInput | DeleteMultiRegionEndpointCommandInput | DeleteSuppressedDestinationCommandInput | DeleteTenantCommandInput | DeleteTenantResourceAssociationCommandInput | GetAccountCommandInput | GetBlacklistReportsCommandInput | GetConfigurationSetCommandInput | GetConfigurationSetEventDestinationsCommandInput | GetContactCommandInput | GetContactListCommandInput | GetCustomVerificationEmailTemplateCommandInput | GetDedicatedIpCommandInput | GetDedicatedIpPoolCommandInput | GetDedicatedIpsCommandInput | GetDeliverabilityDashboardOptionsCommandInput | GetDeliverabilityTestReportCommandInput | GetDomainDeliverabilityCampaignCommandInput | GetDomainStatisticsReportCommandInput | GetEmailAddressInsightsCommandInput | GetEmailIdentityCommandInput | GetEmailIdentityPoliciesCommandInput | GetEmailTemplateCommandInput | GetExportJobCommandInput | GetImportJobCommandInput | GetMessageInsightsCommandInput | GetMultiRegionEndpointCommandInput | GetReputationEntityCommandInput | GetSuppressedDestinationCommandInput | GetTenantCommandInput | ListConfigurationSetsCommandInput | ListContactListsCommandInput | ListContactsCommandInput | ListCustomVerificationEmailTemplatesCommandInput | ListDedicatedIpPoolsCommandInput | ListDeliverabilityTestReportsCommandInput | ListDomainDeliverabilityCampaignsCommandInput | ListEmailIdentitiesCommandInput | ListEmailTemplatesCommandInput | ListExportJobsCommandInput | ListImportJobsCommandInput | ListMultiRegionEndpointsCommandInput | ListRecommendationsCommandInput | ListReputationEntitiesCommandInput | ListResourceTenantsCommandInput | ListSuppressedDestinationsCommandInput | ListTagsForResourceCommandInput | ListTenantResourcesCommandInput | ListTenantsCommandInput | PutAccountDedicatedIpWarmupAttributesCommandInput | PutAccountDetailsCommandInput | PutAccountSendingAttributesCommandInput | PutAccountSuppressionAttributesCommandInput | PutAccountVdmAttributesCommandInput | PutConfigurationSetArchivingOptionsCommandInput | PutConfigurationSetDeliveryOptionsCommandInput | PutConfigurationSetReputationOptionsCommandInput | PutConfigurationSetSendingOptionsCommandInput | PutConfigurationSetSuppressionOptionsCommandInput | PutConfigurationSetTrackingOptionsCommandInput | PutConfigurationSetVdmOptionsCommandInput | PutDedicatedIpInPoolCommandInput | PutDedicatedIpPoolScalingAttributesCommandInput | PutDedicatedIpWarmupAttributesCommandInput | PutDeliverabilityDashboardOptionCommandInput | PutEmailIdentityConfigurationSetAttributesCommandInput | PutEmailIdentityDkimAttributesCommandInput | PutEmailIdentityDkimSigningAttributesCommandInput | PutEmailIdentityFeedbackAttributesCommandInput | PutEmailIdentityMailFromAttributesCommandInput | PutSuppressedDestinationCommandInput | PutTenantSuppressionAttributesCommandInput | SendBulkEmailCommandInput | SendCustomVerificationEmailCommandInput | SendEmailCommandInput | TagResourceCommandInput | TestRenderEmailTemplateCommandInput | UntagResourceCommandInput | UpdateConfigurationSetEventDestinationCommandInput | UpdateContactCommandInput | UpdateContactListCommandInput | UpdateCustomVerificationEmailTemplateCommandInput | UpdateEmailIdentityPolicyCommandInput | UpdateEmailTemplateCommandInput | UpdateReputationEntityCustomerManagedStatusCommandInput | UpdateReputationEntityPolicyCommandInput;
|
|
127
|
+
export type ServiceInputTypes = BatchGetMetricDataCommandInput | CancelExportJobCommandInput | CreateConfigurationSetCommandInput | CreateConfigurationSetEventDestinationCommandInput | CreateContactCommandInput | CreateContactListCommandInput | CreateCustomVerificationEmailTemplateCommandInput | CreateDedicatedIpPoolCommandInput | CreateDeliverabilityTestReportCommandInput | CreateEmailIdentityCommandInput | CreateEmailIdentityPolicyCommandInput | CreateEmailTemplateCommandInput | CreateExportJobCommandInput | CreateImportJobCommandInput | CreateMultiRegionEndpointCommandInput | CreateTenantCommandInput | CreateTenantResourceAssociationCommandInput | DeleteConfigurationSetCommandInput | DeleteConfigurationSetEventDestinationCommandInput | DeleteContactCommandInput | DeleteContactListCommandInput | DeleteCustomVerificationEmailTemplateCommandInput | DeleteDedicatedIpPoolCommandInput | DeleteEmailIdentityCommandInput | DeleteEmailIdentityPolicyCommandInput | DeleteEmailTemplateCommandInput | DeleteMultiRegionEndpointCommandInput | DeleteSuppressedDestinationCommandInput | DeleteTenantCommandInput | DeleteTenantResourceAssociationCommandInput | GetAccountCommandInput | GetBlacklistReportsCommandInput | GetConfigurationSetCommandInput | GetConfigurationSetEventDestinationsCommandInput | GetContactCommandInput | GetContactListCommandInput | GetCustomVerificationEmailTemplateCommandInput | GetDedicatedIpCommandInput | GetDedicatedIpPoolCommandInput | GetDedicatedIpsCommandInput | GetDeliverabilityDashboardOptionsCommandInput | GetDeliverabilityTestReportCommandInput | GetDomainDeliverabilityCampaignCommandInput | GetDomainStatisticsReportCommandInput | GetEmailAddressInsightsCommandInput | GetEmailIdentityCommandInput | GetEmailIdentityPoliciesCommandInput | GetEmailTemplateCommandInput | GetExportJobCommandInput | GetImportJobCommandInput | GetMessageInsightsCommandInput | GetMultiRegionEndpointCommandInput | GetReputationEntityCommandInput | GetSuppressedDestinationCommandInput | GetTenantCommandInput | ListConfigurationSetsCommandInput | ListContactListsCommandInput | ListContactsCommandInput | ListCustomVerificationEmailTemplatesCommandInput | ListDedicatedIpPoolsCommandInput | ListDeliverabilityTestReportsCommandInput | ListDomainDeliverabilityCampaignsCommandInput | ListEmailIdentitiesCommandInput | ListEmailTemplatesCommandInput | ListExportJobsCommandInput | ListImportJobsCommandInput | ListMultiRegionEndpointsCommandInput | ListRecommendationsCommandInput | ListReputationEntitiesCommandInput | ListResourceTenantsCommandInput | ListSuppressedDestinationsCommandInput | ListTagsForResourceCommandInput | ListTenantResourcesCommandInput | ListTenantsCommandInput | PutAccountDedicatedIpWarmupAttributesCommandInput | PutAccountDetailsCommandInput | PutAccountPricingAttributesCommandInput | PutAccountSendingAttributesCommandInput | PutAccountSuppressionAttributesCommandInput | PutAccountVdmAttributesCommandInput | PutConfigurationSetArchivingOptionsCommandInput | PutConfigurationSetDeliveryOptionsCommandInput | PutConfigurationSetReputationOptionsCommandInput | PutConfigurationSetSendingOptionsCommandInput | PutConfigurationSetSuppressionOptionsCommandInput | PutConfigurationSetTrackingOptionsCommandInput | PutConfigurationSetVdmOptionsCommandInput | PutDedicatedIpInPoolCommandInput | PutDedicatedIpPoolScalingAttributesCommandInput | PutDedicatedIpWarmupAttributesCommandInput | PutDeliverabilityDashboardOptionCommandInput | PutEmailIdentityConfigurationSetAttributesCommandInput | PutEmailIdentityDkimAttributesCommandInput | PutEmailIdentityDkimSigningAttributesCommandInput | PutEmailIdentityFeedbackAttributesCommandInput | PutEmailIdentityMailFromAttributesCommandInput | PutSuppressedDestinationCommandInput | PutTenantSuppressionAttributesCommandInput | SendBulkEmailCommandInput | SendCustomVerificationEmailCommandInput | SendEmailCommandInput | TagResourceCommandInput | TestRenderEmailTemplateCommandInput | UntagResourceCommandInput | UpdateConfigurationSetEventDestinationCommandInput | UpdateContactCommandInput | UpdateContactListCommandInput | UpdateCustomVerificationEmailTemplateCommandInput | UpdateEmailIdentityPolicyCommandInput | UpdateEmailTemplateCommandInput | UpdateReputationEntityCustomerManagedStatusCommandInput | UpdateReputationEntityPolicyCommandInput;
|
|
127
128
|
/**
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
|
-
export type ServiceOutputTypes = BatchGetMetricDataCommandOutput | CancelExportJobCommandOutput | CreateConfigurationSetCommandOutput | CreateConfigurationSetEventDestinationCommandOutput | CreateContactCommandOutput | CreateContactListCommandOutput | CreateCustomVerificationEmailTemplateCommandOutput | CreateDedicatedIpPoolCommandOutput | CreateDeliverabilityTestReportCommandOutput | CreateEmailIdentityCommandOutput | CreateEmailIdentityPolicyCommandOutput | CreateEmailTemplateCommandOutput | CreateExportJobCommandOutput | CreateImportJobCommandOutput | CreateMultiRegionEndpointCommandOutput | CreateTenantCommandOutput | CreateTenantResourceAssociationCommandOutput | DeleteConfigurationSetCommandOutput | DeleteConfigurationSetEventDestinationCommandOutput | DeleteContactCommandOutput | DeleteContactListCommandOutput | DeleteCustomVerificationEmailTemplateCommandOutput | DeleteDedicatedIpPoolCommandOutput | DeleteEmailIdentityCommandOutput | DeleteEmailIdentityPolicyCommandOutput | DeleteEmailTemplateCommandOutput | DeleteMultiRegionEndpointCommandOutput | DeleteSuppressedDestinationCommandOutput | DeleteTenantCommandOutput | DeleteTenantResourceAssociationCommandOutput | GetAccountCommandOutput | GetBlacklistReportsCommandOutput | GetConfigurationSetCommandOutput | GetConfigurationSetEventDestinationsCommandOutput | GetContactCommandOutput | GetContactListCommandOutput | GetCustomVerificationEmailTemplateCommandOutput | GetDedicatedIpCommandOutput | GetDedicatedIpPoolCommandOutput | GetDedicatedIpsCommandOutput | GetDeliverabilityDashboardOptionsCommandOutput | GetDeliverabilityTestReportCommandOutput | GetDomainDeliverabilityCampaignCommandOutput | GetDomainStatisticsReportCommandOutput | GetEmailAddressInsightsCommandOutput | GetEmailIdentityCommandOutput | GetEmailIdentityPoliciesCommandOutput | GetEmailTemplateCommandOutput | GetExportJobCommandOutput | GetImportJobCommandOutput | GetMessageInsightsCommandOutput | GetMultiRegionEndpointCommandOutput | GetReputationEntityCommandOutput | GetSuppressedDestinationCommandOutput | GetTenantCommandOutput | ListConfigurationSetsCommandOutput | ListContactListsCommandOutput | ListContactsCommandOutput | ListCustomVerificationEmailTemplatesCommandOutput | ListDedicatedIpPoolsCommandOutput | ListDeliverabilityTestReportsCommandOutput | ListDomainDeliverabilityCampaignsCommandOutput | ListEmailIdentitiesCommandOutput | ListEmailTemplatesCommandOutput | ListExportJobsCommandOutput | ListImportJobsCommandOutput | ListMultiRegionEndpointsCommandOutput | ListRecommendationsCommandOutput | ListReputationEntitiesCommandOutput | ListResourceTenantsCommandOutput | ListSuppressedDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListTenantResourcesCommandOutput | ListTenantsCommandOutput | PutAccountDedicatedIpWarmupAttributesCommandOutput | PutAccountDetailsCommandOutput | PutAccountSendingAttributesCommandOutput | PutAccountSuppressionAttributesCommandOutput | PutAccountVdmAttributesCommandOutput | PutConfigurationSetArchivingOptionsCommandOutput | PutConfigurationSetDeliveryOptionsCommandOutput | PutConfigurationSetReputationOptionsCommandOutput | PutConfigurationSetSendingOptionsCommandOutput | PutConfigurationSetSuppressionOptionsCommandOutput | PutConfigurationSetTrackingOptionsCommandOutput | PutConfigurationSetVdmOptionsCommandOutput | PutDedicatedIpInPoolCommandOutput | PutDedicatedIpPoolScalingAttributesCommandOutput | PutDedicatedIpWarmupAttributesCommandOutput | PutDeliverabilityDashboardOptionCommandOutput | PutEmailIdentityConfigurationSetAttributesCommandOutput | PutEmailIdentityDkimAttributesCommandOutput | PutEmailIdentityDkimSigningAttributesCommandOutput | PutEmailIdentityFeedbackAttributesCommandOutput | PutEmailIdentityMailFromAttributesCommandOutput | PutSuppressedDestinationCommandOutput | PutTenantSuppressionAttributesCommandOutput | SendBulkEmailCommandOutput | SendCustomVerificationEmailCommandOutput | SendEmailCommandOutput | TagResourceCommandOutput | TestRenderEmailTemplateCommandOutput | UntagResourceCommandOutput | UpdateConfigurationSetEventDestinationCommandOutput | UpdateContactCommandOutput | UpdateContactListCommandOutput | UpdateCustomVerificationEmailTemplateCommandOutput | UpdateEmailIdentityPolicyCommandOutput | UpdateEmailTemplateCommandOutput | UpdateReputationEntityCustomerManagedStatusCommandOutput | UpdateReputationEntityPolicyCommandOutput;
|
|
131
|
+
export type ServiceOutputTypes = BatchGetMetricDataCommandOutput | CancelExportJobCommandOutput | CreateConfigurationSetCommandOutput | CreateConfigurationSetEventDestinationCommandOutput | CreateContactCommandOutput | CreateContactListCommandOutput | CreateCustomVerificationEmailTemplateCommandOutput | CreateDedicatedIpPoolCommandOutput | CreateDeliverabilityTestReportCommandOutput | CreateEmailIdentityCommandOutput | CreateEmailIdentityPolicyCommandOutput | CreateEmailTemplateCommandOutput | CreateExportJobCommandOutput | CreateImportJobCommandOutput | CreateMultiRegionEndpointCommandOutput | CreateTenantCommandOutput | CreateTenantResourceAssociationCommandOutput | DeleteConfigurationSetCommandOutput | DeleteConfigurationSetEventDestinationCommandOutput | DeleteContactCommandOutput | DeleteContactListCommandOutput | DeleteCustomVerificationEmailTemplateCommandOutput | DeleteDedicatedIpPoolCommandOutput | DeleteEmailIdentityCommandOutput | DeleteEmailIdentityPolicyCommandOutput | DeleteEmailTemplateCommandOutput | DeleteMultiRegionEndpointCommandOutput | DeleteSuppressedDestinationCommandOutput | DeleteTenantCommandOutput | DeleteTenantResourceAssociationCommandOutput | GetAccountCommandOutput | GetBlacklistReportsCommandOutput | GetConfigurationSetCommandOutput | GetConfigurationSetEventDestinationsCommandOutput | GetContactCommandOutput | GetContactListCommandOutput | GetCustomVerificationEmailTemplateCommandOutput | GetDedicatedIpCommandOutput | GetDedicatedIpPoolCommandOutput | GetDedicatedIpsCommandOutput | GetDeliverabilityDashboardOptionsCommandOutput | GetDeliverabilityTestReportCommandOutput | GetDomainDeliverabilityCampaignCommandOutput | GetDomainStatisticsReportCommandOutput | GetEmailAddressInsightsCommandOutput | GetEmailIdentityCommandOutput | GetEmailIdentityPoliciesCommandOutput | GetEmailTemplateCommandOutput | GetExportJobCommandOutput | GetImportJobCommandOutput | GetMessageInsightsCommandOutput | GetMultiRegionEndpointCommandOutput | GetReputationEntityCommandOutput | GetSuppressedDestinationCommandOutput | GetTenantCommandOutput | ListConfigurationSetsCommandOutput | ListContactListsCommandOutput | ListContactsCommandOutput | ListCustomVerificationEmailTemplatesCommandOutput | ListDedicatedIpPoolsCommandOutput | ListDeliverabilityTestReportsCommandOutput | ListDomainDeliverabilityCampaignsCommandOutput | ListEmailIdentitiesCommandOutput | ListEmailTemplatesCommandOutput | ListExportJobsCommandOutput | ListImportJobsCommandOutput | ListMultiRegionEndpointsCommandOutput | ListRecommendationsCommandOutput | ListReputationEntitiesCommandOutput | ListResourceTenantsCommandOutput | ListSuppressedDestinationsCommandOutput | ListTagsForResourceCommandOutput | ListTenantResourcesCommandOutput | ListTenantsCommandOutput | PutAccountDedicatedIpWarmupAttributesCommandOutput | PutAccountDetailsCommandOutput | PutAccountPricingAttributesCommandOutput | PutAccountSendingAttributesCommandOutput | PutAccountSuppressionAttributesCommandOutput | PutAccountVdmAttributesCommandOutput | PutConfigurationSetArchivingOptionsCommandOutput | PutConfigurationSetDeliveryOptionsCommandOutput | PutConfigurationSetReputationOptionsCommandOutput | PutConfigurationSetSendingOptionsCommandOutput | PutConfigurationSetSuppressionOptionsCommandOutput | PutConfigurationSetTrackingOptionsCommandOutput | PutConfigurationSetVdmOptionsCommandOutput | PutDedicatedIpInPoolCommandOutput | PutDedicatedIpPoolScalingAttributesCommandOutput | PutDedicatedIpWarmupAttributesCommandOutput | PutDeliverabilityDashboardOptionCommandOutput | PutEmailIdentityConfigurationSetAttributesCommandOutput | PutEmailIdentityDkimAttributesCommandOutput | PutEmailIdentityDkimSigningAttributesCommandOutput | PutEmailIdentityFeedbackAttributesCommandOutput | PutEmailIdentityMailFromAttributesCommandOutput | PutSuppressedDestinationCommandOutput | PutTenantSuppressionAttributesCommandOutput | SendBulkEmailCommandOutput | SendCustomVerificationEmailCommandOutput | SendEmailCommandOutput | TagResourceCommandOutput | TestRenderEmailTemplateCommandOutput | UntagResourceCommandOutput | UpdateConfigurationSetEventDestinationCommandOutput | UpdateContactCommandOutput | UpdateContactListCommandOutput | UpdateCustomVerificationEmailTemplateCommandOutput | UpdateEmailIdentityPolicyCommandOutput | UpdateEmailTemplateCommandOutput | UpdateReputationEntityCustomerManagedStatusCommandOutput | UpdateReputationEntityPolicyCommandOutput;
|
|
131
132
|
/**
|
|
132
133
|
* @public
|
|
133
134
|
*/
|
|
@@ -28,7 +28,7 @@ declare const CreateMultiRegionEndpointCommand_base: {
|
|
|
28
28
|
* <p>The primary region is going to be the AWS-Region where the operation is executed.
|
|
29
29
|
* The secondary region has to be provided in request's parameters.
|
|
30
30
|
* From the data flow standpoint there is no difference between primary
|
|
31
|
-
* and secondary regions - sending traffic
|
|
31
|
+
* and secondary regions - sending traffic is divided between the two.
|
|
32
32
|
* The primary region is the region where the resource has been created and where it can be managed.
|
|
33
33
|
* </p>
|
|
34
34
|
* @example
|
|
@@ -82,6 +82,10 @@ declare const GetAccountCommand_base: {
|
|
|
82
82
|
* // OptimizedSharedDelivery: "ENABLED" || "DISABLED",
|
|
83
83
|
* // },
|
|
84
84
|
* // },
|
|
85
|
+
* // PricingAttributes: { // PricingAttributes
|
|
86
|
+
* // CurrentPlan: "NONE" || "ESSENTIALS" || "PRO" || "ENTERPRISE",
|
|
87
|
+
* // NextPlan: "NONE" || "ESSENTIALS" || "PRO" || "ENTERPRISE",
|
|
88
|
+
* // },
|
|
85
89
|
* // };
|
|
86
90
|
*
|
|
87
91
|
* ```
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { PutAccountPricingAttributesRequest, PutAccountPricingAttributesResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link PutAccountPricingAttributesCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface PutAccountPricingAttributesCommandInput extends PutAccountPricingAttributesRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link PutAccountPricingAttributesCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface PutAccountPricingAttributesCommandOutput extends PutAccountPricingAttributesResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const PutAccountPricingAttributesCommand_base: {
|
|
22
|
+
new (input: PutAccountPricingAttributesCommandInput): import("@smithy/core/client").CommandImpl<PutAccountPricingAttributesCommandInput, PutAccountPricingAttributesCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: PutAccountPricingAttributesCommandInput): import("@smithy/core/client").CommandImpl<PutAccountPricingAttributesCommandInput, PutAccountPricingAttributesCommandOutput, import("..").SESv2ClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Set the pricing plan for your Amazon SES account. Use this operation to choose a billing plan
|
|
28
|
+
* that packages multiple Amazon SES features at a single rate.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { SESv2Client, PutAccountPricingAttributesCommand } from "@aws-sdk/client-sesv2"; // ES Modules import
|
|
33
|
+
* // const { SESv2Client, PutAccountPricingAttributesCommand } = require("@aws-sdk/client-sesv2"); // CommonJS import
|
|
34
|
+
* // import type { SESv2ClientConfig } from "@aws-sdk/client-sesv2";
|
|
35
|
+
* const config = {}; // type is SESv2ClientConfig
|
|
36
|
+
* const client = new SESv2Client(config);
|
|
37
|
+
* const input = { // PutAccountPricingAttributesRequest
|
|
38
|
+
* Plan: "NONE" || "ESSENTIALS" || "PRO" || "ENTERPRISE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new PutAccountPricingAttributesCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param PutAccountPricingAttributesCommandInput - {@link PutAccountPricingAttributesCommandInput}
|
|
47
|
+
* @returns {@link PutAccountPricingAttributesCommandOutput}
|
|
48
|
+
* @see {@link PutAccountPricingAttributesCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link PutAccountPricingAttributesCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link SESv2ClientResolvedConfig | config} for SESv2Client's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link BadRequestException} (client fault)
|
|
53
|
+
* <p>The input you provided is invalid.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>If there is already an ongoing account details update under review.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
|
+
* <p>Too many requests have been made to the operation.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link SESv2ServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from SESv2 service.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class PutAccountPricingAttributesCommand extends PutAccountPricingAttributesCommand_base {
|
|
68
|
+
/** @internal type navigation helper, not in runtime. */
|
|
69
|
+
protected static __types: {
|
|
70
|
+
api: {
|
|
71
|
+
input: PutAccountPricingAttributesRequest;
|
|
72
|
+
output: {};
|
|
73
|
+
};
|
|
74
|
+
sdk: {
|
|
75
|
+
input: PutAccountPricingAttributesCommandInput;
|
|
76
|
+
output: PutAccountPricingAttributesCommandOutput;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { PutEmailIdentityDkimSigningAttributesRequest, PutEmailIdentityDkimSigningAttributesResponse } from "../models/
|
|
2
|
+
import type { PutEmailIdentityDkimSigningAttributesRequest, PutEmailIdentityDkimSigningAttributesResponse } from "../models/models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import type { PutEmailIdentityFeedbackAttributesRequest } from "../models/
|
|
3
|
-
import type { PutEmailIdentityFeedbackAttributesResponse } from "../models/models_1";
|
|
2
|
+
import type { PutEmailIdentityFeedbackAttributesRequest, PutEmailIdentityFeedbackAttributesResponse } from "../models/models_1";
|
|
4
3
|
/**
|
|
5
4
|
* @public
|
|
6
5
|
*/
|
|
@@ -74,6 +74,7 @@ export * from "./ListTenantResourcesCommand";
|
|
|
74
74
|
export * from "./ListTenantsCommand";
|
|
75
75
|
export * from "./PutAccountDedicatedIpWarmupAttributesCommand";
|
|
76
76
|
export * from "./PutAccountDetailsCommand";
|
|
77
|
+
export * from "./PutAccountPricingAttributesCommand";
|
|
77
78
|
export * from "./PutAccountSendingAttributesCommand";
|
|
78
79
|
export * from "./PutAccountSuppressionAttributesCommand";
|
|
79
80
|
export * from "./PutAccountVdmAttributesCommand";
|
|
@@ -557,6 +557,20 @@ export declare const JobStatus: {
|
|
|
557
557
|
* @public
|
|
558
558
|
*/
|
|
559
559
|
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
560
|
+
/**
|
|
561
|
+
* @public
|
|
562
|
+
* @enum
|
|
563
|
+
*/
|
|
564
|
+
export declare const PricingPlan: {
|
|
565
|
+
readonly ENTERPRISE: "ENTERPRISE";
|
|
566
|
+
readonly ESSENTIALS: "ESSENTIALS";
|
|
567
|
+
readonly NONE: "NONE";
|
|
568
|
+
readonly PRO: "PRO";
|
|
569
|
+
};
|
|
570
|
+
/**
|
|
571
|
+
* @public
|
|
572
|
+
*/
|
|
573
|
+
export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
|
|
560
574
|
/**
|
|
561
575
|
* @public
|
|
562
576
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AttachmentContentDisposition, AttachmentContentTransferEncoding, BehaviorOnMxFailure, BounceType, BulkEmailStatus, ContactLanguage, ContactListImportAction, DataFormat, DeliverabilityDashboardAccountStatus, DeliverabilityTestStatus, DeliveryEventType, DimensionValueSource, DkimSigningAttributesOrigin, DkimSigningKeyLength, DkimStatus, EmailAddressInsightsConfidenceVerdict, EngagementEventType, EventType, ExportSourceType, FeatureStatus, HttpsPolicy, IdentityType, ImportDestinationType, JobStatus, ListRecommendationsFilterKey, ListTenantResourcesFilterKey, MailFromDomainStatus, MailType, Metric, MetricAggregation, MetricDimensionName, MetricNamespace, QueryErrorCode, RecommendationImpact, RecommendationStatus, RecommendationType, ReputationEntityFilterKey, ReputationEntityType, ResourceType, ReviewStatus, ScalingMode, SendingStatus, Status, SubscriptionStatus, SuppressionConfidenceVerdictThreshold, SuppressionListImportAction, SuppressionListReason, SuppressionListScope, TlsPolicy, VerificationError, VerificationStatus, WarmupStatus } from "./enums";
|
|
1
|
+
import type { AttachmentContentDisposition, AttachmentContentTransferEncoding, BehaviorOnMxFailure, BounceType, BulkEmailStatus, ContactLanguage, ContactListImportAction, DataFormat, DeliverabilityDashboardAccountStatus, DeliverabilityTestStatus, DeliveryEventType, DimensionValueSource, DkimSigningAttributesOrigin, DkimSigningKeyLength, DkimStatus, EmailAddressInsightsConfidenceVerdict, EngagementEventType, EventType, ExportSourceType, FeatureStatus, HttpsPolicy, IdentityType, ImportDestinationType, JobStatus, ListRecommendationsFilterKey, ListTenantResourcesFilterKey, MailFromDomainStatus, MailType, Metric, MetricAggregation, MetricDimensionName, MetricNamespace, PricingPlan, QueryErrorCode, RecommendationImpact, RecommendationStatus, RecommendationType, ReputationEntityFilterKey, ReputationEntityType, ResourceType, ReviewStatus, ScalingMode, SendingStatus, Status, SubscriptionStatus, SuppressionConfidenceVerdictThreshold, SuppressionListImportAction, SuppressionListReason, SuppressionListScope, TlsPolicy, VerificationError, VerificationStatus, WarmupStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>An object that contains information about your account details review.</p>
|
|
4
4
|
* @public
|
|
@@ -4160,6 +4160,25 @@ export interface FailureInfo {
|
|
|
4160
4160
|
*/
|
|
4161
4161
|
export interface GetAccountRequest {
|
|
4162
4162
|
}
|
|
4163
|
+
/**
|
|
4164
|
+
* <p>The pricing attributes that apply to your Amazon SES account, including the currently active
|
|
4165
|
+
* pricing plan and any scheduled change for the next billing cycle.</p>
|
|
4166
|
+
* @public
|
|
4167
|
+
*/
|
|
4168
|
+
export interface PricingAttributes {
|
|
4169
|
+
/**
|
|
4170
|
+
* <p>The pricing plan that is currently active on your Amazon SES account.</p>
|
|
4171
|
+
* @public
|
|
4172
|
+
*/
|
|
4173
|
+
CurrentPlan?: PricingPlan | undefined;
|
|
4174
|
+
/**
|
|
4175
|
+
* <p>The pricing plan that will become active at the start of the next billing cycle, if a
|
|
4176
|
+
* scheduled change has been requested. This field is empty when no scheduled change is
|
|
4177
|
+
* pending.</p>
|
|
4178
|
+
* @public
|
|
4179
|
+
*/
|
|
4180
|
+
NextPlan?: PricingPlan | undefined;
|
|
4181
|
+
}
|
|
4163
4182
|
/**
|
|
4164
4183
|
* <p>An object that contains information about the per-day and per-second sending limits
|
|
4165
4184
|
* for your Amazon SES account in the current Amazon Web Services Region.</p>
|
|
@@ -4368,6 +4387,12 @@ export interface GetAccountResponse {
|
|
|
4368
4387
|
* @public
|
|
4369
4388
|
*/
|
|
4370
4389
|
VdmAttributes?: VdmAttributes | undefined;
|
|
4390
|
+
/**
|
|
4391
|
+
* <p>The pricing attributes that apply to your Amazon SES account, including the currently active
|
|
4392
|
+
* pricing plan and any scheduled change.</p>
|
|
4393
|
+
* @public
|
|
4394
|
+
*/
|
|
4395
|
+
PricingAttributes?: PricingAttributes | undefined;
|
|
4371
4396
|
}
|
|
4372
4397
|
/**
|
|
4373
4398
|
* <p>A request to retrieve a list of the blacklists that your dedicated IP addresses appear
|
|
@@ -7160,6 +7185,46 @@ export interface PutAccountDetailsRequest {
|
|
|
7160
7185
|
*/
|
|
7161
7186
|
export interface PutAccountDetailsResponse {
|
|
7162
7187
|
}
|
|
7188
|
+
/**
|
|
7189
|
+
* <p>A request to set the pricing plan for your Amazon SES account.</p>
|
|
7190
|
+
* @public
|
|
7191
|
+
*/
|
|
7192
|
+
export interface PutAccountPricingAttributesRequest {
|
|
7193
|
+
/**
|
|
7194
|
+
* <p>The pricing plan to apply to your Amazon SES account. Can be one of the following:</p>
|
|
7195
|
+
* <ul>
|
|
7196
|
+
* <li>
|
|
7197
|
+
* <p>
|
|
7198
|
+
* <code>NONE</code> – No pricing plan is applied; billing follows per-feature
|
|
7199
|
+
* pricing.</p>
|
|
7200
|
+
* </li>
|
|
7201
|
+
* <li>
|
|
7202
|
+
* <p>
|
|
7203
|
+
* <code>ESSENTIALS</code> – Baseline Amazon SES capabilities and select premium
|
|
7204
|
+
* features.</p>
|
|
7205
|
+
* </li>
|
|
7206
|
+
* <li>
|
|
7207
|
+
* <p>
|
|
7208
|
+
* <code>PRO</code> – Includes everything in <code>ESSENTIALS</code>, plus
|
|
7209
|
+
* additional premium features for growing senders.</p>
|
|
7210
|
+
* </li>
|
|
7211
|
+
* <li>
|
|
7212
|
+
* <p>
|
|
7213
|
+
* <code>ENTERPRISE</code> – Includes everything in <code>PRO</code>, plus
|
|
7214
|
+
* features intended for large-scale senders.</p>
|
|
7215
|
+
* </li>
|
|
7216
|
+
* </ul>
|
|
7217
|
+
* @public
|
|
7218
|
+
*/
|
|
7219
|
+
Plan: PricingPlan | undefined;
|
|
7220
|
+
}
|
|
7221
|
+
/**
|
|
7222
|
+
* <p>An HTTP 200 response if the request succeeds, or an error response if the request
|
|
7223
|
+
* fails.</p>
|
|
7224
|
+
* @public
|
|
7225
|
+
*/
|
|
7226
|
+
export interface PutAccountPricingAttributesResponse {
|
|
7227
|
+
}
|
|
7163
7228
|
/**
|
|
7164
7229
|
* <p>A request to change the ability of your account to send email.</p>
|
|
7165
7230
|
* @public
|
|
@@ -7626,149 +7691,3 @@ export interface PutEmailIdentityDkimAttributesRequest {
|
|
|
7626
7691
|
*/
|
|
7627
7692
|
export interface PutEmailIdentityDkimAttributesResponse {
|
|
7628
7693
|
}
|
|
7629
|
-
/**
|
|
7630
|
-
* <p>A request to change the DKIM attributes for an email identity.</p>
|
|
7631
|
-
* @public
|
|
7632
|
-
*/
|
|
7633
|
-
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
7634
|
-
/**
|
|
7635
|
-
* <p>The email identity.</p>
|
|
7636
|
-
* @public
|
|
7637
|
-
*/
|
|
7638
|
-
EmailIdentity: string | undefined;
|
|
7639
|
-
/**
|
|
7640
|
-
* <p>The method to use to configure DKIM for the identity. There are the following possible
|
|
7641
|
-
* values:</p>
|
|
7642
|
-
* <ul>
|
|
7643
|
-
* <li>
|
|
7644
|
-
* <p>
|
|
7645
|
-
* <code>AWS_SES</code> – Configure DKIM for the identity by using <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
7646
|
-
* DKIM</a>.</p>
|
|
7647
|
-
* </li>
|
|
7648
|
-
* <li>
|
|
7649
|
-
* <p>
|
|
7650
|
-
* <code>EXTERNAL</code> – Configure DKIM for the identity by using Bring
|
|
7651
|
-
* Your Own DKIM (BYODKIM).</p>
|
|
7652
|
-
* </li>
|
|
7653
|
-
* </ul>
|
|
7654
|
-
* @public
|
|
7655
|
-
*/
|
|
7656
|
-
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
7657
|
-
/**
|
|
7658
|
-
* <p>An object that contains information about the private key and selector that you want
|
|
7659
|
-
* to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the
|
|
7660
|
-
* identity, or, configures the key length to be used for <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
7661
|
-
* @public
|
|
7662
|
-
*/
|
|
7663
|
-
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
7664
|
-
}
|
|
7665
|
-
/**
|
|
7666
|
-
* <p>If the action is successful, the service sends back an HTTP 200 response.</p>
|
|
7667
|
-
* <p>The following data is returned in JSON format by the service.</p>
|
|
7668
|
-
* @public
|
|
7669
|
-
*/
|
|
7670
|
-
export interface PutEmailIdentityDkimSigningAttributesResponse {
|
|
7671
|
-
/**
|
|
7672
|
-
* <p>The DKIM authentication status of the identity. Amazon SES determines the authentication
|
|
7673
|
-
* status by searching for specific records in the DNS configuration for your domain. If
|
|
7674
|
-
* you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
7675
|
-
* DKIM</a> to set up DKIM authentication, Amazon SES tries to find three unique CNAME
|
|
7676
|
-
* records in the DNS configuration for your domain.</p>
|
|
7677
|
-
* <p>If you provided a public key to perform DKIM authentication, Amazon SES tries to find a TXT
|
|
7678
|
-
* record that uses the selector that you specified. The value of the TXT record must be a
|
|
7679
|
-
* public key that's paired with the private key that you specified in the process of
|
|
7680
|
-
* creating the identity.</p>
|
|
7681
|
-
* <p>The status can be one of the following:</p>
|
|
7682
|
-
* <ul>
|
|
7683
|
-
* <li>
|
|
7684
|
-
* <p>
|
|
7685
|
-
* <code>PENDING</code> – The verification process was initiated, but Amazon SES
|
|
7686
|
-
* hasn't yet detected the DKIM records in the DNS configuration for the
|
|
7687
|
-
* domain.</p>
|
|
7688
|
-
* </li>
|
|
7689
|
-
* <li>
|
|
7690
|
-
* <p>
|
|
7691
|
-
* <code>SUCCESS</code> – The verification process completed
|
|
7692
|
-
* successfully.</p>
|
|
7693
|
-
* </li>
|
|
7694
|
-
* <li>
|
|
7695
|
-
* <p>
|
|
7696
|
-
* <code>FAILED</code> – The verification process failed. This typically
|
|
7697
|
-
* occurs when Amazon SES fails to find the DKIM records in the DNS configuration of the
|
|
7698
|
-
* domain.</p>
|
|
7699
|
-
* </li>
|
|
7700
|
-
* <li>
|
|
7701
|
-
* <p>
|
|
7702
|
-
* <code>TEMPORARY_FAILURE</code> – A temporary issue is preventing Amazon SES
|
|
7703
|
-
* from determining the DKIM authentication status of the domain.</p>
|
|
7704
|
-
* </li>
|
|
7705
|
-
* <li>
|
|
7706
|
-
* <p>
|
|
7707
|
-
* <code>NOT_STARTED</code> – The DKIM verification process hasn't been
|
|
7708
|
-
* initiated for the domain.</p>
|
|
7709
|
-
* </li>
|
|
7710
|
-
* </ul>
|
|
7711
|
-
* @public
|
|
7712
|
-
*/
|
|
7713
|
-
DkimStatus?: DkimStatus | undefined;
|
|
7714
|
-
/**
|
|
7715
|
-
* <p>If you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a> to configure DKIM authentication for the domain, then this object
|
|
7716
|
-
* contains a set of unique strings that you use to create a set of CNAME records that you
|
|
7717
|
-
* add to the DNS configuration for your domain. When Amazon SES detects these records in the
|
|
7718
|
-
* DNS configuration for your domain, the DKIM authentication process is complete.</p>
|
|
7719
|
-
* <p>If you configured DKIM authentication for the domain by providing your own
|
|
7720
|
-
* public-private key pair, then this object contains the selector that's associated with
|
|
7721
|
-
* your public key.</p>
|
|
7722
|
-
* <p>Regardless of the DKIM authentication method you use, Amazon SES searches for the
|
|
7723
|
-
* appropriate records in the DNS configuration of the domain for up to 72 hours.</p>
|
|
7724
|
-
* @public
|
|
7725
|
-
*/
|
|
7726
|
-
DkimTokens?: string[] | undefined;
|
|
7727
|
-
/**
|
|
7728
|
-
* <p>The hosted zone where Amazon SES publishes the DKIM public key TXT records for this email identity.
|
|
7729
|
-
* This value indicates the DNS zone that customers must reference when configuring their CNAME records for DKIM authentication.</p>
|
|
7730
|
-
* <p>When configuring DKIM for your domain, create CNAME records in your DNS that point to the selectors in this hosted zone.
|
|
7731
|
-
* For example:</p>
|
|
7732
|
-
* <p>
|
|
7733
|
-
* <code>
|
|
7734
|
-
* selector1._domainkey.yourdomain.com CNAME selector1.<SigningHostedZone>
|
|
7735
|
-
* </code>
|
|
7736
|
-
* </p>
|
|
7737
|
-
* <p>
|
|
7738
|
-
* <code>
|
|
7739
|
-
* selector2._domainkey.yourdomain.com CNAME selector2.<SigningHostedZone>
|
|
7740
|
-
* </code>
|
|
7741
|
-
* </p>
|
|
7742
|
-
* <p>
|
|
7743
|
-
* <code>
|
|
7744
|
-
* selector3._domainkey.yourdomain.com CNAME selector3.<SigningHostedZone>
|
|
7745
|
-
* </code>
|
|
7746
|
-
* </p>
|
|
7747
|
-
* @public
|
|
7748
|
-
*/
|
|
7749
|
-
SigningHostedZone?: string | undefined;
|
|
7750
|
-
}
|
|
7751
|
-
/**
|
|
7752
|
-
* <p>A request to set the attributes that control how bounce and complaint events are
|
|
7753
|
-
* processed.</p>
|
|
7754
|
-
* @public
|
|
7755
|
-
*/
|
|
7756
|
-
export interface PutEmailIdentityFeedbackAttributesRequest {
|
|
7757
|
-
/**
|
|
7758
|
-
* <p>The email identity.</p>
|
|
7759
|
-
* @public
|
|
7760
|
-
*/
|
|
7761
|
-
EmailIdentity: string | undefined;
|
|
7762
|
-
/**
|
|
7763
|
-
* <p>Sets the feedback forwarding configuration for the identity.</p>
|
|
7764
|
-
* <p>If the value is <code>true</code>, you receive email notifications when bounce or
|
|
7765
|
-
* complaint events occur. These notifications are sent to the address that you specified
|
|
7766
|
-
* in the <code>Return-Path</code> header of the original email.</p>
|
|
7767
|
-
* <p>You're required to have a method of tracking bounces and complaints. If you haven't
|
|
7768
|
-
* set up another mechanism for receiving bounce or complaint notifications (for example,
|
|
7769
|
-
* by setting up an event destination), you receive an email notification when these events
|
|
7770
|
-
* occur (even if this setting is disabled).</p>
|
|
7771
|
-
* @public
|
|
7772
|
-
*/
|
|
7773
|
-
EmailForwardingEnabled?: boolean | undefined;
|
|
7774
|
-
}
|
|
@@ -1,5 +1,151 @@
|
|
|
1
|
-
import type { BehaviorOnMxFailure, ReputationEntityType, SendingStatus, SuppressionListReason, SuppressionListScope } from "./enums";
|
|
2
|
-
import type { BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, Tag, Topic, TopicPreference } from "./models_0";
|
|
1
|
+
import type { BehaviorOnMxFailure, DkimSigningAttributesOrigin, DkimStatus, ReputationEntityType, SendingStatus, SuppressionListReason, SuppressionListScope } from "./enums";
|
|
2
|
+
import type { BulkEmailContent, BulkEmailEntry, BulkEmailEntryResult, Destination, DkimSigningAttributes, EmailContent, EmailTemplateContent, EventDestinationDefinition, ListManagementOptions, MessageTag, Tag, Topic, TopicPreference } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>A request to change the DKIM attributes for an email identity.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The email identity.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
EmailIdentity: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The method to use to configure DKIM for the identity. There are the following possible
|
|
15
|
+
* values:</p>
|
|
16
|
+
* <ul>
|
|
17
|
+
* <li>
|
|
18
|
+
* <p>
|
|
19
|
+
* <code>AWS_SES</code> – Configure DKIM for the identity by using <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
20
|
+
* DKIM</a>.</p>
|
|
21
|
+
* </li>
|
|
22
|
+
* <li>
|
|
23
|
+
* <p>
|
|
24
|
+
* <code>EXTERNAL</code> – Configure DKIM for the identity by using Bring
|
|
25
|
+
* Your Own DKIM (BYODKIM).</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* </ul>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>An object that contains information about the private key and selector that you want
|
|
33
|
+
* to use to configure DKIM for the identity for Bring Your Own DKIM (BYODKIM) for the
|
|
34
|
+
* identity, or, configures the key length to be used for <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a>.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>If the action is successful, the service sends back an HTTP 200 response.</p>
|
|
41
|
+
* <p>The following data is returned in JSON format by the service.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export interface PutEmailIdentityDkimSigningAttributesResponse {
|
|
45
|
+
/**
|
|
46
|
+
* <p>The DKIM authentication status of the identity. Amazon SES determines the authentication
|
|
47
|
+
* status by searching for specific records in the DNS configuration for your domain. If
|
|
48
|
+
* you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy
|
|
49
|
+
* DKIM</a> to set up DKIM authentication, Amazon SES tries to find three unique CNAME
|
|
50
|
+
* records in the DNS configuration for your domain.</p>
|
|
51
|
+
* <p>If you provided a public key to perform DKIM authentication, Amazon SES tries to find a TXT
|
|
52
|
+
* record that uses the selector that you specified. The value of the TXT record must be a
|
|
53
|
+
* public key that's paired with the private key that you specified in the process of
|
|
54
|
+
* creating the identity.</p>
|
|
55
|
+
* <p>The status can be one of the following:</p>
|
|
56
|
+
* <ul>
|
|
57
|
+
* <li>
|
|
58
|
+
* <p>
|
|
59
|
+
* <code>PENDING</code> – The verification process was initiated, but Amazon SES
|
|
60
|
+
* hasn't yet detected the DKIM records in the DNS configuration for the
|
|
61
|
+
* domain.</p>
|
|
62
|
+
* </li>
|
|
63
|
+
* <li>
|
|
64
|
+
* <p>
|
|
65
|
+
* <code>SUCCESS</code> – The verification process completed
|
|
66
|
+
* successfully.</p>
|
|
67
|
+
* </li>
|
|
68
|
+
* <li>
|
|
69
|
+
* <p>
|
|
70
|
+
* <code>FAILED</code> – The verification process failed. This typically
|
|
71
|
+
* occurs when Amazon SES fails to find the DKIM records in the DNS configuration of the
|
|
72
|
+
* domain.</p>
|
|
73
|
+
* </li>
|
|
74
|
+
* <li>
|
|
75
|
+
* <p>
|
|
76
|
+
* <code>TEMPORARY_FAILURE</code> – A temporary issue is preventing Amazon SES
|
|
77
|
+
* from determining the DKIM authentication status of the domain.</p>
|
|
78
|
+
* </li>
|
|
79
|
+
* <li>
|
|
80
|
+
* <p>
|
|
81
|
+
* <code>NOT_STARTED</code> – The DKIM verification process hasn't been
|
|
82
|
+
* initiated for the domain.</p>
|
|
83
|
+
* </li>
|
|
84
|
+
* </ul>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
DkimStatus?: DkimStatus | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>If you used <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html">Easy DKIM</a> to configure DKIM authentication for the domain, then this object
|
|
90
|
+
* contains a set of unique strings that you use to create a set of CNAME records that you
|
|
91
|
+
* add to the DNS configuration for your domain. When Amazon SES detects these records in the
|
|
92
|
+
* DNS configuration for your domain, the DKIM authentication process is complete.</p>
|
|
93
|
+
* <p>If you configured DKIM authentication for the domain by providing your own
|
|
94
|
+
* public-private key pair, then this object contains the selector that's associated with
|
|
95
|
+
* your public key.</p>
|
|
96
|
+
* <p>Regardless of the DKIM authentication method you use, Amazon SES searches for the
|
|
97
|
+
* appropriate records in the DNS configuration of the domain for up to 72 hours.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
DkimTokens?: string[] | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The hosted zone where Amazon SES publishes the DKIM public key TXT records for this email identity.
|
|
103
|
+
* This value indicates the DNS zone that customers must reference when configuring their CNAME records for DKIM authentication.</p>
|
|
104
|
+
* <p>When configuring DKIM for your domain, create CNAME records in your DNS that point to the selectors in this hosted zone.
|
|
105
|
+
* For example:</p>
|
|
106
|
+
* <p>
|
|
107
|
+
* <code>
|
|
108
|
+
* selector1._domainkey.yourdomain.com CNAME selector1.<SigningHostedZone>
|
|
109
|
+
* </code>
|
|
110
|
+
* </p>
|
|
111
|
+
* <p>
|
|
112
|
+
* <code>
|
|
113
|
+
* selector2._domainkey.yourdomain.com CNAME selector2.<SigningHostedZone>
|
|
114
|
+
* </code>
|
|
115
|
+
* </p>
|
|
116
|
+
* <p>
|
|
117
|
+
* <code>
|
|
118
|
+
* selector3._domainkey.yourdomain.com CNAME selector3.<SigningHostedZone>
|
|
119
|
+
* </code>
|
|
120
|
+
* </p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
SigningHostedZone?: string | undefined;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* <p>A request to set the attributes that control how bounce and complaint events are
|
|
127
|
+
* processed.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export interface PutEmailIdentityFeedbackAttributesRequest {
|
|
131
|
+
/**
|
|
132
|
+
* <p>The email identity.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
EmailIdentity: string | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* <p>Sets the feedback forwarding configuration for the identity.</p>
|
|
138
|
+
* <p>If the value is <code>true</code>, you receive email notifications when bounce or
|
|
139
|
+
* complaint events occur. These notifications are sent to the address that you specified
|
|
140
|
+
* in the <code>Return-Path</code> header of the original email.</p>
|
|
141
|
+
* <p>You're required to have a method of tracking bounces and complaints. If you haven't
|
|
142
|
+
* set up another mechanism for receiving bounce or complaint notifications (for example,
|
|
143
|
+
* by setting up an event destination), you receive an email notification when these events
|
|
144
|
+
* occur (even if this setting is disabled).</p>
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
EmailForwardingEnabled?: boolean | undefined;
|
|
148
|
+
}
|
|
3
149
|
/**
|
|
4
150
|
* <p>An HTTP 200 response if the request succeeds, or an error message if the request
|
|
5
151
|
* fails.</p>
|
|
@@ -242,10 +242,13 @@ export declare var MultiRegionEndpoint$: StaticStructureSchema;
|
|
|
242
242
|
export declare var OverallVolume$: StaticStructureSchema;
|
|
243
243
|
export declare var PinpointDestination$: StaticStructureSchema;
|
|
244
244
|
export declare var PlacementStatistics$: StaticStructureSchema;
|
|
245
|
+
export declare var PricingAttributes$: StaticStructureSchema;
|
|
245
246
|
export declare var PutAccountDedicatedIpWarmupAttributesRequest$: StaticStructureSchema;
|
|
246
247
|
export declare var PutAccountDedicatedIpWarmupAttributesResponse$: StaticStructureSchema;
|
|
247
248
|
export declare var PutAccountDetailsRequest$: StaticStructureSchema;
|
|
248
249
|
export declare var PutAccountDetailsResponse$: StaticStructureSchema;
|
|
250
|
+
export declare var PutAccountPricingAttributesRequest$: StaticStructureSchema;
|
|
251
|
+
export declare var PutAccountPricingAttributesResponse$: StaticStructureSchema;
|
|
249
252
|
export declare var PutAccountSendingAttributesRequest$: StaticStructureSchema;
|
|
250
253
|
export declare var PutAccountSendingAttributesResponse$: StaticStructureSchema;
|
|
251
254
|
export declare var PutAccountSuppressionAttributesRequest$: StaticStructureSchema;
|
|
@@ -431,6 +434,7 @@ export declare var ListTenantResources$: StaticOperationSchema;
|
|
|
431
434
|
export declare var ListTenants$: StaticOperationSchema;
|
|
432
435
|
export declare var PutAccountDedicatedIpWarmupAttributes$: StaticOperationSchema;
|
|
433
436
|
export declare var PutAccountDetails$: StaticOperationSchema;
|
|
437
|
+
export declare var PutAccountPricingAttributes$: StaticOperationSchema;
|
|
434
438
|
export declare var PutAccountSendingAttributes$: StaticOperationSchema;
|
|
435
439
|
export declare var PutAccountSuppressionAttributes$: StaticOperationSchema;
|
|
436
440
|
export declare var PutAccountVdmAttributes$: StaticOperationSchema;
|
|
@@ -295,6 +295,10 @@ import {
|
|
|
295
295
|
PutAccountDetailsCommandInput,
|
|
296
296
|
PutAccountDetailsCommandOutput,
|
|
297
297
|
} from "./commands/PutAccountDetailsCommand";
|
|
298
|
+
import {
|
|
299
|
+
PutAccountPricingAttributesCommandInput,
|
|
300
|
+
PutAccountPricingAttributesCommandOutput,
|
|
301
|
+
} from "./commands/PutAccountPricingAttributesCommand";
|
|
298
302
|
import {
|
|
299
303
|
PutAccountSendingAttributesCommandInput,
|
|
300
304
|
PutAccountSendingAttributesCommandOutput,
|
|
@@ -1437,6 +1441,19 @@ export interface SESv2 {
|
|
|
1437
1441
|
options: __HttpHandlerOptions,
|
|
1438
1442
|
cb: (err: any, data?: PutAccountDetailsCommandOutput) => void,
|
|
1439
1443
|
): void;
|
|
1444
|
+
putAccountPricingAttributes(
|
|
1445
|
+
args: PutAccountPricingAttributesCommandInput,
|
|
1446
|
+
options?: __HttpHandlerOptions,
|
|
1447
|
+
): Promise<PutAccountPricingAttributesCommandOutput>;
|
|
1448
|
+
putAccountPricingAttributes(
|
|
1449
|
+
args: PutAccountPricingAttributesCommandInput,
|
|
1450
|
+
cb: (err: any, data?: PutAccountPricingAttributesCommandOutput) => void,
|
|
1451
|
+
): void;
|
|
1452
|
+
putAccountPricingAttributes(
|
|
1453
|
+
args: PutAccountPricingAttributesCommandInput,
|
|
1454
|
+
options: __HttpHandlerOptions,
|
|
1455
|
+
cb: (err: any, data?: PutAccountPricingAttributesCommandOutput) => void,
|
|
1456
|
+
): void;
|
|
1440
1457
|
putAccountSendingAttributes(): Promise<PutAccountSendingAttributesCommandOutput>;
|
|
1441
1458
|
putAccountSendingAttributes(
|
|
1442
1459
|
args: PutAccountSendingAttributesCommandInput,
|
|
@@ -325,6 +325,10 @@ import {
|
|
|
325
325
|
PutAccountDetailsCommandInput,
|
|
326
326
|
PutAccountDetailsCommandOutput,
|
|
327
327
|
} from "./commands/PutAccountDetailsCommand";
|
|
328
|
+
import {
|
|
329
|
+
PutAccountPricingAttributesCommandInput,
|
|
330
|
+
PutAccountPricingAttributesCommandOutput,
|
|
331
|
+
} from "./commands/PutAccountPricingAttributesCommand";
|
|
328
332
|
import {
|
|
329
333
|
PutAccountSendingAttributesCommandInput,
|
|
330
334
|
PutAccountSendingAttributesCommandOutput,
|
|
@@ -543,6 +547,7 @@ export type ServiceInputTypes =
|
|
|
543
547
|
| ListTenantsCommandInput
|
|
544
548
|
| PutAccountDedicatedIpWarmupAttributesCommandInput
|
|
545
549
|
| PutAccountDetailsCommandInput
|
|
550
|
+
| PutAccountPricingAttributesCommandInput
|
|
546
551
|
| PutAccountSendingAttributesCommandInput
|
|
547
552
|
| PutAccountSuppressionAttributesCommandInput
|
|
548
553
|
| PutAccountVdmAttributesCommandInput
|
|
@@ -655,6 +660,7 @@ export type ServiceOutputTypes =
|
|
|
655
660
|
| ListTenantsCommandOutput
|
|
656
661
|
| PutAccountDedicatedIpWarmupAttributesCommandOutput
|
|
657
662
|
| PutAccountDetailsCommandOutput
|
|
663
|
+
| PutAccountPricingAttributesCommandOutput
|
|
658
664
|
| PutAccountSendingAttributesCommandOutput
|
|
659
665
|
| PutAccountSuppressionAttributesCommandOutput
|
|
660
666
|
| PutAccountVdmAttributesCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
PutAccountPricingAttributesRequest,
|
|
4
|
+
PutAccountPricingAttributesResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface PutAccountPricingAttributesCommandInput extends PutAccountPricingAttributesRequest {}
|
|
8
|
+
export interface PutAccountPricingAttributesCommandOutput
|
|
9
|
+
extends PutAccountPricingAttributesResponse, __MetadataBearer {}
|
|
10
|
+
declare const PutAccountPricingAttributesCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: PutAccountPricingAttributesCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
PutAccountPricingAttributesCommandInput,
|
|
15
|
+
PutAccountPricingAttributesCommandOutput,
|
|
16
|
+
import("..").SESv2ClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: PutAccountPricingAttributesCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
PutAccountPricingAttributesCommandInput,
|
|
24
|
+
PutAccountPricingAttributesCommandOutput,
|
|
25
|
+
import("..").SESv2ClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class PutAccountPricingAttributesCommand extends PutAccountPricingAttributesCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: PutAccountPricingAttributesRequest;
|
|
35
|
+
output: {};
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: PutAccountPricingAttributesCommandInput;
|
|
39
|
+
output: PutAccountPricingAttributesCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
PutEmailIdentityDkimSigningAttributesRequest,
|
|
4
4
|
PutEmailIdentityDkimSigningAttributesResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface PutEmailIdentityDkimSigningAttributesCommandInput extends PutEmailIdentityDkimSigningAttributesRequest {}
|
|
8
8
|
export interface PutEmailIdentityDkimSigningAttributesCommandOutput
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
PutEmailIdentityFeedbackAttributesRequest,
|
|
4
|
+
PutEmailIdentityFeedbackAttributesResponse,
|
|
5
|
+
} from "../models/models_1";
|
|
4
6
|
export { __MetadataBearer };
|
|
5
7
|
export interface PutEmailIdentityFeedbackAttributesCommandInput extends PutEmailIdentityFeedbackAttributesRequest {}
|
|
6
8
|
export interface PutEmailIdentityFeedbackAttributesCommandOutput
|
|
@@ -74,6 +74,7 @@ export * from "./ListTenantResourcesCommand";
|
|
|
74
74
|
export * from "./ListTenantsCommand";
|
|
75
75
|
export * from "./PutAccountDedicatedIpWarmupAttributesCommand";
|
|
76
76
|
export * from "./PutAccountDetailsCommand";
|
|
77
|
+
export * from "./PutAccountPricingAttributesCommand";
|
|
77
78
|
export * from "./PutAccountSendingAttributesCommand";
|
|
78
79
|
export * from "./PutAccountSuppressionAttributesCommand";
|
|
79
80
|
export * from "./PutAccountVdmAttributesCommand";
|
|
@@ -287,6 +287,13 @@ export declare const JobStatus: {
|
|
|
287
287
|
readonly PROCESSING: "PROCESSING";
|
|
288
288
|
};
|
|
289
289
|
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
290
|
+
export declare const PricingPlan: {
|
|
291
|
+
readonly ENTERPRISE: "ENTERPRISE";
|
|
292
|
+
readonly ESSENTIALS: "ESSENTIALS";
|
|
293
|
+
readonly NONE: "NONE";
|
|
294
|
+
readonly PRO: "PRO";
|
|
295
|
+
};
|
|
296
|
+
export type PricingPlan = (typeof PricingPlan)[keyof typeof PricingPlan];
|
|
290
297
|
export declare const MailFromDomainStatus: {
|
|
291
298
|
readonly FAILED: "FAILED";
|
|
292
299
|
readonly PENDING: "PENDING";
|
|
@@ -31,6 +31,7 @@ import {
|
|
|
31
31
|
MetricAggregation,
|
|
32
32
|
MetricDimensionName,
|
|
33
33
|
MetricNamespace,
|
|
34
|
+
PricingPlan,
|
|
34
35
|
QueryErrorCode,
|
|
35
36
|
RecommendationImpact,
|
|
36
37
|
RecommendationStatus,
|
|
@@ -667,6 +668,10 @@ export interface FailureInfo {
|
|
|
667
668
|
ErrorMessage?: string | undefined;
|
|
668
669
|
}
|
|
669
670
|
export interface GetAccountRequest {}
|
|
671
|
+
export interface PricingAttributes {
|
|
672
|
+
CurrentPlan?: PricingPlan | undefined;
|
|
673
|
+
NextPlan?: PricingPlan | undefined;
|
|
674
|
+
}
|
|
670
675
|
export interface SendQuota {
|
|
671
676
|
Max24HourSend?: number | undefined;
|
|
672
677
|
MaxSendRate?: number | undefined;
|
|
@@ -696,6 +701,7 @@ export interface GetAccountResponse {
|
|
|
696
701
|
SuppressionAttributes?: SuppressionAttributes | undefined;
|
|
697
702
|
Details?: AccountDetails | undefined;
|
|
698
703
|
VdmAttributes?: VdmAttributes | undefined;
|
|
704
|
+
PricingAttributes?: PricingAttributes | undefined;
|
|
699
705
|
}
|
|
700
706
|
export interface GetBlacklistReportsRequest {
|
|
701
707
|
BlacklistItemNames: string[] | undefined;
|
|
@@ -1235,6 +1241,10 @@ export interface PutAccountDetailsRequest {
|
|
|
1235
1241
|
ProductionAccessEnabled?: boolean | undefined;
|
|
1236
1242
|
}
|
|
1237
1243
|
export interface PutAccountDetailsResponse {}
|
|
1244
|
+
export interface PutAccountPricingAttributesRequest {
|
|
1245
|
+
Plan: PricingPlan | undefined;
|
|
1246
|
+
}
|
|
1247
|
+
export interface PutAccountPricingAttributesResponse {}
|
|
1238
1248
|
export interface PutAccountSendingAttributesRequest {
|
|
1239
1249
|
SendingEnabled?: boolean | undefined;
|
|
1240
1250
|
}
|
|
@@ -1318,17 +1328,3 @@ export interface PutEmailIdentityDkimAttributesRequest {
|
|
|
1318
1328
|
SigningEnabled?: boolean | undefined;
|
|
1319
1329
|
}
|
|
1320
1330
|
export interface PutEmailIdentityDkimAttributesResponse {}
|
|
1321
|
-
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
1322
|
-
EmailIdentity: string | undefined;
|
|
1323
|
-
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
1324
|
-
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
1325
|
-
}
|
|
1326
|
-
export interface PutEmailIdentityDkimSigningAttributesResponse {
|
|
1327
|
-
DkimStatus?: DkimStatus | undefined;
|
|
1328
|
-
DkimTokens?: string[] | undefined;
|
|
1329
|
-
SigningHostedZone?: string | undefined;
|
|
1330
|
-
}
|
|
1331
|
-
export interface PutEmailIdentityFeedbackAttributesRequest {
|
|
1332
|
-
EmailIdentity: string | undefined;
|
|
1333
|
-
EmailForwardingEnabled?: boolean | undefined;
|
|
1334
|
-
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BehaviorOnMxFailure,
|
|
3
|
+
DkimSigningAttributesOrigin,
|
|
4
|
+
DkimStatus,
|
|
3
5
|
ReputationEntityType,
|
|
4
6
|
SendingStatus,
|
|
5
7
|
SuppressionListReason,
|
|
@@ -10,6 +12,7 @@ import {
|
|
|
10
12
|
BulkEmailEntry,
|
|
11
13
|
BulkEmailEntryResult,
|
|
12
14
|
Destination,
|
|
15
|
+
DkimSigningAttributes,
|
|
13
16
|
EmailContent,
|
|
14
17
|
EmailTemplateContent,
|
|
15
18
|
EventDestinationDefinition,
|
|
@@ -19,6 +22,20 @@ import {
|
|
|
19
22
|
Topic,
|
|
20
23
|
TopicPreference,
|
|
21
24
|
} from "./models_0";
|
|
25
|
+
export interface PutEmailIdentityDkimSigningAttributesRequest {
|
|
26
|
+
EmailIdentity: string | undefined;
|
|
27
|
+
SigningAttributesOrigin: DkimSigningAttributesOrigin | undefined;
|
|
28
|
+
SigningAttributes?: DkimSigningAttributes | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface PutEmailIdentityDkimSigningAttributesResponse {
|
|
31
|
+
DkimStatus?: DkimStatus | undefined;
|
|
32
|
+
DkimTokens?: string[] | undefined;
|
|
33
|
+
SigningHostedZone?: string | undefined;
|
|
34
|
+
}
|
|
35
|
+
export interface PutEmailIdentityFeedbackAttributesRequest {
|
|
36
|
+
EmailIdentity: string | undefined;
|
|
37
|
+
EmailForwardingEnabled?: boolean | undefined;
|
|
38
|
+
}
|
|
22
39
|
export interface PutEmailIdentityFeedbackAttributesResponse {}
|
|
23
40
|
export interface PutEmailIdentityMailFromAttributesRequest {
|
|
24
41
|
EmailIdentity: string | undefined;
|
|
@@ -237,10 +237,13 @@ export declare var MultiRegionEndpoint$: StaticStructureSchema;
|
|
|
237
237
|
export declare var OverallVolume$: StaticStructureSchema;
|
|
238
238
|
export declare var PinpointDestination$: StaticStructureSchema;
|
|
239
239
|
export declare var PlacementStatistics$: StaticStructureSchema;
|
|
240
|
+
export declare var PricingAttributes$: StaticStructureSchema;
|
|
240
241
|
export declare var PutAccountDedicatedIpWarmupAttributesRequest$: StaticStructureSchema;
|
|
241
242
|
export declare var PutAccountDedicatedIpWarmupAttributesResponse$: StaticStructureSchema;
|
|
242
243
|
export declare var PutAccountDetailsRequest$: StaticStructureSchema;
|
|
243
244
|
export declare var PutAccountDetailsResponse$: StaticStructureSchema;
|
|
245
|
+
export declare var PutAccountPricingAttributesRequest$: StaticStructureSchema;
|
|
246
|
+
export declare var PutAccountPricingAttributesResponse$: StaticStructureSchema;
|
|
244
247
|
export declare var PutAccountSendingAttributesRequest$: StaticStructureSchema;
|
|
245
248
|
export declare var PutAccountSendingAttributesResponse$: StaticStructureSchema;
|
|
246
249
|
export declare var PutAccountSuppressionAttributesRequest$: StaticStructureSchema;
|
|
@@ -426,6 +429,7 @@ export declare var ListTenantResources$: StaticOperationSchema;
|
|
|
426
429
|
export declare var ListTenants$: StaticOperationSchema;
|
|
427
430
|
export declare var PutAccountDedicatedIpWarmupAttributes$: StaticOperationSchema;
|
|
428
431
|
export declare var PutAccountDetails$: StaticOperationSchema;
|
|
432
|
+
export declare var PutAccountPricingAttributes$: StaticOperationSchema;
|
|
429
433
|
export declare var PutAccountSendingAttributes$: StaticOperationSchema;
|
|
430
434
|
export declare var PutAccountSuppressionAttributes$: StaticOperationSchema;
|
|
431
435
|
export declare var PutAccountVdmAttributes$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1091.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sesv2",
|
|
6
6
|
"license": "Apache-2.0",
|