@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
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
ExportSourceType,
|
|
21
21
|
FeatureStatus,
|
|
22
22
|
HttpsPolicy,
|
|
23
|
+
IdentityCertificateStatus,
|
|
23
24
|
IdentityType,
|
|
24
25
|
ImportDestinationType,
|
|
25
26
|
JobStatus,
|
|
@@ -42,6 +43,7 @@ import {
|
|
|
42
43
|
ReviewStatus,
|
|
43
44
|
ScalingMode,
|
|
44
45
|
SendingStatus,
|
|
46
|
+
SignatureFormat,
|
|
45
47
|
Status,
|
|
46
48
|
SubscriptionStatus,
|
|
47
49
|
SuppressionConfidenceVerdictThreshold,
|
|
@@ -68,6 +70,12 @@ export interface AccountDetails {
|
|
|
68
70
|
export interface ArchivingOptions {
|
|
69
71
|
ArchiveArn?: string | undefined;
|
|
70
72
|
}
|
|
73
|
+
export interface AssociateEmailIdentityCertificateRequest {
|
|
74
|
+
EmailIdentity: string | undefined;
|
|
75
|
+
FromAddress?: string | undefined;
|
|
76
|
+
CertificateArn: string | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface AssociateEmailIdentityCertificateResponse {}
|
|
71
79
|
export interface Attachment {
|
|
72
80
|
RawContent: Uint8Array | undefined;
|
|
73
81
|
ContentDisposition?: AttachmentContentDisposition | undefined;
|
|
@@ -213,6 +221,39 @@ export interface DeliveryOptions {
|
|
|
213
221
|
SendingPoolName?: string | undefined;
|
|
214
222
|
MaxDeliverySeconds?: number | undefined;
|
|
215
223
|
}
|
|
224
|
+
export interface DefaultSigningScheme {}
|
|
225
|
+
export interface SmimeSigningScheme {
|
|
226
|
+
SignatureFormat?: SignatureFormat | undefined;
|
|
227
|
+
}
|
|
228
|
+
export type SigningScheme =
|
|
229
|
+
| SigningScheme.DefaultSchemeMember
|
|
230
|
+
| SigningScheme.SmimeSchemeMember
|
|
231
|
+
| SigningScheme.$UnknownMember;
|
|
232
|
+
export declare namespace SigningScheme {
|
|
233
|
+
interface DefaultSchemeMember {
|
|
234
|
+
DefaultScheme: DefaultSigningScheme;
|
|
235
|
+
SmimeScheme?: never;
|
|
236
|
+
$unknown?: never;
|
|
237
|
+
}
|
|
238
|
+
interface SmimeSchemeMember {
|
|
239
|
+
DefaultScheme?: never;
|
|
240
|
+
SmimeScheme: SmimeSigningScheme;
|
|
241
|
+
$unknown?: never;
|
|
242
|
+
}
|
|
243
|
+
interface $UnknownMember {
|
|
244
|
+
DefaultScheme?: never;
|
|
245
|
+
SmimeScheme?: never;
|
|
246
|
+
$unknown: [string, any];
|
|
247
|
+
}
|
|
248
|
+
interface Visitor<T> {
|
|
249
|
+
DefaultScheme: (value: DefaultSigningScheme) => T;
|
|
250
|
+
SmimeScheme: (value: SmimeSigningScheme) => T;
|
|
251
|
+
_: (name: string, value: any) => T;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
export interface MessageSecurityOptions {
|
|
255
|
+
SigningScheme?: SigningScheme | undefined;
|
|
256
|
+
}
|
|
216
257
|
export interface ReputationOptions {
|
|
217
258
|
ReputationMetricsEnabled?: boolean | undefined;
|
|
218
259
|
LastFreshStart?: Date | undefined;
|
|
@@ -263,6 +304,7 @@ export interface CreateConfigurationSetRequest {
|
|
|
263
304
|
SuppressionOptions?: SuppressionOptions | undefined;
|
|
264
305
|
VdmOptions?: VdmOptions | undefined;
|
|
265
306
|
ArchivingOptions?: ArchivingOptions | undefined;
|
|
307
|
+
MessageSecurityOptions?: MessageSecurityOptions | undefined;
|
|
266
308
|
}
|
|
267
309
|
export interface CreateConfigurationSetResponse {}
|
|
268
310
|
export interface EventBridgeDestination {
|
|
@@ -595,6 +637,11 @@ export interface DeliverabilityTestReport {
|
|
|
595
637
|
CreateDate?: Date | undefined;
|
|
596
638
|
DeliverabilityTestStatus?: DeliverabilityTestStatus | undefined;
|
|
597
639
|
}
|
|
640
|
+
export interface DisassociateEmailIdentityCertificateRequest {
|
|
641
|
+
EmailIdentity: string | undefined;
|
|
642
|
+
FromAddress?: string | undefined;
|
|
643
|
+
}
|
|
644
|
+
export interface DisassociateEmailIdentityCertificateResponse {}
|
|
598
645
|
export interface DomainDeliverabilityCampaign {
|
|
599
646
|
CampaignId?: string | undefined;
|
|
600
647
|
ImageUrl?: string | undefined;
|
|
@@ -729,6 +776,7 @@ export interface GetConfigurationSetResponse {
|
|
|
729
776
|
SuppressionOptions?: SuppressionOptions | undefined;
|
|
730
777
|
VdmOptions?: VdmOptions | undefined;
|
|
731
778
|
ArchivingOptions?: ArchivingOptions | undefined;
|
|
779
|
+
MessageSecurityOptions?: MessageSecurityOptions | undefined;
|
|
732
780
|
}
|
|
733
781
|
export interface GetConfigurationSetEventDestinationsRequest {
|
|
734
782
|
ConfigurationSetName: string | undefined;
|
|
@@ -1004,6 +1052,12 @@ export interface Tenant {
|
|
|
1004
1052
|
export interface GetTenantResponse {
|
|
1005
1053
|
Tenant?: Tenant | undefined;
|
|
1006
1054
|
}
|
|
1055
|
+
export interface IdentityCertificate {
|
|
1056
|
+
FromAddress?: string | undefined;
|
|
1057
|
+
Status?: IdentityCertificateStatus | undefined;
|
|
1058
|
+
CertificateArn?: string | undefined;
|
|
1059
|
+
CertificateExpiryTime?: Date | undefined;
|
|
1060
|
+
}
|
|
1007
1061
|
export interface IdentityInfo {
|
|
1008
1062
|
IdentityType?: IdentityType | undefined;
|
|
1009
1063
|
IdentityName?: string | undefined;
|
|
@@ -1095,6 +1149,15 @@ export interface ListEmailIdentitiesResponse {
|
|
|
1095
1149
|
EmailIdentities?: IdentityInfo[] | undefined;
|
|
1096
1150
|
NextToken?: string | undefined;
|
|
1097
1151
|
}
|
|
1152
|
+
export interface ListEmailIdentityCertificatesRequest {
|
|
1153
|
+
EmailIdentity: string | undefined;
|
|
1154
|
+
NextToken?: string | undefined;
|
|
1155
|
+
PageSize?: number | undefined;
|
|
1156
|
+
}
|
|
1157
|
+
export interface ListEmailIdentityCertificatesResponse {
|
|
1158
|
+
Certificates?: IdentityCertificate[] | undefined;
|
|
1159
|
+
NextToken?: string | undefined;
|
|
1160
|
+
}
|
|
1098
1161
|
export interface ListEmailTemplatesRequest {
|
|
1099
1162
|
NextToken?: string | undefined;
|
|
1100
1163
|
PageSize?: number | undefined;
|
|
@@ -1304,29 +1367,3 @@ export interface PutConfigurationSetVdmOptionsRequest {
|
|
|
1304
1367
|
ConfigurationSetName: string | undefined;
|
|
1305
1368
|
VdmOptions?: VdmOptions | undefined;
|
|
1306
1369
|
}
|
|
1307
|
-
export interface PutConfigurationSetVdmOptionsResponse {}
|
|
1308
|
-
export interface PutDedicatedIpInPoolRequest {
|
|
1309
|
-
Ip: string | undefined;
|
|
1310
|
-
DestinationPoolName: string | undefined;
|
|
1311
|
-
}
|
|
1312
|
-
export interface PutDedicatedIpInPoolResponse {}
|
|
1313
|
-
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
1314
|
-
PoolName: string | undefined;
|
|
1315
|
-
ScalingMode: ScalingMode | undefined;
|
|
1316
|
-
}
|
|
1317
|
-
export interface PutDedicatedIpPoolScalingAttributesResponse {}
|
|
1318
|
-
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
1319
|
-
Ip: string | undefined;
|
|
1320
|
-
WarmupPercentage: number | undefined;
|
|
1321
|
-
}
|
|
1322
|
-
export interface PutDedicatedIpWarmupAttributesResponse {}
|
|
1323
|
-
export interface PutDeliverabilityDashboardOptionRequest {
|
|
1324
|
-
DashboardEnabled: boolean | undefined;
|
|
1325
|
-
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
1326
|
-
}
|
|
1327
|
-
export interface PutDeliverabilityDashboardOptionResponse {}
|
|
1328
|
-
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
1329
|
-
EmailIdentity: string | undefined;
|
|
1330
|
-
ConfigurationSetName?: string | undefined;
|
|
1331
|
-
}
|
|
1332
|
-
export interface PutEmailIdentityConfigurationSetAttributesResponse {}
|
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
DkimSigningAttributesOrigin,
|
|
4
4
|
DkimStatus,
|
|
5
5
|
ReputationEntityType,
|
|
6
|
+
ScalingMode,
|
|
6
7
|
SendingStatus,
|
|
7
8
|
SuppressionListReason,
|
|
8
9
|
SuppressionListScope,
|
|
@@ -14,15 +15,43 @@ import {
|
|
|
14
15
|
ConfigurationOverrides,
|
|
15
16
|
Destination,
|
|
16
17
|
DkimSigningAttributes,
|
|
18
|
+
DomainDeliverabilityTrackingOption,
|
|
17
19
|
EmailContent,
|
|
18
20
|
EmailTemplateContent,
|
|
19
21
|
EventDestinationDefinition,
|
|
20
22
|
ListManagementOptions,
|
|
23
|
+
MessageSecurityOptions,
|
|
21
24
|
MessageTag,
|
|
22
25
|
Tag,
|
|
23
26
|
Topic,
|
|
24
27
|
TopicPreference,
|
|
25
28
|
} from "./models_0";
|
|
29
|
+
export interface PutConfigurationSetVdmOptionsResponse {}
|
|
30
|
+
export interface PutDedicatedIpInPoolRequest {
|
|
31
|
+
Ip: string | undefined;
|
|
32
|
+
DestinationPoolName: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export interface PutDedicatedIpInPoolResponse {}
|
|
35
|
+
export interface PutDedicatedIpPoolScalingAttributesRequest {
|
|
36
|
+
PoolName: string | undefined;
|
|
37
|
+
ScalingMode: ScalingMode | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface PutDedicatedIpPoolScalingAttributesResponse {}
|
|
40
|
+
export interface PutDedicatedIpWarmupAttributesRequest {
|
|
41
|
+
Ip: string | undefined;
|
|
42
|
+
WarmupPercentage: number | undefined;
|
|
43
|
+
}
|
|
44
|
+
export interface PutDedicatedIpWarmupAttributesResponse {}
|
|
45
|
+
export interface PutDeliverabilityDashboardOptionRequest {
|
|
46
|
+
DashboardEnabled: boolean | undefined;
|
|
47
|
+
SubscribedDomains?: DomainDeliverabilityTrackingOption[] | undefined;
|
|
48
|
+
}
|
|
49
|
+
export interface PutDeliverabilityDashboardOptionResponse {}
|
|
50
|
+
export interface PutEmailIdentityConfigurationSetAttributesRequest {
|
|
51
|
+
EmailIdentity: string | undefined;
|
|
52
|
+
ConfigurationSetName?: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
export interface PutEmailIdentityConfigurationSetAttributesResponse {}
|
|
26
55
|
export interface PutEmailIdentityDkimAttributesRequest {
|
|
27
56
|
EmailIdentity: string | undefined;
|
|
28
57
|
SigningEnabled?: boolean | undefined;
|
|
@@ -121,6 +150,11 @@ export interface UntagResourceRequest {
|
|
|
121
150
|
TagKeys: string[] | undefined;
|
|
122
151
|
}
|
|
123
152
|
export interface UntagResourceResponse {}
|
|
153
|
+
export interface UpdateConfigurationSetRequest {
|
|
154
|
+
ConfigurationSetName: string | undefined;
|
|
155
|
+
MessageSecurityOptions?: MessageSecurityOptions | undefined;
|
|
156
|
+
}
|
|
157
|
+
export interface UpdateConfigurationSetResponse {}
|
|
124
158
|
export interface UpdateConfigurationSetEventDestinationRequest {
|
|
125
159
|
ConfigurationSetName: string | undefined;
|
|
126
160
|
EventDestinationName: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEmailIdentityCertificatesCommandInput,
|
|
4
|
+
ListEmailIdentityCertificatesCommandOutput,
|
|
5
|
+
} from "../commands/ListEmailIdentityCertificatesCommand";
|
|
6
|
+
import { SESv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEmailIdentityCertificates: (
|
|
8
|
+
config: SESv2PaginationConfiguration,
|
|
9
|
+
input: ListEmailIdentityCertificatesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEmailIdentityCertificatesCommandOutput>;
|
|
@@ -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";
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
StaticErrorSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
StaticUnionSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
3
8
|
export declare var SESv2ServiceException$: StaticErrorSchema;
|
|
4
9
|
export declare var AccountSuspendedException$: StaticErrorSchema;
|
|
5
10
|
export declare var AlreadyExistsException$: StaticErrorSchema;
|
|
@@ -17,6 +22,8 @@ export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
|
17
22
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
18
23
|
export declare var AccountDetails$: StaticStructureSchema;
|
|
19
24
|
export declare var ArchivingOptions$: StaticStructureSchema;
|
|
25
|
+
export declare var AssociateEmailIdentityCertificateRequest$: StaticStructureSchema;
|
|
26
|
+
export declare var AssociateEmailIdentityCertificateResponse$: StaticStructureSchema;
|
|
20
27
|
export declare var Attachment$: StaticStructureSchema;
|
|
21
28
|
export declare var BatchGetMetricDataQuery$: StaticStructureSchema;
|
|
22
29
|
export declare var BatchGetMetricDataRequest$: StaticStructureSchema;
|
|
@@ -73,6 +80,7 @@ export declare var DashboardAttributes$: StaticStructureSchema;
|
|
|
73
80
|
export declare var DashboardOptions$: StaticStructureSchema;
|
|
74
81
|
export declare var DedicatedIp$: StaticStructureSchema;
|
|
75
82
|
export declare var DedicatedIpPool$: StaticStructureSchema;
|
|
83
|
+
export declare var DefaultSigningScheme$: StaticStructureSchema;
|
|
76
84
|
export declare var DeleteConfigurationSetEventDestinationRequest$: StaticStructureSchema;
|
|
77
85
|
export declare var DeleteConfigurationSetEventDestinationResponse$: StaticStructureSchema;
|
|
78
86
|
export declare var DeleteConfigurationSetRequest$: StaticStructureSchema;
|
|
@@ -103,6 +111,8 @@ export declare var DeliverabilityTestReport$: StaticStructureSchema;
|
|
|
103
111
|
export declare var DeliveryOptions$: StaticStructureSchema;
|
|
104
112
|
export declare var Destination$: StaticStructureSchema;
|
|
105
113
|
export declare var Details$: StaticStructureSchema;
|
|
114
|
+
export declare var DisassociateEmailIdentityCertificateRequest$: StaticStructureSchema;
|
|
115
|
+
export declare var DisassociateEmailIdentityCertificateResponse$: StaticStructureSchema;
|
|
106
116
|
export declare var DkimAttributes$: StaticStructureSchema;
|
|
107
117
|
export declare var DkimSigningAttributes$: StaticStructureSchema;
|
|
108
118
|
export declare var DomainDeliverabilityCampaign$: StaticStructureSchema;
|
|
@@ -176,6 +186,7 @@ export declare var GetTenantRequest$: StaticStructureSchema;
|
|
|
176
186
|
export declare var GetTenantResponse$: StaticStructureSchema;
|
|
177
187
|
export declare var GuardianAttributes$: StaticStructureSchema;
|
|
178
188
|
export declare var GuardianOptions$: StaticStructureSchema;
|
|
189
|
+
export declare var IdentityCertificate$: StaticStructureSchema;
|
|
179
190
|
export declare var IdentityInfo$: StaticStructureSchema;
|
|
180
191
|
export declare var ImportDataSource$: StaticStructureSchema;
|
|
181
192
|
export declare var ImportDestination$: StaticStructureSchema;
|
|
@@ -201,6 +212,8 @@ export declare var ListDomainDeliverabilityCampaignsRequest$: StaticStructureSch
|
|
|
201
212
|
export declare var ListDomainDeliverabilityCampaignsResponse$: StaticStructureSchema;
|
|
202
213
|
export declare var ListEmailIdentitiesRequest$: StaticStructureSchema;
|
|
203
214
|
export declare var ListEmailIdentitiesResponse$: StaticStructureSchema;
|
|
215
|
+
export declare var ListEmailIdentityCertificatesRequest$: StaticStructureSchema;
|
|
216
|
+
export declare var ListEmailIdentityCertificatesResponse$: StaticStructureSchema;
|
|
204
217
|
export declare var ListEmailTemplatesRequest$: StaticStructureSchema;
|
|
205
218
|
export declare var ListEmailTemplatesResponse$: StaticStructureSchema;
|
|
206
219
|
export declare var ListExportJobsRequest$: StaticStructureSchema;
|
|
@@ -230,6 +243,7 @@ export declare var Message$: StaticStructureSchema;
|
|
|
230
243
|
export declare var MessageHeader$: StaticStructureSchema;
|
|
231
244
|
export declare var MessageInsightsDataSource$: StaticStructureSchema;
|
|
232
245
|
export declare var MessageInsightsFilters$: StaticStructureSchema;
|
|
246
|
+
export declare var MessageSecurityOptions$: StaticStructureSchema;
|
|
233
247
|
export declare var MessageTag$: StaticStructureSchema;
|
|
234
248
|
export declare var MetricDataError$: StaticStructureSchema;
|
|
235
249
|
export declare var MetricDataResult$: StaticStructureSchema;
|
|
@@ -305,6 +319,7 @@ export declare var SendEmailRequest$: StaticStructureSchema;
|
|
|
305
319
|
export declare var SendEmailResponse$: StaticStructureSchema;
|
|
306
320
|
export declare var SendingOptions$: StaticStructureSchema;
|
|
307
321
|
export declare var SendQuota$: StaticStructureSchema;
|
|
322
|
+
export declare var SmimeSigningScheme$: StaticStructureSchema;
|
|
308
323
|
export declare var SnsDestination$: StaticStructureSchema;
|
|
309
324
|
export declare var SOARecord$: StaticStructureSchema;
|
|
310
325
|
export declare var StatusRecord$: StaticStructureSchema;
|
|
@@ -337,6 +352,8 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
|
337
352
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
338
353
|
export declare var UpdateConfigurationSetEventDestinationRequest$: StaticStructureSchema;
|
|
339
354
|
export declare var UpdateConfigurationSetEventDestinationResponse$: StaticStructureSchema;
|
|
355
|
+
export declare var UpdateConfigurationSetRequest$: StaticStructureSchema;
|
|
356
|
+
export declare var UpdateConfigurationSetResponse$: StaticStructureSchema;
|
|
340
357
|
export declare var UpdateContactListRequest$: StaticStructureSchema;
|
|
341
358
|
export declare var UpdateContactListResponse$: StaticStructureSchema;
|
|
342
359
|
export declare var UpdateContactRequest$: StaticStructureSchema;
|
|
@@ -355,6 +372,8 @@ export declare var VdmAttributes$: StaticStructureSchema;
|
|
|
355
372
|
export declare var VdmOptions$: StaticStructureSchema;
|
|
356
373
|
export declare var VerificationInfo$: StaticStructureSchema;
|
|
357
374
|
export declare var VolumeStatistics$: StaticStructureSchema;
|
|
375
|
+
export declare var SigningScheme$: StaticUnionSchema;
|
|
376
|
+
export declare var AssociateEmailIdentityCertificate$: StaticOperationSchema;
|
|
358
377
|
export declare var BatchGetMetricData$: StaticOperationSchema;
|
|
359
378
|
export declare var CancelExportJob$: StaticOperationSchema;
|
|
360
379
|
export declare var CreateConfigurationSet$: StaticOperationSchema;
|
|
@@ -385,6 +404,7 @@ export declare var DeleteMultiRegionEndpoint$: StaticOperationSchema;
|
|
|
385
404
|
export declare var DeleteSuppressedDestination$: StaticOperationSchema;
|
|
386
405
|
export declare var DeleteTenant$: StaticOperationSchema;
|
|
387
406
|
export declare var DeleteTenantResourceAssociation$: StaticOperationSchema;
|
|
407
|
+
export declare var DisassociateEmailIdentityCertificate$: StaticOperationSchema;
|
|
388
408
|
export declare var GetAccount$: StaticOperationSchema;
|
|
389
409
|
export declare var GetBlacklistReports$: StaticOperationSchema;
|
|
390
410
|
export declare var GetConfigurationSet$: StaticOperationSchema;
|
|
@@ -418,6 +438,7 @@ export declare var ListDedicatedIpPools$: StaticOperationSchema;
|
|
|
418
438
|
export declare var ListDeliverabilityTestReports$: StaticOperationSchema;
|
|
419
439
|
export declare var ListDomainDeliverabilityCampaigns$: StaticOperationSchema;
|
|
420
440
|
export declare var ListEmailIdentities$: StaticOperationSchema;
|
|
441
|
+
export declare var ListEmailIdentityCertificates$: StaticOperationSchema;
|
|
421
442
|
export declare var ListEmailTemplates$: StaticOperationSchema;
|
|
422
443
|
export declare var ListExportJobs$: StaticOperationSchema;
|
|
423
444
|
export declare var ListImportJobs$: StaticOperationSchema;
|
|
@@ -459,6 +480,7 @@ export declare var SendEmail$: StaticOperationSchema;
|
|
|
459
480
|
export declare var TagResource$: StaticOperationSchema;
|
|
460
481
|
export declare var TestRenderEmailTemplate$: StaticOperationSchema;
|
|
461
482
|
export declare var UntagResource$: StaticOperationSchema;
|
|
483
|
+
export declare var UpdateConfigurationSet$: StaticOperationSchema;
|
|
462
484
|
export declare var UpdateConfigurationSetEventDestination$: StaticOperationSchema;
|
|
463
485
|
export declare var UpdateContact$: StaticOperationSchema;
|
|
464
486
|
export declare var UpdateContactList$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1124.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",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@aws-sdk/core": "^3.977.9",
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.82",
|
|
51
51
|
"@aws-sdk/signature-v4-multi-region": "^3.996.46",
|
|
52
52
|
"@aws-sdk/types": "^3.974.5",
|
|
53
53
|
"@smithy/core": "^3.33.3",
|