@aws-sdk/client-sesv2 3.1123.0 → 3.1124.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 +28 -0
- package/dist-cjs/index.js +180 -23
- package/dist-es/SESv2.js +10 -0
- package/dist-es/commands/AssociateEmailIdentityCertificateCommand.js +4 -0
- package/dist-es/commands/DisassociateEmailIdentityCertificateCommand.js +4 -0
- package/dist-es/commands/ListEmailIdentityCertificatesCommand.js +4 -0
- package/dist-es/commands/UpdateConfigurationSetCommand.js +4 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/models/errors.js +12 -12
- package/dist-es/pagination/ListEmailIdentityCertificatesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +114 -10
- package/dist-types/SESv2.d.ts +35 -0
- package/dist-types/SESv2Client.d.ts +6 -2
- package/dist-types/commands/AssociateEmailIdentityCertificateCommand.d.ts +103 -0
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +8 -0
- package/dist-types/commands/DisassociateEmailIdentityCertificateCommand.d.ts +87 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +8 -0
- package/dist-types/commands/ListEmailIdentityCertificatesCommand.d.ts +99 -0
- package/dist-types/commands/PutConfigurationSetVdmOptionsCommand.d.ts +2 -1
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationSetCommand.d.ts +88 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +26 -0
- package/dist-types/models/errors.d.ts +12 -12
- package/dist-types/models/models_0.d.ts +236 -136
- package/dist-types/models/models_1.d.ts +161 -2
- package/dist-types/pagination/ListEmailIdentityCertificatesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -1
- package/dist-types/ts3.4/SESv2.d.ts +75 -0
- package/dist-types/ts3.4/SESv2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/AssociateEmailIdentityCertificateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DisassociateEmailIdentityCertificateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListEmailIdentityCertificatesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/PutConfigurationSetVdmOptionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PutDedicatedIpInPoolCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpPoolScalingAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDeliverabilityDashboardOptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutEmailIdentityConfigurationSetAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfigurationSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +13 -0
- package/dist-types/ts3.4/models/errors.d.ts +5 -5
- package/dist-types/ts3.4/models/models_0.d.ts +63 -26
- package/dist-types/ts3.4/models/models_1.d.ts +34 -0
- package/dist-types/ts3.4/pagination/ListEmailIdentityCertificatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -185,6 +185,13 @@ see LICENSE for more information.
|
|
|
185
185
|
|
|
186
186
|
## Client Commands (Operations List)
|
|
187
187
|
|
|
188
|
+
<details>
|
|
189
|
+
<summary>
|
|
190
|
+
AssociateEmailIdentityCertificate
|
|
191
|
+
</summary>
|
|
192
|
+
|
|
193
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sesv2/command/AssociateEmailIdentityCertificateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/AssociateEmailIdentityCertificateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/AssociateEmailIdentityCertificateCommandOutput/)
|
|
194
|
+
</details>
|
|
188
195
|
<details>
|
|
189
196
|
<summary>
|
|
190
197
|
BatchGetMetricData
|
|
@@ -397,6 +404,13 @@ DeleteTenantResourceAssociation
|
|
|
397
404
|
</details>
|
|
398
405
|
<details>
|
|
399
406
|
<summary>
|
|
407
|
+
DisassociateEmailIdentityCertificate
|
|
408
|
+
</summary>
|
|
409
|
+
|
|
410
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sesv2/command/DisassociateEmailIdentityCertificateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/DisassociateEmailIdentityCertificateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/DisassociateEmailIdentityCertificateCommandOutput/)
|
|
411
|
+
</details>
|
|
412
|
+
<details>
|
|
413
|
+
<summary>
|
|
400
414
|
GetAccount
|
|
401
415
|
</summary>
|
|
402
416
|
|
|
@@ -628,6 +642,13 @@ ListEmailIdentities
|
|
|
628
642
|
</details>
|
|
629
643
|
<details>
|
|
630
644
|
<summary>
|
|
645
|
+
ListEmailIdentityCertificates
|
|
646
|
+
</summary>
|
|
647
|
+
|
|
648
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sesv2/command/ListEmailIdentityCertificatesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/ListEmailIdentityCertificatesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/ListEmailIdentityCertificatesCommandOutput/)
|
|
649
|
+
</details>
|
|
650
|
+
<details>
|
|
651
|
+
<summary>
|
|
631
652
|
ListEmailTemplates
|
|
632
653
|
</summary>
|
|
633
654
|
|
|
@@ -915,6 +936,13 @@ UntagResource
|
|
|
915
936
|
</details>
|
|
916
937
|
<details>
|
|
917
938
|
<summary>
|
|
939
|
+
UpdateConfigurationSet
|
|
940
|
+
</summary>
|
|
941
|
+
|
|
942
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sesv2/command/UpdateConfigurationSetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/UpdateConfigurationSetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sesv2/Interface/UpdateConfigurationSetCommandOutput/)
|
|
943
|
+
</details>
|
|
944
|
+
<details>
|
|
945
|
+
<summary>
|
|
918
946
|
UpdateConfigurationSetEventDestination
|
|
919
947
|
</summary>
|
|
920
948
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -227,7 +227,7 @@ const commonParams = {
|
|
|
227
227
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
228
228
|
};
|
|
229
229
|
|
|
230
|
-
var version = "3.
|
|
230
|
+
var version = "3.1123.0";
|
|
231
231
|
var packageInfo = {
|
|
232
232
|
version: version};
|
|
233
233
|
|
|
@@ -274,18 +274,6 @@ class BadRequestException extends SESv2ServiceException {
|
|
|
274
274
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
275
275
|
}
|
|
276
276
|
}
|
|
277
|
-
class InternalServiceErrorException extends SESv2ServiceException {
|
|
278
|
-
name = "InternalServiceErrorException";
|
|
279
|
-
$fault = "server";
|
|
280
|
-
constructor(opts) {
|
|
281
|
-
super({
|
|
282
|
-
name: "InternalServiceErrorException",
|
|
283
|
-
$fault: "server",
|
|
284
|
-
...opts,
|
|
285
|
-
});
|
|
286
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
277
|
class NotFoundException extends SESv2ServiceException {
|
|
290
278
|
name = "NotFoundException";
|
|
291
279
|
$fault = "client";
|
|
@@ -310,6 +298,18 @@ class TooManyRequestsException extends SESv2ServiceException {
|
|
|
310
298
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
311
299
|
}
|
|
312
300
|
}
|
|
301
|
+
class InternalServiceErrorException extends SESv2ServiceException {
|
|
302
|
+
name = "InternalServiceErrorException";
|
|
303
|
+
$fault = "server";
|
|
304
|
+
constructor(opts) {
|
|
305
|
+
super({
|
|
306
|
+
name: "InternalServiceErrorException",
|
|
307
|
+
$fault: "server",
|
|
308
|
+
...opts,
|
|
309
|
+
});
|
|
310
|
+
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
313
|
class ConcurrentModificationException extends SESv2ServiceException {
|
|
314
314
|
name = "ConcurrentModificationException";
|
|
315
315
|
$fault = "server";
|
|
@@ -404,6 +404,9 @@ const _AD = "AccountDetails";
|
|
|
404
404
|
const _ADt = "AttributesData";
|
|
405
405
|
const _AE = "AdminEmail";
|
|
406
406
|
const _AEE = "AlreadyExistsException";
|
|
407
|
+
const _AEIC = "AssociateEmailIdentityCertificate";
|
|
408
|
+
const _AEICR = "AssociateEmailIdentityCertificateRequest";
|
|
409
|
+
const _AEICRs = "AssociateEmailIdentityCertificateResponse";
|
|
407
410
|
const _AL = "AttachmentList";
|
|
408
411
|
const _AO = "ArchivingOptions";
|
|
409
412
|
const _AS = "AccountStatus";
|
|
@@ -439,7 +442,8 @@ const _BST = "BounceSubType";
|
|
|
439
442
|
const _BT = "BounceType";
|
|
440
443
|
const _Bo = "Bounce";
|
|
441
444
|
const _C = "Complaint";
|
|
442
|
-
const _CA = "
|
|
445
|
+
const _CA = "CertificateArn";
|
|
446
|
+
const _CAc = "CcAddresses";
|
|
443
447
|
const _CC = "CreateContact";
|
|
444
448
|
const _CCL = "CreateContactList";
|
|
445
449
|
const _CCLR = "CreateContactListRequest";
|
|
@@ -477,9 +481,10 @@ const _CEJRa = "CancelExportJobResponse";
|
|
|
477
481
|
const _CEJRr = "CreateExportJobRequest";
|
|
478
482
|
const _CEJRre = "CreateExportJobResponse";
|
|
479
483
|
const _CEJr = "CreateExportJob";
|
|
480
|
-
const _CET = "
|
|
484
|
+
const _CET = "CertificateExpiryTime";
|
|
481
485
|
const _CETR = "CreateEmailTemplateRequest";
|
|
482
486
|
const _CETRr = "CreateEmailTemplateResponse";
|
|
487
|
+
const _CETr = "CreateEmailTemplate";
|
|
483
488
|
const _CFT = "ComplaintFeedbackType";
|
|
484
489
|
const _CI = "ContentId";
|
|
485
490
|
const _CIJ = "CreateImportJob";
|
|
@@ -527,6 +532,7 @@ const _CWD = "CloudWatchDestination";
|
|
|
527
532
|
const _CWDC = "CloudWatchDimensionConfiguration";
|
|
528
533
|
const _CWDCl = "CloudWatchDimensionConfigurations";
|
|
529
534
|
const _Ca = "Cause";
|
|
535
|
+
const _Ce = "Certificates";
|
|
530
536
|
const _Ch = "Charset";
|
|
531
537
|
const _Co = "Contact";
|
|
532
538
|
const _Cod = "Code";
|
|
@@ -564,6 +570,9 @@ const _DDTOo = "DomainDeliverabilityTrackingOptions";
|
|
|
564
570
|
const _DDV = "DefaultDimensionValue";
|
|
565
571
|
const _DE = "DashboardEnabled";
|
|
566
572
|
const _DEI = "DeleteEmailIdentity";
|
|
573
|
+
const _DEIC = "DisassociateEmailIdentityCertificate";
|
|
574
|
+
const _DEICR = "DisassociateEmailIdentityCertificateRequest";
|
|
575
|
+
const _DEICRi = "DisassociateEmailIdentityCertificateResponse";
|
|
567
576
|
const _DEIP = "DeleteEmailIdentityPolicy";
|
|
568
577
|
const _DEIPR = "DeleteEmailIdentityPolicyRequest";
|
|
569
578
|
const _DEIPRe = "DeleteEmailIdentityPolicyResponse";
|
|
@@ -600,8 +609,10 @@ const _DSD = "DeleteSuppressedDestination";
|
|
|
600
609
|
const _DSDR = "DeleteSuppressedDestinationRequest";
|
|
601
610
|
const _DSDRe = "DeleteSuppressedDestinationResponse";
|
|
602
611
|
const _DSPK = "DomainSigningPrivateKey";
|
|
603
|
-
const _DSS = "
|
|
612
|
+
const _DSS = "DefaultSigningScheme";
|
|
604
613
|
const _DSSe = "DefaultSubscriptionStatus";
|
|
614
|
+
const _DSSo = "DomainSigningSelector";
|
|
615
|
+
const _DSe = "DefaultScheme";
|
|
605
616
|
const _DT = "DkimTokens";
|
|
606
617
|
const _DTR = "DeleteTenantRequest";
|
|
607
618
|
const _DTRA = "DeleteTenantResourceAssociation";
|
|
@@ -768,6 +779,8 @@ const _HVS = "HasValidSyntax";
|
|
|
768
779
|
const _He = "Headers";
|
|
769
780
|
const _I = "Id";
|
|
770
781
|
const _IC = "InboxCount";
|
|
782
|
+
const _ICL = "IdentityCertificateList";
|
|
783
|
+
const _ICd = "IdentityCertificate";
|
|
771
784
|
const _ID = "ImportDestination";
|
|
772
785
|
const _IDS = "ImportDataSource";
|
|
773
786
|
const _IDT = "ImportDestinationType";
|
|
@@ -831,6 +844,9 @@ const _LDTRRi = "ListDeliverabilityTestReportsResponse";
|
|
|
831
844
|
const _LEE = "LimitExceededException";
|
|
832
845
|
const _LEEa = "LastEngagementEvent";
|
|
833
846
|
const _LEI = "ListEmailIdentities";
|
|
847
|
+
const _LEIC = "ListEmailIdentityCertificates";
|
|
848
|
+
const _LEICR = "ListEmailIdentityCertificatesRequest";
|
|
849
|
+
const _LEICRi = "ListEmailIdentityCertificatesResponse";
|
|
834
850
|
const _LEIR = "ListEmailIdentitiesRequest";
|
|
835
851
|
const _LEIRi = "ListEmailIdentitiesResponse";
|
|
836
852
|
const _LEJ = "ListExportJobs";
|
|
@@ -900,6 +916,7 @@ const _MR = "MessageRejected";
|
|
|
900
916
|
const _MRE = "MultiRegionEndpoints";
|
|
901
917
|
const _MREu = "MultiRegionEndpoint";
|
|
902
918
|
const _MRa = "MaxResults";
|
|
919
|
+
const _MSO = "MessageSecurityOptions";
|
|
903
920
|
const _MSR = "MaxSendRate";
|
|
904
921
|
const _MT = "MailType";
|
|
905
922
|
const _MTL = "MessageTagList";
|
|
@@ -1079,6 +1096,7 @@ const _SER = "SendEmailRequest";
|
|
|
1079
1096
|
const _SERe = "SendEmailResponse";
|
|
1080
1097
|
const _SEe = "SendingEnabled";
|
|
1081
1098
|
const _SEen = "SendEmail";
|
|
1099
|
+
const _SF = "SignatureFormat";
|
|
1082
1100
|
const _SHZ = "SigningHostedZone";
|
|
1083
1101
|
const _SI = "SendingIps";
|
|
1084
1102
|
const _SLD = "SuppressionListDestination";
|
|
@@ -1101,6 +1119,9 @@ const _SRt = "StatusRecord";
|
|
|
1101
1119
|
const _SS = "SendingStatus";
|
|
1102
1120
|
const _SSA = "SendingStatusAggregate";
|
|
1103
1121
|
const _SSD = "SubscriptionStartDate";
|
|
1122
|
+
const _SSS = "SmimeSigningScheme";
|
|
1123
|
+
const _SSi = "SigningScheme";
|
|
1124
|
+
const _SSm = "SmimeScheme";
|
|
1104
1125
|
const _SSu = "SuppressionScope";
|
|
1105
1126
|
const _SSub = "SubscriptionStatus";
|
|
1106
1127
|
const _SU = "S3Url";
|
|
@@ -1166,9 +1187,12 @@ const _UCLR = "UpdateContactListRequest";
|
|
|
1166
1187
|
const _UCLRp = "UpdateContactListResponse";
|
|
1167
1188
|
const _UCR = "UpdateContactRequest";
|
|
1168
1189
|
const _UCRp = "UpdateContactResponse";
|
|
1190
|
+
const _UCS = "UpdateConfigurationSet";
|
|
1169
1191
|
const _UCSED = "UpdateConfigurationSetEventDestination";
|
|
1170
1192
|
const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
|
|
1171
1193
|
const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
|
|
1194
|
+
const _UCSR = "UpdateConfigurationSetRequest";
|
|
1195
|
+
const _UCSRp = "UpdateConfigurationSetResponse";
|
|
1172
1196
|
const _UCVET = "UpdateCustomVerificationEmailTemplate";
|
|
1173
1197
|
const _UCVETR = "UpdateCustomVerificationEmailTemplateRequest";
|
|
1174
1198
|
const _UCVETRp = "UpdateCustomVerificationEmailTemplateResponse";
|
|
@@ -1313,6 +1337,16 @@ var ArchivingOptions$ = [3, n0, _AO,
|
|
|
1313
1337
|
[_AA],
|
|
1314
1338
|
[0]
|
|
1315
1339
|
];
|
|
1340
|
+
var AssociateEmailIdentityCertificateRequest$ = [3, n0, _AEICR,
|
|
1341
|
+
0,
|
|
1342
|
+
[_EI, _CA, _FA],
|
|
1343
|
+
[0, 0, 0], 2
|
|
1344
|
+
];
|
|
1345
|
+
var AssociateEmailIdentityCertificateResponse$ = [3, n0, _AEICRs,
|
|
1346
|
+
0,
|
|
1347
|
+
[],
|
|
1348
|
+
[]
|
|
1349
|
+
];
|
|
1316
1350
|
var Attachment$ = [3, n0, _A,
|
|
1317
1351
|
0,
|
|
1318
1352
|
[_RC, _FN, _CD, _CDo, _CI, _CTE, _CT],
|
|
@@ -1425,8 +1459,8 @@ var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
|
|
|
1425
1459
|
];
|
|
1426
1460
|
var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
|
|
1427
1461
|
0,
|
|
1428
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO],
|
|
1429
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$], 1
|
|
1462
|
+
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO, _MSO],
|
|
1463
|
+
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$, () => MessageSecurityOptions$], 1
|
|
1430
1464
|
];
|
|
1431
1465
|
var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
|
|
1432
1466
|
0,
|
|
@@ -1593,6 +1627,11 @@ var DedicatedIpPool$ = [3, n0, _DIPe,
|
|
|
1593
1627
|
[_PN, _SM],
|
|
1594
1628
|
[0, 0], 2
|
|
1595
1629
|
];
|
|
1630
|
+
var DefaultSigningScheme$ = [3, n0, _DSS,
|
|
1631
|
+
0,
|
|
1632
|
+
[],
|
|
1633
|
+
[]
|
|
1634
|
+
];
|
|
1596
1635
|
var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
|
|
1597
1636
|
0,
|
|
1598
1637
|
[_CSN, _EDN],
|
|
@@ -1735,7 +1774,7 @@ var DeliveryOptions$ = [3, n0, _DO,
|
|
|
1735
1774
|
];
|
|
1736
1775
|
var Destination$ = [3, n0, _Des,
|
|
1737
1776
|
0,
|
|
1738
|
-
[_TAo,
|
|
1777
|
+
[_TAo, _CAc, _BA],
|
|
1739
1778
|
[64 | 0, 64 | 0, 64 | 0]
|
|
1740
1779
|
];
|
|
1741
1780
|
var Details$ = [3, n0, _Det,
|
|
@@ -1743,6 +1782,16 @@ var Details$ = [3, n0, _Det,
|
|
|
1743
1782
|
[_RDo],
|
|
1744
1783
|
[() => RoutesDetails], 1
|
|
1745
1784
|
];
|
|
1785
|
+
var DisassociateEmailIdentityCertificateRequest$ = [3, n0, _DEICR,
|
|
1786
|
+
0,
|
|
1787
|
+
[_EI, _FA],
|
|
1788
|
+
[0, 0], 1
|
|
1789
|
+
];
|
|
1790
|
+
var DisassociateEmailIdentityCertificateResponse$ = [3, n0, _DEICRi,
|
|
1791
|
+
0,
|
|
1792
|
+
[],
|
|
1793
|
+
[]
|
|
1794
|
+
];
|
|
1746
1795
|
var DkimAttributes$ = [3, n0, _DA,
|
|
1747
1796
|
0,
|
|
1748
1797
|
[_SE, _S, _Tok, _SHZ, _SAO, _NSKL, _CSKL, _LKGT],
|
|
@@ -1750,7 +1799,7 @@ var DkimAttributes$ = [3, n0, _DA,
|
|
|
1750
1799
|
];
|
|
1751
1800
|
var DkimSigningAttributes$ = [3, n0, _DSA,
|
|
1752
1801
|
0,
|
|
1753
|
-
[
|
|
1802
|
+
[_DSSo, _DSPK, _NSKL, _DSAO],
|
|
1754
1803
|
[0, [() => PrivateKey, 0], 0, 0]
|
|
1755
1804
|
];
|
|
1756
1805
|
var DomainDeliverabilityCampaign$ = [3, n0, _DDC,
|
|
@@ -1885,8 +1934,8 @@ var GetConfigurationSetRequest$ = [3, n0, _GCSR,
|
|
|
1885
1934
|
];
|
|
1886
1935
|
var GetConfigurationSetResponse$ = [3, n0, _GCSRe,
|
|
1887
1936
|
0,
|
|
1888
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO],
|
|
1889
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$]
|
|
1937
|
+
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO, _MSO],
|
|
1938
|
+
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$, () => MessageSecurityOptions$]
|
|
1890
1939
|
];
|
|
1891
1940
|
var GetContactListRequest$ = [3, n0, _GCLR,
|
|
1892
1941
|
0,
|
|
@@ -2108,6 +2157,11 @@ var GuardianOptions$ = [3, n0, _GO,
|
|
|
2108
2157
|
[_OSD],
|
|
2109
2158
|
[0]
|
|
2110
2159
|
];
|
|
2160
|
+
var IdentityCertificate$ = [3, n0, _ICd,
|
|
2161
|
+
0,
|
|
2162
|
+
[_FA, _S, _CA, _CET],
|
|
2163
|
+
[0, 0, 0, 4]
|
|
2164
|
+
];
|
|
2111
2165
|
var IdentityInfo$ = [3, n0, _II,
|
|
2112
2166
|
0,
|
|
2113
2167
|
[_IT, _INd, _SEe, _VSe],
|
|
@@ -2233,6 +2287,16 @@ var ListEmailIdentitiesResponse$ = [3, n0, _LEIRi,
|
|
|
2233
2287
|
[_EIma, _NT],
|
|
2234
2288
|
[() => IdentityInfoList, 0]
|
|
2235
2289
|
];
|
|
2290
|
+
var ListEmailIdentityCertificatesRequest$ = [3, n0, _LEICR,
|
|
2291
|
+
0,
|
|
2292
|
+
[_EI, _NT, _PS],
|
|
2293
|
+
[0, 0, 1], 1
|
|
2294
|
+
];
|
|
2295
|
+
var ListEmailIdentityCertificatesResponse$ = [3, n0, _LEICRi,
|
|
2296
|
+
0,
|
|
2297
|
+
[_Ce, _NT],
|
|
2298
|
+
[() => IdentityCertificateList, 0]
|
|
2299
|
+
];
|
|
2236
2300
|
var ListEmailTemplatesRequest$ = [3, n0, _LETR,
|
|
2237
2301
|
0,
|
|
2238
2302
|
[_NT, _PS],
|
|
@@ -2378,6 +2442,11 @@ var MessageInsightsFilters$ = [3, n0, _MIF,
|
|
|
2378
2442
|
[_FEA, _Des, _Su, _Is, _LDE, _LEEa],
|
|
2379
2443
|
[[() => EmailAddressFilterList, 0], [() => EmailAddressFilterList, 0], [() => EmailSubjectFilterList, 0], 64 | 0, 64 | 0, 64 | 0]
|
|
2380
2444
|
];
|
|
2445
|
+
var MessageSecurityOptions$ = [3, n0, _MSO,
|
|
2446
|
+
0,
|
|
2447
|
+
[_SSi],
|
|
2448
|
+
[() => SigningScheme$]
|
|
2449
|
+
];
|
|
2381
2450
|
var MessageTag$ = [3, n0, _MTe,
|
|
2382
2451
|
0,
|
|
2383
2452
|
[_Na, _V],
|
|
@@ -2753,6 +2822,11 @@ var SendQuota$ = [3, n0, _SQ,
|
|
|
2753
2822
|
[_MHS, _MSR, _SLH],
|
|
2754
2823
|
[1, 1, 1]
|
|
2755
2824
|
];
|
|
2825
|
+
var SmimeSigningScheme$ = [3, n0, _SSS,
|
|
2826
|
+
0,
|
|
2827
|
+
[_SF],
|
|
2828
|
+
[0]
|
|
2829
|
+
];
|
|
2756
2830
|
var SnsDestination$ = [3, n0, _SDn,
|
|
2757
2831
|
0,
|
|
2758
2832
|
[_TAop],
|
|
@@ -2913,6 +2987,16 @@ var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
|
|
|
2913
2987
|
[],
|
|
2914
2988
|
[]
|
|
2915
2989
|
];
|
|
2990
|
+
var UpdateConfigurationSetRequest$ = [3, n0, _UCSR,
|
|
2991
|
+
0,
|
|
2992
|
+
[_CSN, _MSO],
|
|
2993
|
+
[0, () => MessageSecurityOptions$], 1
|
|
2994
|
+
];
|
|
2995
|
+
var UpdateConfigurationSetResponse$ = [3, n0, _UCSRp,
|
|
2996
|
+
0,
|
|
2997
|
+
[],
|
|
2998
|
+
[]
|
|
2999
|
+
];
|
|
2916
3000
|
var UpdateContactListRequest$ = [3, n0, _UCLR,
|
|
2917
3001
|
0,
|
|
2918
3002
|
[_CLN, _To, _De],
|
|
@@ -3070,6 +3154,9 @@ var ExportJobSummaryList = [1, n0, _EJSL,
|
|
|
3070
3154
|
var ExportMetrics = [1, n0, _EMxp,
|
|
3071
3155
|
0, () => ExportMetric$
|
|
3072
3156
|
];
|
|
3157
|
+
var IdentityCertificateList = [1, n0, _ICL,
|
|
3158
|
+
0, () => IdentityCertificate$
|
|
3159
|
+
];
|
|
3073
3160
|
var IdentityInfoList = [1, n0, _IIL,
|
|
3074
3161
|
0, () => IdentityInfo$
|
|
3075
3162
|
];
|
|
@@ -3139,6 +3226,14 @@ var Topics = [1, n0, _To,
|
|
|
3139
3226
|
var BlacklistReport = [2, n0, _BR,
|
|
3140
3227
|
0, 0, () => BlacklistEntries
|
|
3141
3228
|
];
|
|
3229
|
+
var SigningScheme$ = [4, n0, _SSi,
|
|
3230
|
+
0,
|
|
3231
|
+
[_DSe, _SSm],
|
|
3232
|
+
[() => DefaultSigningScheme$, () => SmimeSigningScheme$]
|
|
3233
|
+
];
|
|
3234
|
+
var AssociateEmailIdentityCertificate$ = [9, n0, _AEIC,
|
|
3235
|
+
{ [_h]: ["POST", "/v2/email/identity/certificates", 200] }, () => AssociateEmailIdentityCertificateRequest$, () => AssociateEmailIdentityCertificateResponse$
|
|
3236
|
+
];
|
|
3142
3237
|
var BatchGetMetricData$ = [9, n0, _BGMD,
|
|
3143
3238
|
{ [_h]: ["POST", "/v2/email/metrics/batch", 200] }, () => BatchGetMetricDataRequest$, () => BatchGetMetricDataResponse$
|
|
3144
3239
|
];
|
|
@@ -3172,7 +3267,7 @@ var CreateEmailIdentity$ = [9, n0, _CEI,
|
|
|
3172
3267
|
var CreateEmailIdentityPolicy$ = [9, n0, _CEIP,
|
|
3173
3268
|
{ [_h]: ["POST", "/v2/email/identities/{EmailIdentity}/policies/{PolicyName}", 200] }, () => CreateEmailIdentityPolicyRequest$, () => CreateEmailIdentityPolicyResponse$
|
|
3174
3269
|
];
|
|
3175
|
-
var CreateEmailTemplate$ = [9, n0,
|
|
3270
|
+
var CreateEmailTemplate$ = [9, n0, _CETr,
|
|
3176
3271
|
{ [_h]: ["POST", "/v2/email/templates", 200] }, () => CreateEmailTemplateRequest$, () => CreateEmailTemplateResponse$
|
|
3177
3272
|
];
|
|
3178
3273
|
var CreateExportJob$ = [9, n0, _CEJr,
|
|
@@ -3229,6 +3324,9 @@ var DeleteTenant$ = [9, n0, _DTe,
|
|
|
3229
3324
|
var DeleteTenantResourceAssociation$ = [9, n0, _DTRA,
|
|
3230
3325
|
{ [_h]: ["POST", "/v2/email/tenants/resources/delete", 200] }, () => DeleteTenantResourceAssociationRequest$, () => DeleteTenantResourceAssociationResponse$
|
|
3231
3326
|
];
|
|
3327
|
+
var DisassociateEmailIdentityCertificate$ = [9, n0, _DEIC,
|
|
3328
|
+
{ [_h]: ["POST", "/v2/email/identity/certificates/delete", 200] }, () => DisassociateEmailIdentityCertificateRequest$, () => DisassociateEmailIdentityCertificateResponse$
|
|
3329
|
+
];
|
|
3232
3330
|
var GetAccount$ = [9, n0, _GAe,
|
|
3233
3331
|
{ [_h]: ["GET", "/v2/email/account", 200] }, () => GetAccountRequest$, () => GetAccountResponse$
|
|
3234
3332
|
];
|
|
@@ -3328,6 +3426,9 @@ var ListDomainDeliverabilityCampaigns$ = [9, n0, _LDDC,
|
|
|
3328
3426
|
var ListEmailIdentities$ = [9, n0, _LEI,
|
|
3329
3427
|
{ [_h]: ["GET", "/v2/email/identities", 200] }, () => ListEmailIdentitiesRequest$, () => ListEmailIdentitiesResponse$
|
|
3330
3428
|
];
|
|
3429
|
+
var ListEmailIdentityCertificates$ = [9, n0, _LEIC,
|
|
3430
|
+
{ [_h]: ["POST", "/v2/email/identity/certificates/list", 200] }, () => ListEmailIdentityCertificatesRequest$, () => ListEmailIdentityCertificatesResponse$
|
|
3431
|
+
];
|
|
3331
3432
|
var ListEmailTemplates$ = [9, n0, _LET,
|
|
3332
3433
|
{ [_h]: ["GET", "/v2/email/templates", 200] }, () => ListEmailTemplatesRequest$, () => ListEmailTemplatesResponse$
|
|
3333
3434
|
];
|
|
@@ -3451,6 +3552,9 @@ var TestRenderEmailTemplate$ = [9, n0, _TRET,
|
|
|
3451
3552
|
var UntagResource$ = [9, n0, _UR,
|
|
3452
3553
|
{ [_h]: ["DELETE", "/v2/email/tags", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
3453
3554
|
];
|
|
3555
|
+
var UpdateConfigurationSet$ = [9, n0, _UCS,
|
|
3556
|
+
{ [_h]: ["POST", "/v2/email/update-configuration-sets", 200] }, () => UpdateConfigurationSetRequest$, () => UpdateConfigurationSetResponse$
|
|
3557
|
+
];
|
|
3454
3558
|
var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
|
|
3455
3559
|
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
|
|
3456
3560
|
];
|
|
@@ -3637,6 +3741,9 @@ const _ep1 = {
|
|
|
3637
3741
|
};
|
|
3638
3742
|
const _mw0 = (Command, cs, config, o) => [];
|
|
3639
3743
|
|
|
3744
|
+
class AssociateEmailIdentityCertificateCommand extends command(_ep0, _mw0, "AssociateEmailIdentityCertificate", AssociateEmailIdentityCertificate$) {
|
|
3745
|
+
}
|
|
3746
|
+
|
|
3640
3747
|
class BatchGetMetricDataCommand extends command(_ep0, _mw0, "BatchGetMetricData", BatchGetMetricData$) {
|
|
3641
3748
|
}
|
|
3642
3749
|
|
|
@@ -3727,6 +3834,9 @@ class DeleteTenantCommand extends command(_ep0, _mw0, "DeleteTenant", DeleteTena
|
|
|
3727
3834
|
class DeleteTenantResourceAssociationCommand extends command(_ep0, _mw0, "DeleteTenantResourceAssociation", DeleteTenantResourceAssociation$) {
|
|
3728
3835
|
}
|
|
3729
3836
|
|
|
3837
|
+
class DisassociateEmailIdentityCertificateCommand extends command(_ep0, _mw0, "DisassociateEmailIdentityCertificate", DisassociateEmailIdentityCertificate$) {
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3730
3840
|
class GetAccountCommand extends command(_ep0, _mw0, "GetAccount", GetAccount$) {
|
|
3731
3841
|
}
|
|
3732
3842
|
|
|
@@ -3826,6 +3936,9 @@ class ListDomainDeliverabilityCampaignsCommand extends command(_ep0, _mw0, "List
|
|
|
3826
3936
|
class ListEmailIdentitiesCommand extends command(_ep0, _mw0, "ListEmailIdentities", ListEmailIdentities$) {
|
|
3827
3937
|
}
|
|
3828
3938
|
|
|
3939
|
+
class ListEmailIdentityCertificatesCommand extends command(_ep0, _mw0, "ListEmailIdentityCertificates", ListEmailIdentityCertificates$) {
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3829
3942
|
class ListEmailTemplatesCommand extends command(_ep0, _mw0, "ListEmailTemplates", ListEmailTemplates$) {
|
|
3830
3943
|
}
|
|
3831
3944
|
|
|
@@ -3949,6 +4062,9 @@ class TestRenderEmailTemplateCommand extends command(_ep0, _mw0, "TestRenderEmai
|
|
|
3949
4062
|
class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
|
|
3950
4063
|
}
|
|
3951
4064
|
|
|
4065
|
+
class UpdateConfigurationSetCommand extends command(_ep0, _mw0, "UpdateConfigurationSet", UpdateConfigurationSet$) {
|
|
4066
|
+
}
|
|
4067
|
+
|
|
3952
4068
|
class UpdateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "UpdateConfigurationSetEventDestination", UpdateConfigurationSetEventDestination$) {
|
|
3953
4069
|
}
|
|
3954
4070
|
|
|
@@ -3991,6 +4107,8 @@ const paginateListDomainDeliverabilityCampaigns = createPaginator(SESv2Client, L
|
|
|
3991
4107
|
|
|
3992
4108
|
const paginateListEmailIdentities = createPaginator(SESv2Client, ListEmailIdentitiesCommand, "NextToken", "NextToken", "PageSize");
|
|
3993
4109
|
|
|
4110
|
+
const paginateListEmailIdentityCertificates = createPaginator(SESv2Client, ListEmailIdentityCertificatesCommand, "NextToken", "NextToken", "PageSize");
|
|
4111
|
+
|
|
3994
4112
|
const paginateListEmailTemplates = createPaginator(SESv2Client, ListEmailTemplatesCommand, "NextToken", "NextToken", "PageSize");
|
|
3995
4113
|
|
|
3996
4114
|
const paginateListExportJobs = createPaginator(SESv2Client, ListExportJobsCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -4012,6 +4130,7 @@ const paginateListTenantResources = createPaginator(SESv2Client, ListTenantResou
|
|
|
4012
4130
|
const paginateListTenants = createPaginator(SESv2Client, ListTenantsCommand, "NextToken", "NextToken", "PageSize");
|
|
4013
4131
|
|
|
4014
4132
|
const commands = {
|
|
4133
|
+
AssociateEmailIdentityCertificateCommand,
|
|
4015
4134
|
BatchGetMetricDataCommand,
|
|
4016
4135
|
CancelExportJobCommand,
|
|
4017
4136
|
CreateConfigurationSetCommand,
|
|
@@ -4042,6 +4161,7 @@ const commands = {
|
|
|
4042
4161
|
DeleteSuppressedDestinationCommand,
|
|
4043
4162
|
DeleteTenantCommand,
|
|
4044
4163
|
DeleteTenantResourceAssociationCommand,
|
|
4164
|
+
DisassociateEmailIdentityCertificateCommand,
|
|
4045
4165
|
GetAccountCommand,
|
|
4046
4166
|
GetBlacklistReportsCommand,
|
|
4047
4167
|
GetConfigurationSetCommand,
|
|
@@ -4075,6 +4195,7 @@ const commands = {
|
|
|
4075
4195
|
ListDeliverabilityTestReportsCommand,
|
|
4076
4196
|
ListDomainDeliverabilityCampaignsCommand,
|
|
4077
4197
|
ListEmailIdentitiesCommand,
|
|
4198
|
+
ListEmailIdentityCertificatesCommand,
|
|
4078
4199
|
ListEmailTemplatesCommand,
|
|
4079
4200
|
ListExportJobsCommand,
|
|
4080
4201
|
ListImportJobsCommand,
|
|
@@ -4116,6 +4237,7 @@ const commands = {
|
|
|
4116
4237
|
TagResourceCommand,
|
|
4117
4238
|
TestRenderEmailTemplateCommand,
|
|
4118
4239
|
UntagResourceCommand,
|
|
4240
|
+
UpdateConfigurationSetCommand,
|
|
4119
4241
|
UpdateConfigurationSetEventDestinationCommand,
|
|
4120
4242
|
UpdateContactCommand,
|
|
4121
4243
|
UpdateContactListCommand,
|
|
@@ -4135,6 +4257,7 @@ const paginators = {
|
|
|
4135
4257
|
paginateListDeliverabilityTestReports,
|
|
4136
4258
|
paginateListDomainDeliverabilityCampaigns,
|
|
4137
4259
|
paginateListEmailIdentities,
|
|
4260
|
+
paginateListEmailIdentityCertificates,
|
|
4138
4261
|
paginateListEmailTemplates,
|
|
4139
4262
|
paginateListExportJobs,
|
|
4140
4263
|
paginateListImportJobs,
|
|
@@ -4243,6 +4366,9 @@ const TlsPolicy = {
|
|
|
4243
4366
|
OPTIONAL: "OPTIONAL",
|
|
4244
4367
|
REQUIRE: "REQUIRE",
|
|
4245
4368
|
};
|
|
4369
|
+
const SignatureFormat = {
|
|
4370
|
+
DETACHED: "DETACHED",
|
|
4371
|
+
};
|
|
4246
4372
|
const SuppressionListReason = {
|
|
4247
4373
|
BOUNCE: "BOUNCE",
|
|
4248
4374
|
COMPLAINT: "COMPLAINT",
|
|
@@ -4429,6 +4555,13 @@ const RecommendationImpact = {
|
|
|
4429
4555
|
HIGH: "HIGH",
|
|
4430
4556
|
LOW: "LOW",
|
|
4431
4557
|
};
|
|
4558
|
+
const IdentityCertificateStatus = {
|
|
4559
|
+
ACTIVE: "ACTIVE",
|
|
4560
|
+
DEPROVISIONING: "DEPROVISIONING",
|
|
4561
|
+
FAILED: "FAILED",
|
|
4562
|
+
INACTIVE: "INACTIVE",
|
|
4563
|
+
PROVISIONING: "PROVISIONING",
|
|
4564
|
+
};
|
|
4432
4565
|
const ImportDestinationType = {
|
|
4433
4566
|
CONTACT_LIST: "CONTACT_LIST",
|
|
4434
4567
|
SUPPRESSION_LIST: "SUPPRESSION_LIST",
|
|
@@ -4474,6 +4607,10 @@ exports.AccountSuspendedException$ = AccountSuspendedException$;
|
|
|
4474
4607
|
exports.AlreadyExistsException = AlreadyExistsException;
|
|
4475
4608
|
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
4476
4609
|
exports.ArchivingOptions$ = ArchivingOptions$;
|
|
4610
|
+
exports.AssociateEmailIdentityCertificate$ = AssociateEmailIdentityCertificate$;
|
|
4611
|
+
exports.AssociateEmailIdentityCertificateCommand = AssociateEmailIdentityCertificateCommand;
|
|
4612
|
+
exports.AssociateEmailIdentityCertificateRequest$ = AssociateEmailIdentityCertificateRequest$;
|
|
4613
|
+
exports.AssociateEmailIdentityCertificateResponse$ = AssociateEmailIdentityCertificateResponse$;
|
|
4477
4614
|
exports.Attachment$ = Attachment$;
|
|
4478
4615
|
exports.AttachmentContentDisposition = AttachmentContentDisposition;
|
|
4479
4616
|
exports.AttachmentContentTransferEncoding = AttachmentContentTransferEncoding;
|
|
@@ -4578,6 +4715,7 @@ exports.DashboardOptions$ = DashboardOptions$;
|
|
|
4578
4715
|
exports.DataFormat = DataFormat;
|
|
4579
4716
|
exports.DedicatedIp$ = DedicatedIp$;
|
|
4580
4717
|
exports.DedicatedIpPool$ = DedicatedIpPool$;
|
|
4718
|
+
exports.DefaultSigningScheme$ = DefaultSigningScheme$;
|
|
4581
4719
|
exports.DeleteConfigurationSet$ = DeleteConfigurationSet$;
|
|
4582
4720
|
exports.DeleteConfigurationSetCommand = DeleteConfigurationSetCommand;
|
|
4583
4721
|
exports.DeleteConfigurationSetEventDestination$ = DeleteConfigurationSetEventDestination$;
|
|
@@ -4638,6 +4776,10 @@ exports.DeliveryOptions$ = DeliveryOptions$;
|
|
|
4638
4776
|
exports.Destination$ = Destination$;
|
|
4639
4777
|
exports.Details$ = Details$;
|
|
4640
4778
|
exports.DimensionValueSource = DimensionValueSource;
|
|
4779
|
+
exports.DisassociateEmailIdentityCertificate$ = DisassociateEmailIdentityCertificate$;
|
|
4780
|
+
exports.DisassociateEmailIdentityCertificateCommand = DisassociateEmailIdentityCertificateCommand;
|
|
4781
|
+
exports.DisassociateEmailIdentityCertificateRequest$ = DisassociateEmailIdentityCertificateRequest$;
|
|
4782
|
+
exports.DisassociateEmailIdentityCertificateResponse$ = DisassociateEmailIdentityCertificateResponse$;
|
|
4641
4783
|
exports.DkimAttributes$ = DkimAttributes$;
|
|
4642
4784
|
exports.DkimSigningAttributes$ = DkimSigningAttributes$;
|
|
4643
4785
|
exports.DkimSigningAttributesOrigin = DkimSigningAttributesOrigin;
|
|
@@ -4770,6 +4912,8 @@ exports.GetTenantResponse$ = GetTenantResponse$;
|
|
|
4770
4912
|
exports.GuardianAttributes$ = GuardianAttributes$;
|
|
4771
4913
|
exports.GuardianOptions$ = GuardianOptions$;
|
|
4772
4914
|
exports.HttpsPolicy = HttpsPolicy;
|
|
4915
|
+
exports.IdentityCertificate$ = IdentityCertificate$;
|
|
4916
|
+
exports.IdentityCertificateStatus = IdentityCertificateStatus;
|
|
4773
4917
|
exports.IdentityInfo$ = IdentityInfo$;
|
|
4774
4918
|
exports.IdentityType = IdentityType;
|
|
4775
4919
|
exports.ImportDataSource$ = ImportDataSource$;
|
|
@@ -4820,6 +4964,10 @@ exports.ListEmailIdentities$ = ListEmailIdentities$;
|
|
|
4820
4964
|
exports.ListEmailIdentitiesCommand = ListEmailIdentitiesCommand;
|
|
4821
4965
|
exports.ListEmailIdentitiesRequest$ = ListEmailIdentitiesRequest$;
|
|
4822
4966
|
exports.ListEmailIdentitiesResponse$ = ListEmailIdentitiesResponse$;
|
|
4967
|
+
exports.ListEmailIdentityCertificates$ = ListEmailIdentityCertificates$;
|
|
4968
|
+
exports.ListEmailIdentityCertificatesCommand = ListEmailIdentityCertificatesCommand;
|
|
4969
|
+
exports.ListEmailIdentityCertificatesRequest$ = ListEmailIdentityCertificatesRequest$;
|
|
4970
|
+
exports.ListEmailIdentityCertificatesResponse$ = ListEmailIdentityCertificatesResponse$;
|
|
4823
4971
|
exports.ListEmailTemplates$ = ListEmailTemplates$;
|
|
4824
4972
|
exports.ListEmailTemplatesCommand = ListEmailTemplatesCommand;
|
|
4825
4973
|
exports.ListEmailTemplatesRequest$ = ListEmailTemplatesRequest$;
|
|
@@ -4879,6 +5027,7 @@ exports.MessageInsightsDataSource$ = MessageInsightsDataSource$;
|
|
|
4879
5027
|
exports.MessageInsightsFilters$ = MessageInsightsFilters$;
|
|
4880
5028
|
exports.MessageRejected = MessageRejected;
|
|
4881
5029
|
exports.MessageRejected$ = MessageRejected$;
|
|
5030
|
+
exports.MessageSecurityOptions$ = MessageSecurityOptions$;
|
|
4882
5031
|
exports.MessageTag$ = MessageTag$;
|
|
4883
5032
|
exports.Metric = Metric;
|
|
4884
5033
|
exports.MetricAggregation = MetricAggregation;
|
|
@@ -5032,6 +5181,9 @@ exports.SendingOptions$ = SendingOptions$;
|
|
|
5032
5181
|
exports.SendingPausedException = SendingPausedException;
|
|
5033
5182
|
exports.SendingPausedException$ = SendingPausedException$;
|
|
5034
5183
|
exports.SendingStatus = SendingStatus;
|
|
5184
|
+
exports.SignatureFormat = SignatureFormat;
|
|
5185
|
+
exports.SigningScheme$ = SigningScheme$;
|
|
5186
|
+
exports.SmimeSigningScheme$ = SmimeSigningScheme$;
|
|
5035
5187
|
exports.SnsDestination$ = SnsDestination$;
|
|
5036
5188
|
exports.Status = Status;
|
|
5037
5189
|
exports.StatusRecord$ = StatusRecord$;
|
|
@@ -5076,10 +5228,14 @@ exports.UntagResource$ = UntagResource$;
|
|
|
5076
5228
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5077
5229
|
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
5078
5230
|
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
5231
|
+
exports.UpdateConfigurationSet$ = UpdateConfigurationSet$;
|
|
5232
|
+
exports.UpdateConfigurationSetCommand = UpdateConfigurationSetCommand;
|
|
5079
5233
|
exports.UpdateConfigurationSetEventDestination$ = UpdateConfigurationSetEventDestination$;
|
|
5080
5234
|
exports.UpdateConfigurationSetEventDestinationCommand = UpdateConfigurationSetEventDestinationCommand;
|
|
5081
5235
|
exports.UpdateConfigurationSetEventDestinationRequest$ = UpdateConfigurationSetEventDestinationRequest$;
|
|
5082
5236
|
exports.UpdateConfigurationSetEventDestinationResponse$ = UpdateConfigurationSetEventDestinationResponse$;
|
|
5237
|
+
exports.UpdateConfigurationSetRequest$ = UpdateConfigurationSetRequest$;
|
|
5238
|
+
exports.UpdateConfigurationSetResponse$ = UpdateConfigurationSetResponse$;
|
|
5083
5239
|
exports.UpdateContact$ = UpdateContact$;
|
|
5084
5240
|
exports.UpdateContactCommand = UpdateContactCommand;
|
|
5085
5241
|
exports.UpdateContactList$ = UpdateContactList$;
|
|
@@ -5125,6 +5281,7 @@ exports.paginateListDedicatedIpPools = paginateListDedicatedIpPools;
|
|
|
5125
5281
|
exports.paginateListDeliverabilityTestReports = paginateListDeliverabilityTestReports;
|
|
5126
5282
|
exports.paginateListDomainDeliverabilityCampaigns = paginateListDomainDeliverabilityCampaigns;
|
|
5127
5283
|
exports.paginateListEmailIdentities = paginateListEmailIdentities;
|
|
5284
|
+
exports.paginateListEmailIdentityCertificates = paginateListEmailIdentityCertificates;
|
|
5128
5285
|
exports.paginateListEmailTemplates = paginateListEmailTemplates;
|
|
5129
5286
|
exports.paginateListExportJobs = paginateListExportJobs;
|
|
5130
5287
|
exports.paginateListImportJobs = paginateListImportJobs;
|