@aws-sdk/client-sesv2 3.1122.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 +2 -2
package/dist-es/SESv2.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
|
+
import { AssociateEmailIdentityCertificateCommand, } from "./commands/AssociateEmailIdentityCertificateCommand";
|
|
2
3
|
import { BatchGetMetricDataCommand, } from "./commands/BatchGetMetricDataCommand";
|
|
3
4
|
import { CancelExportJobCommand, } from "./commands/CancelExportJobCommand";
|
|
4
5
|
import { CreateConfigurationSetCommand, } from "./commands/CreateConfigurationSetCommand";
|
|
@@ -29,6 +30,7 @@ import { DeleteMultiRegionEndpointCommand, } from "./commands/DeleteMultiRegionE
|
|
|
29
30
|
import { DeleteSuppressedDestinationCommand, } from "./commands/DeleteSuppressedDestinationCommand";
|
|
30
31
|
import { DeleteTenantCommand, } from "./commands/DeleteTenantCommand";
|
|
31
32
|
import { DeleteTenantResourceAssociationCommand, } from "./commands/DeleteTenantResourceAssociationCommand";
|
|
33
|
+
import { DisassociateEmailIdentityCertificateCommand, } from "./commands/DisassociateEmailIdentityCertificateCommand";
|
|
32
34
|
import { GetAccountCommand, } from "./commands/GetAccountCommand";
|
|
33
35
|
import { GetBlacklistReportsCommand, } from "./commands/GetBlacklistReportsCommand";
|
|
34
36
|
import { GetConfigurationSetCommand, } from "./commands/GetConfigurationSetCommand";
|
|
@@ -62,6 +64,7 @@ import { ListDedicatedIpPoolsCommand, } from "./commands/ListDedicatedIpPoolsCom
|
|
|
62
64
|
import { ListDeliverabilityTestReportsCommand, } from "./commands/ListDeliverabilityTestReportsCommand";
|
|
63
65
|
import { ListDomainDeliverabilityCampaignsCommand, } from "./commands/ListDomainDeliverabilityCampaignsCommand";
|
|
64
66
|
import { ListEmailIdentitiesCommand, } from "./commands/ListEmailIdentitiesCommand";
|
|
67
|
+
import { ListEmailIdentityCertificatesCommand, } from "./commands/ListEmailIdentityCertificatesCommand";
|
|
65
68
|
import { ListEmailTemplatesCommand, } from "./commands/ListEmailTemplatesCommand";
|
|
66
69
|
import { ListExportJobsCommand, } from "./commands/ListExportJobsCommand";
|
|
67
70
|
import { ListImportJobsCommand, } from "./commands/ListImportJobsCommand";
|
|
@@ -103,6 +106,7 @@ import { SendEmailCommand } from "./commands/SendEmailCommand";
|
|
|
103
106
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
104
107
|
import { TestRenderEmailTemplateCommand, } from "./commands/TestRenderEmailTemplateCommand";
|
|
105
108
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
109
|
+
import { UpdateConfigurationSetCommand, } from "./commands/UpdateConfigurationSetCommand";
|
|
106
110
|
import { UpdateConfigurationSetEventDestinationCommand, } from "./commands/UpdateConfigurationSetEventDestinationCommand";
|
|
107
111
|
import { UpdateContactCommand, } from "./commands/UpdateContactCommand";
|
|
108
112
|
import { UpdateContactListCommand, } from "./commands/UpdateContactListCommand";
|
|
@@ -120,6 +124,7 @@ import { paginateListDedicatedIpPools } from "./pagination/ListDedicatedIpPoolsP
|
|
|
120
124
|
import { paginateListDeliverabilityTestReports } from "./pagination/ListDeliverabilityTestReportsPaginator";
|
|
121
125
|
import { paginateListDomainDeliverabilityCampaigns } from "./pagination/ListDomainDeliverabilityCampaignsPaginator";
|
|
122
126
|
import { paginateListEmailIdentities } from "./pagination/ListEmailIdentitiesPaginator";
|
|
127
|
+
import { paginateListEmailIdentityCertificates } from "./pagination/ListEmailIdentityCertificatesPaginator";
|
|
123
128
|
import { paginateListEmailTemplates } from "./pagination/ListEmailTemplatesPaginator";
|
|
124
129
|
import { paginateListExportJobs } from "./pagination/ListExportJobsPaginator";
|
|
125
130
|
import { paginateListImportJobs } from "./pagination/ListImportJobsPaginator";
|
|
@@ -132,6 +137,7 @@ import { paginateListTenantResources } from "./pagination/ListTenantResourcesPag
|
|
|
132
137
|
import { paginateListTenants } from "./pagination/ListTenantsPaginator";
|
|
133
138
|
import { SESv2Client } from "./SESv2Client";
|
|
134
139
|
const commands = {
|
|
140
|
+
AssociateEmailIdentityCertificateCommand,
|
|
135
141
|
BatchGetMetricDataCommand,
|
|
136
142
|
CancelExportJobCommand,
|
|
137
143
|
CreateConfigurationSetCommand,
|
|
@@ -162,6 +168,7 @@ const commands = {
|
|
|
162
168
|
DeleteSuppressedDestinationCommand,
|
|
163
169
|
DeleteTenantCommand,
|
|
164
170
|
DeleteTenantResourceAssociationCommand,
|
|
171
|
+
DisassociateEmailIdentityCertificateCommand,
|
|
165
172
|
GetAccountCommand,
|
|
166
173
|
GetBlacklistReportsCommand,
|
|
167
174
|
GetConfigurationSetCommand,
|
|
@@ -195,6 +202,7 @@ const commands = {
|
|
|
195
202
|
ListDeliverabilityTestReportsCommand,
|
|
196
203
|
ListDomainDeliverabilityCampaignsCommand,
|
|
197
204
|
ListEmailIdentitiesCommand,
|
|
205
|
+
ListEmailIdentityCertificatesCommand,
|
|
198
206
|
ListEmailTemplatesCommand,
|
|
199
207
|
ListExportJobsCommand,
|
|
200
208
|
ListImportJobsCommand,
|
|
@@ -236,6 +244,7 @@ const commands = {
|
|
|
236
244
|
TagResourceCommand,
|
|
237
245
|
TestRenderEmailTemplateCommand,
|
|
238
246
|
UntagResourceCommand,
|
|
247
|
+
UpdateConfigurationSetCommand,
|
|
239
248
|
UpdateConfigurationSetEventDestinationCommand,
|
|
240
249
|
UpdateContactCommand,
|
|
241
250
|
UpdateContactListCommand,
|
|
@@ -255,6 +264,7 @@ const paginators = {
|
|
|
255
264
|
paginateListDeliverabilityTestReports,
|
|
256
265
|
paginateListDomainDeliverabilityCampaigns,
|
|
257
266
|
paginateListEmailIdentities,
|
|
267
|
+
paginateListEmailIdentityCertificates,
|
|
258
268
|
paginateListEmailTemplates,
|
|
259
269
|
paginateListExportJobs,
|
|
260
270
|
paginateListImportJobs,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { AssociateEmailIdentityCertificate$ } from "../schemas/schemas_0";
|
|
3
|
+
export class AssociateEmailIdentityCertificateCommand extends command(_ep0, _mw0, "AssociateEmailIdentityCertificate", AssociateEmailIdentityCertificate$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { DisassociateEmailIdentityCertificate$ } from "../schemas/schemas_0";
|
|
3
|
+
export class DisassociateEmailIdentityCertificateCommand extends command(_ep0, _mw0, "DisassociateEmailIdentityCertificate", DisassociateEmailIdentityCertificate$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { ListEmailIdentityCertificates$ } from "../schemas/schemas_0";
|
|
3
|
+
export class ListEmailIdentityCertificatesCommand extends command(_ep0, _mw0, "ListEmailIdentityCertificates", ListEmailIdentityCertificates$) {
|
|
4
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./AssociateEmailIdentityCertificateCommand";
|
|
1
2
|
export * from "./BatchGetMetricDataCommand";
|
|
2
3
|
export * from "./CancelExportJobCommand";
|
|
3
4
|
export * from "./CreateConfigurationSetCommand";
|
|
@@ -28,6 +29,7 @@ export * from "./DeleteMultiRegionEndpointCommand";
|
|
|
28
29
|
export * from "./DeleteSuppressedDestinationCommand";
|
|
29
30
|
export * from "./DeleteTenantCommand";
|
|
30
31
|
export * from "./DeleteTenantResourceAssociationCommand";
|
|
32
|
+
export * from "./DisassociateEmailIdentityCertificateCommand";
|
|
31
33
|
export * from "./GetAccountCommand";
|
|
32
34
|
export * from "./GetBlacklistReportsCommand";
|
|
33
35
|
export * from "./GetConfigurationSetCommand";
|
|
@@ -61,6 +63,7 @@ export * from "./ListDedicatedIpPoolsCommand";
|
|
|
61
63
|
export * from "./ListDeliverabilityTestReportsCommand";
|
|
62
64
|
export * from "./ListDomainDeliverabilityCampaignsCommand";
|
|
63
65
|
export * from "./ListEmailIdentitiesCommand";
|
|
66
|
+
export * from "./ListEmailIdentityCertificatesCommand";
|
|
64
67
|
export * from "./ListEmailTemplatesCommand";
|
|
65
68
|
export * from "./ListExportJobsCommand";
|
|
66
69
|
export * from "./ListImportJobsCommand";
|
|
@@ -102,6 +105,7 @@ export * from "./SendEmailCommand";
|
|
|
102
105
|
export * from "./TagResourceCommand";
|
|
103
106
|
export * from "./TestRenderEmailTemplateCommand";
|
|
104
107
|
export * from "./UntagResourceCommand";
|
|
108
|
+
export * from "./UpdateConfigurationSetCommand";
|
|
105
109
|
export * from "./UpdateConfigurationSetEventDestinationCommand";
|
|
106
110
|
export * from "./UpdateContactCommand";
|
|
107
111
|
export * from "./UpdateContactListCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -91,6 +91,9 @@ export const TlsPolicy = {
|
|
|
91
91
|
OPTIONAL: "OPTIONAL",
|
|
92
92
|
REQUIRE: "REQUIRE",
|
|
93
93
|
};
|
|
94
|
+
export const SignatureFormat = {
|
|
95
|
+
DETACHED: "DETACHED",
|
|
96
|
+
};
|
|
94
97
|
export const SuppressionListReason = {
|
|
95
98
|
BOUNCE: "BOUNCE",
|
|
96
99
|
COMPLAINT: "COMPLAINT",
|
|
@@ -277,6 +280,13 @@ export const RecommendationImpact = {
|
|
|
277
280
|
HIGH: "HIGH",
|
|
278
281
|
LOW: "LOW",
|
|
279
282
|
};
|
|
283
|
+
export const IdentityCertificateStatus = {
|
|
284
|
+
ACTIVE: "ACTIVE",
|
|
285
|
+
DEPROVISIONING: "DEPROVISIONING",
|
|
286
|
+
FAILED: "FAILED",
|
|
287
|
+
INACTIVE: "INACTIVE",
|
|
288
|
+
PROVISIONING: "PROVISIONING",
|
|
289
|
+
};
|
|
280
290
|
export const ImportDestinationType = {
|
|
281
291
|
CONTACT_LIST: "CONTACT_LIST",
|
|
282
292
|
SUPPRESSION_LIST: "SUPPRESSION_LIST",
|
package/dist-es/models/errors.js
CHANGED
|
@@ -35,18 +35,6 @@ export class BadRequestException extends __BaseException {
|
|
|
35
35
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
export class InternalServiceErrorException extends __BaseException {
|
|
39
|
-
name = "InternalServiceErrorException";
|
|
40
|
-
$fault = "server";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "InternalServiceErrorException",
|
|
44
|
-
$fault: "server",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
38
|
export class NotFoundException extends __BaseException {
|
|
51
39
|
name = "NotFoundException";
|
|
52
40
|
$fault = "client";
|
|
@@ -71,6 +59,18 @@ export class TooManyRequestsException extends __BaseException {
|
|
|
71
59
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
72
60
|
}
|
|
73
61
|
}
|
|
62
|
+
export class InternalServiceErrorException extends __BaseException {
|
|
63
|
+
name = "InternalServiceErrorException";
|
|
64
|
+
$fault = "server";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "InternalServiceErrorException",
|
|
68
|
+
$fault: "server",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
74
|
export class ConcurrentModificationException extends __BaseException {
|
|
75
75
|
name = "ConcurrentModificationException";
|
|
76
76
|
$fault = "server";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListEmailIdentityCertificatesCommand, } from "../commands/ListEmailIdentityCertificatesCommand";
|
|
3
|
+
import { SESv2Client } from "../SESv2Client";
|
|
4
|
+
export const paginateListEmailIdentityCertificates = createPaginator(SESv2Client, ListEmailIdentityCertificatesCommand, "NextToken", "NextToken", "PageSize");
|
|
@@ -8,6 +8,7 @@ export * from "./ListDedicatedIpPoolsPaginator";
|
|
|
8
8
|
export * from "./ListDeliverabilityTestReportsPaginator";
|
|
9
9
|
export * from "./ListDomainDeliverabilityCampaignsPaginator";
|
|
10
10
|
export * from "./ListEmailIdentitiesPaginator";
|
|
11
|
+
export * from "./ListEmailIdentityCertificatesPaginator";
|
|
11
12
|
export * from "./ListEmailTemplatesPaginator";
|
|
12
13
|
export * from "./ListExportJobsPaginator";
|
|
13
14
|
export * from "./ListImportJobsPaginator";
|
|
@@ -7,6 +7,9 @@ const _AD = "AccountDetails";
|
|
|
7
7
|
const _ADt = "AttributesData";
|
|
8
8
|
const _AE = "AdminEmail";
|
|
9
9
|
const _AEE = "AlreadyExistsException";
|
|
10
|
+
const _AEIC = "AssociateEmailIdentityCertificate";
|
|
11
|
+
const _AEICR = "AssociateEmailIdentityCertificateRequest";
|
|
12
|
+
const _AEICRs = "AssociateEmailIdentityCertificateResponse";
|
|
10
13
|
const _AL = "AttachmentList";
|
|
11
14
|
const _AO = "ArchivingOptions";
|
|
12
15
|
const _AS = "AccountStatus";
|
|
@@ -42,7 +45,8 @@ const _BST = "BounceSubType";
|
|
|
42
45
|
const _BT = "BounceType";
|
|
43
46
|
const _Bo = "Bounce";
|
|
44
47
|
const _C = "Complaint";
|
|
45
|
-
const _CA = "
|
|
48
|
+
const _CA = "CertificateArn";
|
|
49
|
+
const _CAc = "CcAddresses";
|
|
46
50
|
const _CC = "CreateContact";
|
|
47
51
|
const _CCL = "CreateContactList";
|
|
48
52
|
const _CCLR = "CreateContactListRequest";
|
|
@@ -80,9 +84,10 @@ const _CEJRa = "CancelExportJobResponse";
|
|
|
80
84
|
const _CEJRr = "CreateExportJobRequest";
|
|
81
85
|
const _CEJRre = "CreateExportJobResponse";
|
|
82
86
|
const _CEJr = "CreateExportJob";
|
|
83
|
-
const _CET = "
|
|
87
|
+
const _CET = "CertificateExpiryTime";
|
|
84
88
|
const _CETR = "CreateEmailTemplateRequest";
|
|
85
89
|
const _CETRr = "CreateEmailTemplateResponse";
|
|
90
|
+
const _CETr = "CreateEmailTemplate";
|
|
86
91
|
const _CFT = "ComplaintFeedbackType";
|
|
87
92
|
const _CI = "ContentId";
|
|
88
93
|
const _CIJ = "CreateImportJob";
|
|
@@ -130,6 +135,7 @@ const _CWD = "CloudWatchDestination";
|
|
|
130
135
|
const _CWDC = "CloudWatchDimensionConfiguration";
|
|
131
136
|
const _CWDCl = "CloudWatchDimensionConfigurations";
|
|
132
137
|
const _Ca = "Cause";
|
|
138
|
+
const _Ce = "Certificates";
|
|
133
139
|
const _Ch = "Charset";
|
|
134
140
|
const _Co = "Contact";
|
|
135
141
|
const _Cod = "Code";
|
|
@@ -167,6 +173,9 @@ const _DDTOo = "DomainDeliverabilityTrackingOptions";
|
|
|
167
173
|
const _DDV = "DefaultDimensionValue";
|
|
168
174
|
const _DE = "DashboardEnabled";
|
|
169
175
|
const _DEI = "DeleteEmailIdentity";
|
|
176
|
+
const _DEIC = "DisassociateEmailIdentityCertificate";
|
|
177
|
+
const _DEICR = "DisassociateEmailIdentityCertificateRequest";
|
|
178
|
+
const _DEICRi = "DisassociateEmailIdentityCertificateResponse";
|
|
170
179
|
const _DEIP = "DeleteEmailIdentityPolicy";
|
|
171
180
|
const _DEIPR = "DeleteEmailIdentityPolicyRequest";
|
|
172
181
|
const _DEIPRe = "DeleteEmailIdentityPolicyResponse";
|
|
@@ -203,8 +212,10 @@ const _DSD = "DeleteSuppressedDestination";
|
|
|
203
212
|
const _DSDR = "DeleteSuppressedDestinationRequest";
|
|
204
213
|
const _DSDRe = "DeleteSuppressedDestinationResponse";
|
|
205
214
|
const _DSPK = "DomainSigningPrivateKey";
|
|
206
|
-
const _DSS = "
|
|
215
|
+
const _DSS = "DefaultSigningScheme";
|
|
207
216
|
const _DSSe = "DefaultSubscriptionStatus";
|
|
217
|
+
const _DSSo = "DomainSigningSelector";
|
|
218
|
+
const _DSe = "DefaultScheme";
|
|
208
219
|
const _DT = "DkimTokens";
|
|
209
220
|
const _DTR = "DeleteTenantRequest";
|
|
210
221
|
const _DTRA = "DeleteTenantResourceAssociation";
|
|
@@ -371,6 +382,8 @@ const _HVS = "HasValidSyntax";
|
|
|
371
382
|
const _He = "Headers";
|
|
372
383
|
const _I = "Id";
|
|
373
384
|
const _IC = "InboxCount";
|
|
385
|
+
const _ICL = "IdentityCertificateList";
|
|
386
|
+
const _ICd = "IdentityCertificate";
|
|
374
387
|
const _ID = "ImportDestination";
|
|
375
388
|
const _IDS = "ImportDataSource";
|
|
376
389
|
const _IDT = "ImportDestinationType";
|
|
@@ -434,6 +447,9 @@ const _LDTRRi = "ListDeliverabilityTestReportsResponse";
|
|
|
434
447
|
const _LEE = "LimitExceededException";
|
|
435
448
|
const _LEEa = "LastEngagementEvent";
|
|
436
449
|
const _LEI = "ListEmailIdentities";
|
|
450
|
+
const _LEIC = "ListEmailIdentityCertificates";
|
|
451
|
+
const _LEICR = "ListEmailIdentityCertificatesRequest";
|
|
452
|
+
const _LEICRi = "ListEmailIdentityCertificatesResponse";
|
|
437
453
|
const _LEIR = "ListEmailIdentitiesRequest";
|
|
438
454
|
const _LEIRi = "ListEmailIdentitiesResponse";
|
|
439
455
|
const _LEJ = "ListExportJobs";
|
|
@@ -503,6 +519,7 @@ const _MR = "MessageRejected";
|
|
|
503
519
|
const _MRE = "MultiRegionEndpoints";
|
|
504
520
|
const _MREu = "MultiRegionEndpoint";
|
|
505
521
|
const _MRa = "MaxResults";
|
|
522
|
+
const _MSO = "MessageSecurityOptions";
|
|
506
523
|
const _MSR = "MaxSendRate";
|
|
507
524
|
const _MT = "MailType";
|
|
508
525
|
const _MTL = "MessageTagList";
|
|
@@ -682,6 +699,7 @@ const _SER = "SendEmailRequest";
|
|
|
682
699
|
const _SERe = "SendEmailResponse";
|
|
683
700
|
const _SEe = "SendingEnabled";
|
|
684
701
|
const _SEen = "SendEmail";
|
|
702
|
+
const _SF = "SignatureFormat";
|
|
685
703
|
const _SHZ = "SigningHostedZone";
|
|
686
704
|
const _SI = "SendingIps";
|
|
687
705
|
const _SLD = "SuppressionListDestination";
|
|
@@ -704,6 +722,9 @@ const _SRt = "StatusRecord";
|
|
|
704
722
|
const _SS = "SendingStatus";
|
|
705
723
|
const _SSA = "SendingStatusAggregate";
|
|
706
724
|
const _SSD = "SubscriptionStartDate";
|
|
725
|
+
const _SSS = "SmimeSigningScheme";
|
|
726
|
+
const _SSi = "SigningScheme";
|
|
727
|
+
const _SSm = "SmimeScheme";
|
|
707
728
|
const _SSu = "SuppressionScope";
|
|
708
729
|
const _SSub = "SubscriptionStatus";
|
|
709
730
|
const _SU = "S3Url";
|
|
@@ -769,9 +790,12 @@ const _UCLR = "UpdateContactListRequest";
|
|
|
769
790
|
const _UCLRp = "UpdateContactListResponse";
|
|
770
791
|
const _UCR = "UpdateContactRequest";
|
|
771
792
|
const _UCRp = "UpdateContactResponse";
|
|
793
|
+
const _UCS = "UpdateConfigurationSet";
|
|
772
794
|
const _UCSED = "UpdateConfigurationSetEventDestination";
|
|
773
795
|
const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
|
|
774
796
|
const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
|
|
797
|
+
const _UCSR = "UpdateConfigurationSetRequest";
|
|
798
|
+
const _UCSRp = "UpdateConfigurationSetResponse";
|
|
775
799
|
const _UCVET = "UpdateCustomVerificationEmailTemplate";
|
|
776
800
|
const _UCVETR = "UpdateCustomVerificationEmailTemplateRequest";
|
|
777
801
|
const _UCVETRp = "UpdateCustomVerificationEmailTemplateResponse";
|
|
@@ -919,6 +943,16 @@ export var ArchivingOptions$ = [3, n0, _AO,
|
|
|
919
943
|
[_AA],
|
|
920
944
|
[0]
|
|
921
945
|
];
|
|
946
|
+
export var AssociateEmailIdentityCertificateRequest$ = [3, n0, _AEICR,
|
|
947
|
+
0,
|
|
948
|
+
[_EI, _CA, _FA],
|
|
949
|
+
[0, 0, 0], 2
|
|
950
|
+
];
|
|
951
|
+
export var AssociateEmailIdentityCertificateResponse$ = [3, n0, _AEICRs,
|
|
952
|
+
0,
|
|
953
|
+
[],
|
|
954
|
+
[]
|
|
955
|
+
];
|
|
922
956
|
export var Attachment$ = [3, n0, _A,
|
|
923
957
|
0,
|
|
924
958
|
[_RC, _FN, _CD, _CDo, _CI, _CTE, _CT],
|
|
@@ -1031,8 +1065,8 @@ export var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
|
|
|
1031
1065
|
];
|
|
1032
1066
|
export var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
|
|
1033
1067
|
0,
|
|
1034
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO],
|
|
1035
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$], 1
|
|
1068
|
+
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO, _MSO],
|
|
1069
|
+
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$, () => MessageSecurityOptions$], 1
|
|
1036
1070
|
];
|
|
1037
1071
|
export var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
|
|
1038
1072
|
0,
|
|
@@ -1199,6 +1233,11 @@ export var DedicatedIpPool$ = [3, n0, _DIPe,
|
|
|
1199
1233
|
[_PN, _SM],
|
|
1200
1234
|
[0, 0], 2
|
|
1201
1235
|
];
|
|
1236
|
+
export var DefaultSigningScheme$ = [3, n0, _DSS,
|
|
1237
|
+
0,
|
|
1238
|
+
[],
|
|
1239
|
+
[]
|
|
1240
|
+
];
|
|
1202
1241
|
export var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
|
|
1203
1242
|
0,
|
|
1204
1243
|
[_CSN, _EDN],
|
|
@@ -1341,7 +1380,7 @@ export var DeliveryOptions$ = [3, n0, _DO,
|
|
|
1341
1380
|
];
|
|
1342
1381
|
export var Destination$ = [3, n0, _Des,
|
|
1343
1382
|
0,
|
|
1344
|
-
[_TAo,
|
|
1383
|
+
[_TAo, _CAc, _BA],
|
|
1345
1384
|
[64 | 0, 64 | 0, 64 | 0]
|
|
1346
1385
|
];
|
|
1347
1386
|
export var Details$ = [3, n0, _Det,
|
|
@@ -1349,6 +1388,16 @@ export var Details$ = [3, n0, _Det,
|
|
|
1349
1388
|
[_RDo],
|
|
1350
1389
|
[() => RoutesDetails], 1
|
|
1351
1390
|
];
|
|
1391
|
+
export var DisassociateEmailIdentityCertificateRequest$ = [3, n0, _DEICR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_EI, _FA],
|
|
1394
|
+
[0, 0], 1
|
|
1395
|
+
];
|
|
1396
|
+
export var DisassociateEmailIdentityCertificateResponse$ = [3, n0, _DEICRi,
|
|
1397
|
+
0,
|
|
1398
|
+
[],
|
|
1399
|
+
[]
|
|
1400
|
+
];
|
|
1352
1401
|
export var DkimAttributes$ = [3, n0, _DA,
|
|
1353
1402
|
0,
|
|
1354
1403
|
[_SE, _S, _Tok, _SHZ, _SAO, _NSKL, _CSKL, _LKGT],
|
|
@@ -1356,7 +1405,7 @@ export var DkimAttributes$ = [3, n0, _DA,
|
|
|
1356
1405
|
];
|
|
1357
1406
|
export var DkimSigningAttributes$ = [3, n0, _DSA,
|
|
1358
1407
|
0,
|
|
1359
|
-
[
|
|
1408
|
+
[_DSSo, _DSPK, _NSKL, _DSAO],
|
|
1360
1409
|
[0, [() => PrivateKey, 0], 0, 0]
|
|
1361
1410
|
];
|
|
1362
1411
|
export var DomainDeliverabilityCampaign$ = [3, n0, _DDC,
|
|
@@ -1491,8 +1540,8 @@ export var GetConfigurationSetRequest$ = [3, n0, _GCSR,
|
|
|
1491
1540
|
];
|
|
1492
1541
|
export var GetConfigurationSetResponse$ = [3, n0, _GCSRe,
|
|
1493
1542
|
0,
|
|
1494
|
-
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO],
|
|
1495
|
-
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$]
|
|
1543
|
+
[_CSN, _TO, _DO, _RO, _SO, _Ta, _SOu, _VO, _AO, _MSO],
|
|
1544
|
+
[0, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$, () => SendingOptions$, () => TagList, () => SuppressionOptions$, () => VdmOptions$, () => ArchivingOptions$, () => MessageSecurityOptions$]
|
|
1496
1545
|
];
|
|
1497
1546
|
export var GetContactListRequest$ = [3, n0, _GCLR,
|
|
1498
1547
|
0,
|
|
@@ -1714,6 +1763,11 @@ export var GuardianOptions$ = [3, n0, _GO,
|
|
|
1714
1763
|
[_OSD],
|
|
1715
1764
|
[0]
|
|
1716
1765
|
];
|
|
1766
|
+
export var IdentityCertificate$ = [3, n0, _ICd,
|
|
1767
|
+
0,
|
|
1768
|
+
[_FA, _S, _CA, _CET],
|
|
1769
|
+
[0, 0, 0, 4]
|
|
1770
|
+
];
|
|
1717
1771
|
export var IdentityInfo$ = [3, n0, _II,
|
|
1718
1772
|
0,
|
|
1719
1773
|
[_IT, _INd, _SEe, _VSe],
|
|
@@ -1839,6 +1893,16 @@ export var ListEmailIdentitiesResponse$ = [3, n0, _LEIRi,
|
|
|
1839
1893
|
[_EIma, _NT],
|
|
1840
1894
|
[() => IdentityInfoList, 0]
|
|
1841
1895
|
];
|
|
1896
|
+
export var ListEmailIdentityCertificatesRequest$ = [3, n0, _LEICR,
|
|
1897
|
+
0,
|
|
1898
|
+
[_EI, _NT, _PS],
|
|
1899
|
+
[0, 0, 1], 1
|
|
1900
|
+
];
|
|
1901
|
+
export var ListEmailIdentityCertificatesResponse$ = [3, n0, _LEICRi,
|
|
1902
|
+
0,
|
|
1903
|
+
[_Ce, _NT],
|
|
1904
|
+
[() => IdentityCertificateList, 0]
|
|
1905
|
+
];
|
|
1842
1906
|
export var ListEmailTemplatesRequest$ = [3, n0, _LETR,
|
|
1843
1907
|
0,
|
|
1844
1908
|
[_NT, _PS],
|
|
@@ -1984,6 +2048,11 @@ export var MessageInsightsFilters$ = [3, n0, _MIF,
|
|
|
1984
2048
|
[_FEA, _Des, _Su, _Is, _LDE, _LEEa],
|
|
1985
2049
|
[[() => EmailAddressFilterList, 0], [() => EmailAddressFilterList, 0], [() => EmailSubjectFilterList, 0], 64 | 0, 64 | 0, 64 | 0]
|
|
1986
2050
|
];
|
|
2051
|
+
export var MessageSecurityOptions$ = [3, n0, _MSO,
|
|
2052
|
+
0,
|
|
2053
|
+
[_SSi],
|
|
2054
|
+
[() => SigningScheme$]
|
|
2055
|
+
];
|
|
1987
2056
|
export var MessageTag$ = [3, n0, _MTe,
|
|
1988
2057
|
0,
|
|
1989
2058
|
[_Na, _V],
|
|
@@ -2359,6 +2428,11 @@ export var SendQuota$ = [3, n0, _SQ,
|
|
|
2359
2428
|
[_MHS, _MSR, _SLH],
|
|
2360
2429
|
[1, 1, 1]
|
|
2361
2430
|
];
|
|
2431
|
+
export var SmimeSigningScheme$ = [3, n0, _SSS,
|
|
2432
|
+
0,
|
|
2433
|
+
[_SF],
|
|
2434
|
+
[0]
|
|
2435
|
+
];
|
|
2362
2436
|
export var SnsDestination$ = [3, n0, _SDn,
|
|
2363
2437
|
0,
|
|
2364
2438
|
[_TAop],
|
|
@@ -2519,6 +2593,16 @@ export var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
|
|
|
2519
2593
|
[],
|
|
2520
2594
|
[]
|
|
2521
2595
|
];
|
|
2596
|
+
export var UpdateConfigurationSetRequest$ = [3, n0, _UCSR,
|
|
2597
|
+
0,
|
|
2598
|
+
[_CSN, _MSO],
|
|
2599
|
+
[0, () => MessageSecurityOptions$], 1
|
|
2600
|
+
];
|
|
2601
|
+
export var UpdateConfigurationSetResponse$ = [3, n0, _UCSRp,
|
|
2602
|
+
0,
|
|
2603
|
+
[],
|
|
2604
|
+
[]
|
|
2605
|
+
];
|
|
2522
2606
|
export var UpdateContactListRequest$ = [3, n0, _UCLR,
|
|
2523
2607
|
0,
|
|
2524
2608
|
[_CLN, _To, _De],
|
|
@@ -2683,6 +2767,9 @@ var ExportJobSummaryList = [1, n0, _EJSL,
|
|
|
2683
2767
|
var ExportMetrics = [1, n0, _EMxp,
|
|
2684
2768
|
0, () => ExportMetric$
|
|
2685
2769
|
];
|
|
2770
|
+
var IdentityCertificateList = [1, n0, _ICL,
|
|
2771
|
+
0, () => IdentityCertificate$
|
|
2772
|
+
];
|
|
2686
2773
|
var IdentityInfoList = [1, n0, _IIL,
|
|
2687
2774
|
0, () => IdentityInfo$
|
|
2688
2775
|
];
|
|
@@ -2771,6 +2858,14 @@ var ListRecommendationsFilter = 128 | 0;
|
|
|
2771
2858
|
var ListTenantResourcesFilter = 128 | 0;
|
|
2772
2859
|
var PolicyMap = 128 | 0;
|
|
2773
2860
|
var ReputationEntityFilter = 128 | 0;
|
|
2861
|
+
export var SigningScheme$ = [4, n0, _SSi,
|
|
2862
|
+
0,
|
|
2863
|
+
[_DSe, _SSm],
|
|
2864
|
+
[() => DefaultSigningScheme$, () => SmimeSigningScheme$]
|
|
2865
|
+
];
|
|
2866
|
+
export var AssociateEmailIdentityCertificate$ = [9, n0, _AEIC,
|
|
2867
|
+
{ [_h]: ["POST", "/v2/email/identity/certificates", 200] }, () => AssociateEmailIdentityCertificateRequest$, () => AssociateEmailIdentityCertificateResponse$
|
|
2868
|
+
];
|
|
2774
2869
|
export var BatchGetMetricData$ = [9, n0, _BGMD,
|
|
2775
2870
|
{ [_h]: ["POST", "/v2/email/metrics/batch", 200] }, () => BatchGetMetricDataRequest$, () => BatchGetMetricDataResponse$
|
|
2776
2871
|
];
|
|
@@ -2804,7 +2899,7 @@ export var CreateEmailIdentity$ = [9, n0, _CEI,
|
|
|
2804
2899
|
export var CreateEmailIdentityPolicy$ = [9, n0, _CEIP,
|
|
2805
2900
|
{ [_h]: ["POST", "/v2/email/identities/{EmailIdentity}/policies/{PolicyName}", 200] }, () => CreateEmailIdentityPolicyRequest$, () => CreateEmailIdentityPolicyResponse$
|
|
2806
2901
|
];
|
|
2807
|
-
export var CreateEmailTemplate$ = [9, n0,
|
|
2902
|
+
export var CreateEmailTemplate$ = [9, n0, _CETr,
|
|
2808
2903
|
{ [_h]: ["POST", "/v2/email/templates", 200] }, () => CreateEmailTemplateRequest$, () => CreateEmailTemplateResponse$
|
|
2809
2904
|
];
|
|
2810
2905
|
export var CreateExportJob$ = [9, n0, _CEJr,
|
|
@@ -2861,6 +2956,9 @@ export var DeleteTenant$ = [9, n0, _DTe,
|
|
|
2861
2956
|
export var DeleteTenantResourceAssociation$ = [9, n0, _DTRA,
|
|
2862
2957
|
{ [_h]: ["POST", "/v2/email/tenants/resources/delete", 200] }, () => DeleteTenantResourceAssociationRequest$, () => DeleteTenantResourceAssociationResponse$
|
|
2863
2958
|
];
|
|
2959
|
+
export var DisassociateEmailIdentityCertificate$ = [9, n0, _DEIC,
|
|
2960
|
+
{ [_h]: ["POST", "/v2/email/identity/certificates/delete", 200] }, () => DisassociateEmailIdentityCertificateRequest$, () => DisassociateEmailIdentityCertificateResponse$
|
|
2961
|
+
];
|
|
2864
2962
|
export var GetAccount$ = [9, n0, _GAe,
|
|
2865
2963
|
{ [_h]: ["GET", "/v2/email/account", 200] }, () => GetAccountRequest$, () => GetAccountResponse$
|
|
2866
2964
|
];
|
|
@@ -2960,6 +3058,9 @@ export var ListDomainDeliverabilityCampaigns$ = [9, n0, _LDDC,
|
|
|
2960
3058
|
export var ListEmailIdentities$ = [9, n0, _LEI,
|
|
2961
3059
|
{ [_h]: ["GET", "/v2/email/identities", 200] }, () => ListEmailIdentitiesRequest$, () => ListEmailIdentitiesResponse$
|
|
2962
3060
|
];
|
|
3061
|
+
export var ListEmailIdentityCertificates$ = [9, n0, _LEIC,
|
|
3062
|
+
{ [_h]: ["POST", "/v2/email/identity/certificates/list", 200] }, () => ListEmailIdentityCertificatesRequest$, () => ListEmailIdentityCertificatesResponse$
|
|
3063
|
+
];
|
|
2963
3064
|
export var ListEmailTemplates$ = [9, n0, _LET,
|
|
2964
3065
|
{ [_h]: ["GET", "/v2/email/templates", 200] }, () => ListEmailTemplatesRequest$, () => ListEmailTemplatesResponse$
|
|
2965
3066
|
];
|
|
@@ -3083,6 +3184,9 @@ export var TestRenderEmailTemplate$ = [9, n0, _TRET,
|
|
|
3083
3184
|
export var UntagResource$ = [9, n0, _UR,
|
|
3084
3185
|
{ [_h]: ["DELETE", "/v2/email/tags", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
3085
3186
|
];
|
|
3187
|
+
export var UpdateConfigurationSet$ = [9, n0, _UCS,
|
|
3188
|
+
{ [_h]: ["POST", "/v2/email/update-configuration-sets", 200] }, () => UpdateConfigurationSetRequest$, () => UpdateConfigurationSetResponse$
|
|
3189
|
+
];
|
|
3086
3190
|
export var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
|
|
3087
3191
|
{ [_h]: ["PUT", "/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}", 200] }, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
|
|
3088
3192
|
];
|
package/dist-types/SESv2.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
+
import { type AssociateEmailIdentityCertificateCommandInput, type AssociateEmailIdentityCertificateCommandOutput } from "./commands/AssociateEmailIdentityCertificateCommand";
|
|
2
3
|
import { type BatchGetMetricDataCommandInput, type BatchGetMetricDataCommandOutput } from "./commands/BatchGetMetricDataCommand";
|
|
3
4
|
import { type CancelExportJobCommandInput, type CancelExportJobCommandOutput } from "./commands/CancelExportJobCommand";
|
|
4
5
|
import { type CreateConfigurationSetCommandInput, type CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
|
|
@@ -29,6 +30,7 @@ import { type DeleteMultiRegionEndpointCommandInput, type DeleteMultiRegionEndpo
|
|
|
29
30
|
import { type DeleteSuppressedDestinationCommandInput, type DeleteSuppressedDestinationCommandOutput } from "./commands/DeleteSuppressedDestinationCommand";
|
|
30
31
|
import { type DeleteTenantCommandInput, type DeleteTenantCommandOutput } from "./commands/DeleteTenantCommand";
|
|
31
32
|
import { type DeleteTenantResourceAssociationCommandInput, type DeleteTenantResourceAssociationCommandOutput } from "./commands/DeleteTenantResourceAssociationCommand";
|
|
33
|
+
import { type DisassociateEmailIdentityCertificateCommandInput, type DisassociateEmailIdentityCertificateCommandOutput } from "./commands/DisassociateEmailIdentityCertificateCommand";
|
|
32
34
|
import { type GetAccountCommandInput, type GetAccountCommandOutput } from "./commands/GetAccountCommand";
|
|
33
35
|
import { type GetBlacklistReportsCommandInput, type GetBlacklistReportsCommandOutput } from "./commands/GetBlacklistReportsCommand";
|
|
34
36
|
import { type GetConfigurationSetCommandInput, type GetConfigurationSetCommandOutput } from "./commands/GetConfigurationSetCommand";
|
|
@@ -62,6 +64,7 @@ import { type ListDedicatedIpPoolsCommandInput, type ListDedicatedIpPoolsCommand
|
|
|
62
64
|
import { type ListDeliverabilityTestReportsCommandInput, type ListDeliverabilityTestReportsCommandOutput } from "./commands/ListDeliverabilityTestReportsCommand";
|
|
63
65
|
import { type ListDomainDeliverabilityCampaignsCommandInput, type ListDomainDeliverabilityCampaignsCommandOutput } from "./commands/ListDomainDeliverabilityCampaignsCommand";
|
|
64
66
|
import { type ListEmailIdentitiesCommandInput, type ListEmailIdentitiesCommandOutput } from "./commands/ListEmailIdentitiesCommand";
|
|
67
|
+
import { type ListEmailIdentityCertificatesCommandInput, type ListEmailIdentityCertificatesCommandOutput } from "./commands/ListEmailIdentityCertificatesCommand";
|
|
65
68
|
import { type ListEmailTemplatesCommandInput, type ListEmailTemplatesCommandOutput } from "./commands/ListEmailTemplatesCommand";
|
|
66
69
|
import { type ListExportJobsCommandInput, type ListExportJobsCommandOutput } from "./commands/ListExportJobsCommand";
|
|
67
70
|
import { type ListImportJobsCommandInput, type ListImportJobsCommandOutput } from "./commands/ListImportJobsCommand";
|
|
@@ -103,6 +106,7 @@ import { type SendEmailCommandInput, type SendEmailCommandOutput } from "./comma
|
|
|
103
106
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
104
107
|
import { type TestRenderEmailTemplateCommandInput, type TestRenderEmailTemplateCommandOutput } from "./commands/TestRenderEmailTemplateCommand";
|
|
105
108
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
109
|
+
import { type UpdateConfigurationSetCommandInput, type UpdateConfigurationSetCommandOutput } from "./commands/UpdateConfigurationSetCommand";
|
|
106
110
|
import { type UpdateConfigurationSetEventDestinationCommandInput, type UpdateConfigurationSetEventDestinationCommandOutput } from "./commands/UpdateConfigurationSetEventDestinationCommand";
|
|
107
111
|
import { type UpdateContactCommandInput, type UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
108
112
|
import { type UpdateContactListCommandInput, type UpdateContactListCommandOutput } from "./commands/UpdateContactListCommand";
|
|
@@ -113,6 +117,12 @@ import { type UpdateReputationEntityCustomerManagedStatusCommandInput, type Upda
|
|
|
113
117
|
import { type UpdateReputationEntityPolicyCommandInput, type UpdateReputationEntityPolicyCommandOutput } from "./commands/UpdateReputationEntityPolicyCommand";
|
|
114
118
|
import { SESv2Client } from "./SESv2Client";
|
|
115
119
|
export interface SESv2 {
|
|
120
|
+
/**
|
|
121
|
+
* @see {@link AssociateEmailIdentityCertificateCommand}
|
|
122
|
+
*/
|
|
123
|
+
associateEmailIdentityCertificate(args: AssociateEmailIdentityCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateEmailIdentityCertificateCommandOutput>;
|
|
124
|
+
associateEmailIdentityCertificate(args: AssociateEmailIdentityCertificateCommandInput, cb: (err: any, data?: AssociateEmailIdentityCertificateCommandOutput) => void): void;
|
|
125
|
+
associateEmailIdentityCertificate(args: AssociateEmailIdentityCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEmailIdentityCertificateCommandOutput) => void): void;
|
|
116
126
|
/**
|
|
117
127
|
* @see {@link BatchGetMetricDataCommand}
|
|
118
128
|
*/
|
|
@@ -293,6 +303,12 @@ export interface SESv2 {
|
|
|
293
303
|
deleteTenantResourceAssociation(args: DeleteTenantResourceAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTenantResourceAssociationCommandOutput>;
|
|
294
304
|
deleteTenantResourceAssociation(args: DeleteTenantResourceAssociationCommandInput, cb: (err: any, data?: DeleteTenantResourceAssociationCommandOutput) => void): void;
|
|
295
305
|
deleteTenantResourceAssociation(args: DeleteTenantResourceAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTenantResourceAssociationCommandOutput) => void): void;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link DisassociateEmailIdentityCertificateCommand}
|
|
308
|
+
*/
|
|
309
|
+
disassociateEmailIdentityCertificate(args: DisassociateEmailIdentityCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateEmailIdentityCertificateCommandOutput>;
|
|
310
|
+
disassociateEmailIdentityCertificate(args: DisassociateEmailIdentityCertificateCommandInput, cb: (err: any, data?: DisassociateEmailIdentityCertificateCommandOutput) => void): void;
|
|
311
|
+
disassociateEmailIdentityCertificate(args: DisassociateEmailIdentityCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateEmailIdentityCertificateCommandOutput) => void): void;
|
|
296
312
|
/**
|
|
297
313
|
* @see {@link GetAccountCommand}
|
|
298
314
|
*/
|
|
@@ -500,6 +516,12 @@ export interface SESv2 {
|
|
|
500
516
|
listEmailIdentities(args: ListEmailIdentitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListEmailIdentitiesCommandOutput>;
|
|
501
517
|
listEmailIdentities(args: ListEmailIdentitiesCommandInput, cb: (err: any, data?: ListEmailIdentitiesCommandOutput) => void): void;
|
|
502
518
|
listEmailIdentities(args: ListEmailIdentitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEmailIdentitiesCommandOutput) => void): void;
|
|
519
|
+
/**
|
|
520
|
+
* @see {@link ListEmailIdentityCertificatesCommand}
|
|
521
|
+
*/
|
|
522
|
+
listEmailIdentityCertificates(args: ListEmailIdentityCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListEmailIdentityCertificatesCommandOutput>;
|
|
523
|
+
listEmailIdentityCertificates(args: ListEmailIdentityCertificatesCommandInput, cb: (err: any, data?: ListEmailIdentityCertificatesCommandOutput) => void): void;
|
|
524
|
+
listEmailIdentityCertificates(args: ListEmailIdentityCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEmailIdentityCertificatesCommandOutput) => void): void;
|
|
503
525
|
/**
|
|
504
526
|
* @see {@link ListEmailTemplatesCommand}
|
|
505
527
|
*/
|
|
@@ -757,6 +779,12 @@ export interface SESv2 {
|
|
|
757
779
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
758
780
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
759
781
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
782
|
+
/**
|
|
783
|
+
* @see {@link UpdateConfigurationSetCommand}
|
|
784
|
+
*/
|
|
785
|
+
updateConfigurationSet(args: UpdateConfigurationSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationSetCommandOutput>;
|
|
786
|
+
updateConfigurationSet(args: UpdateConfigurationSetCommandInput, cb: (err: any, data?: UpdateConfigurationSetCommandOutput) => void): void;
|
|
787
|
+
updateConfigurationSet(args: UpdateConfigurationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationSetCommandOutput) => void): void;
|
|
760
788
|
/**
|
|
761
789
|
* @see {@link UpdateConfigurationSetEventDestinationCommand}
|
|
762
790
|
*/
|
|
@@ -868,6 +896,13 @@ export interface SESv2 {
|
|
|
868
896
|
* @returns AsyncIterable of {@link ListEmailIdentitiesCommandOutput}.
|
|
869
897
|
*/
|
|
870
898
|
paginateListEmailIdentities(args?: ListEmailIdentitiesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEmailIdentitiesCommandOutput>;
|
|
899
|
+
/**
|
|
900
|
+
* @see {@link ListEmailIdentityCertificatesCommand}
|
|
901
|
+
* @param args - command input.
|
|
902
|
+
* @param paginationConfig - optional pagination config.
|
|
903
|
+
* @returns AsyncIterable of {@link ListEmailIdentityCertificatesCommandOutput}.
|
|
904
|
+
*/
|
|
905
|
+
paginateListEmailIdentityCertificates(args: ListEmailIdentityCertificatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEmailIdentityCertificatesCommandOutput>;
|
|
871
906
|
/**
|
|
872
907
|
* @see {@link ListEmailTemplatesCommand}
|
|
873
908
|
* @param args - command input.
|