@aws-sdk/client-ses 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +98 -97
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +97 -0
- package/dist-es/models/errors.js +467 -0
- package/dist-es/models/models_0.js +1 -564
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +225 -0
- package/dist-types/models/errors.d.ts +588 -0
- package/dist-types/models/models_0.d.ts +1 -813
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +123 -0
- package/dist-types/ts3.4/models/errors.d.ts +330 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -453
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,30 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
BehaviorOnMXFailure,
|
|
3
|
+
BounceType,
|
|
4
|
+
BulkEmailStatus,
|
|
5
|
+
ConfigurationSetAttribute,
|
|
6
|
+
CustomMailFromStatus,
|
|
7
|
+
DimensionValueSource,
|
|
8
|
+
DsnAction,
|
|
9
|
+
EventType,
|
|
10
|
+
IdentityType,
|
|
11
|
+
InvocationType,
|
|
12
|
+
NotificationType,
|
|
13
|
+
ReceiptFilterPolicy,
|
|
14
|
+
SNSActionEncoding,
|
|
15
|
+
StopScope,
|
|
16
|
+
TlsPolicy,
|
|
17
|
+
VerificationStatus,
|
|
18
|
+
} from "./enums";
|
|
10
19
|
export interface AddHeaderAction {
|
|
11
20
|
HeaderName: string | undefined;
|
|
12
21
|
HeaderValue: string | undefined;
|
|
13
22
|
}
|
|
14
|
-
export declare class AlreadyExistsException extends __BaseException {
|
|
15
|
-
readonly name: "AlreadyExistsException";
|
|
16
|
-
readonly $fault: "client";
|
|
17
|
-
Name?: string | undefined;
|
|
18
|
-
constructor(
|
|
19
|
-
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
20
|
-
);
|
|
21
|
-
}
|
|
22
|
-
export declare const BehaviorOnMXFailure: {
|
|
23
|
-
readonly RejectMessage: "RejectMessage";
|
|
24
|
-
readonly UseDefaultValue: "UseDefaultValue";
|
|
25
|
-
};
|
|
26
|
-
export type BehaviorOnMXFailure =
|
|
27
|
-
(typeof BehaviorOnMXFailure)[keyof typeof BehaviorOnMXFailure];
|
|
28
23
|
export interface Content {
|
|
29
24
|
Data: string | undefined;
|
|
30
25
|
Charset?: string | undefined;
|
|
@@ -40,23 +35,6 @@ export interface BounceAction {
|
|
|
40
35
|
Message: string | undefined;
|
|
41
36
|
Sender: string | undefined;
|
|
42
37
|
}
|
|
43
|
-
export declare const BounceType: {
|
|
44
|
-
readonly ContentRejected: "ContentRejected";
|
|
45
|
-
readonly DoesNotExist: "DoesNotExist";
|
|
46
|
-
readonly ExceededQuota: "ExceededQuota";
|
|
47
|
-
readonly MessageTooLarge: "MessageTooLarge";
|
|
48
|
-
readonly TemporaryFailure: "TemporaryFailure";
|
|
49
|
-
readonly Undefined: "Undefined";
|
|
50
|
-
};
|
|
51
|
-
export type BounceType = (typeof BounceType)[keyof typeof BounceType];
|
|
52
|
-
export declare const DsnAction: {
|
|
53
|
-
readonly DELAYED: "delayed";
|
|
54
|
-
readonly DELIVERED: "delivered";
|
|
55
|
-
readonly EXPANDED: "expanded";
|
|
56
|
-
readonly FAILED: "failed";
|
|
57
|
-
readonly RELAYED: "relayed";
|
|
58
|
-
};
|
|
59
|
-
export type DsnAction = (typeof DsnAction)[keyof typeof DsnAction];
|
|
60
38
|
export interface ExtensionField {
|
|
61
39
|
Name: string | undefined;
|
|
62
40
|
Value: string | undefined;
|
|
@@ -90,64 +68,16 @@ export interface BulkEmailDestination {
|
|
|
90
68
|
ReplacementTags?: MessageTag[] | undefined;
|
|
91
69
|
ReplacementTemplateData?: string | undefined;
|
|
92
70
|
}
|
|
93
|
-
export declare const BulkEmailStatus: {
|
|
94
|
-
readonly AccountDailyQuotaExceeded: "AccountDailyQuotaExceeded";
|
|
95
|
-
readonly AccountSendingPaused: "AccountSendingPaused";
|
|
96
|
-
readonly AccountSuspended: "AccountSuspended";
|
|
97
|
-
readonly AccountThrottled: "AccountThrottled";
|
|
98
|
-
readonly ConfigurationSetDoesNotExist: "ConfigurationSetDoesNotExist";
|
|
99
|
-
readonly ConfigurationSetSendingPaused: "ConfigurationSetSendingPaused";
|
|
100
|
-
readonly Failed: "Failed";
|
|
101
|
-
readonly InvalidParameterValue: "InvalidParameterValue";
|
|
102
|
-
readonly InvalidSendingPoolName: "InvalidSendingPoolName";
|
|
103
|
-
readonly MailFromDomainNotVerified: "MailFromDomainNotVerified";
|
|
104
|
-
readonly MessageRejected: "MessageRejected";
|
|
105
|
-
readonly Success: "Success";
|
|
106
|
-
readonly TemplateDoesNotExist: "TemplateDoesNotExist";
|
|
107
|
-
readonly TransientFailure: "TransientFailure";
|
|
108
|
-
};
|
|
109
|
-
export type BulkEmailStatus =
|
|
110
|
-
(typeof BulkEmailStatus)[keyof typeof BulkEmailStatus];
|
|
111
71
|
export interface BulkEmailDestinationStatus {
|
|
112
72
|
Status?: BulkEmailStatus | undefined;
|
|
113
73
|
Error?: string | undefined;
|
|
114
74
|
MessageId?: string | undefined;
|
|
115
75
|
}
|
|
116
|
-
export declare class CannotDeleteException extends __BaseException {
|
|
117
|
-
readonly name: "CannotDeleteException";
|
|
118
|
-
readonly $fault: "client";
|
|
119
|
-
Name?: string | undefined;
|
|
120
|
-
constructor(
|
|
121
|
-
opts: __ExceptionOptionType<CannotDeleteException, __BaseException>
|
|
122
|
-
);
|
|
123
|
-
}
|
|
124
76
|
export interface CloneReceiptRuleSetRequest {
|
|
125
77
|
RuleSetName: string | undefined;
|
|
126
78
|
OriginalRuleSetName: string | undefined;
|
|
127
79
|
}
|
|
128
80
|
export interface CloneReceiptRuleSetResponse {}
|
|
129
|
-
export declare class LimitExceededException extends __BaseException {
|
|
130
|
-
readonly name: "LimitExceededException";
|
|
131
|
-
readonly $fault: "client";
|
|
132
|
-
constructor(
|
|
133
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
134
|
-
);
|
|
135
|
-
}
|
|
136
|
-
export declare class RuleSetDoesNotExistException extends __BaseException {
|
|
137
|
-
readonly name: "RuleSetDoesNotExistException";
|
|
138
|
-
readonly $fault: "client";
|
|
139
|
-
Name?: string | undefined;
|
|
140
|
-
constructor(
|
|
141
|
-
opts: __ExceptionOptionType<RuleSetDoesNotExistException, __BaseException>
|
|
142
|
-
);
|
|
143
|
-
}
|
|
144
|
-
export declare const DimensionValueSource: {
|
|
145
|
-
readonly EMAIL_HEADER: "emailHeader";
|
|
146
|
-
readonly LINK_TAG: "linkTag";
|
|
147
|
-
readonly MESSAGE_TAG: "messageTag";
|
|
148
|
-
};
|
|
149
|
-
export type DimensionValueSource =
|
|
150
|
-
(typeof DimensionValueSource)[keyof typeof DimensionValueSource];
|
|
151
81
|
export interface CloudWatchDimensionConfiguration {
|
|
152
82
|
DimensionName: string | undefined;
|
|
153
83
|
DimensionValueSource: DimensionValueSource | undefined;
|
|
@@ -159,47 +89,6 @@ export interface CloudWatchDestination {
|
|
|
159
89
|
export interface ConfigurationSet {
|
|
160
90
|
Name: string | undefined;
|
|
161
91
|
}
|
|
162
|
-
export declare class ConfigurationSetAlreadyExistsException extends __BaseException {
|
|
163
|
-
readonly name: "ConfigurationSetAlreadyExistsException";
|
|
164
|
-
readonly $fault: "client";
|
|
165
|
-
ConfigurationSetName?: string | undefined;
|
|
166
|
-
constructor(
|
|
167
|
-
opts: __ExceptionOptionType<
|
|
168
|
-
ConfigurationSetAlreadyExistsException,
|
|
169
|
-
__BaseException
|
|
170
|
-
>
|
|
171
|
-
);
|
|
172
|
-
}
|
|
173
|
-
export declare const ConfigurationSetAttribute: {
|
|
174
|
-
readonly DELIVERY_OPTIONS: "deliveryOptions";
|
|
175
|
-
readonly EVENT_DESTINATIONS: "eventDestinations";
|
|
176
|
-
readonly REPUTATION_OPTIONS: "reputationOptions";
|
|
177
|
-
readonly TRACKING_OPTIONS: "trackingOptions";
|
|
178
|
-
};
|
|
179
|
-
export type ConfigurationSetAttribute =
|
|
180
|
-
(typeof ConfigurationSetAttribute)[keyof typeof ConfigurationSetAttribute];
|
|
181
|
-
export declare class ConfigurationSetDoesNotExistException extends __BaseException {
|
|
182
|
-
readonly name: "ConfigurationSetDoesNotExistException";
|
|
183
|
-
readonly $fault: "client";
|
|
184
|
-
ConfigurationSetName?: string | undefined;
|
|
185
|
-
constructor(
|
|
186
|
-
opts: __ExceptionOptionType<
|
|
187
|
-
ConfigurationSetDoesNotExistException,
|
|
188
|
-
__BaseException
|
|
189
|
-
>
|
|
190
|
-
);
|
|
191
|
-
}
|
|
192
|
-
export declare class ConfigurationSetSendingPausedException extends __BaseException {
|
|
193
|
-
readonly name: "ConfigurationSetSendingPausedException";
|
|
194
|
-
readonly $fault: "client";
|
|
195
|
-
ConfigurationSetName?: string | undefined;
|
|
196
|
-
constructor(
|
|
197
|
-
opts: __ExceptionOptionType<
|
|
198
|
-
ConfigurationSetSendingPausedException,
|
|
199
|
-
__BaseException
|
|
200
|
-
>
|
|
201
|
-
);
|
|
202
|
-
}
|
|
203
92
|
export interface ConnectAction {
|
|
204
93
|
InstanceARN: string | undefined;
|
|
205
94
|
IAMRoleARN: string | undefined;
|
|
@@ -208,31 +97,10 @@ export interface CreateConfigurationSetRequest {
|
|
|
208
97
|
ConfigurationSet: ConfigurationSet | undefined;
|
|
209
98
|
}
|
|
210
99
|
export interface CreateConfigurationSetResponse {}
|
|
211
|
-
export declare class InvalidConfigurationSetException extends __BaseException {
|
|
212
|
-
readonly name: "InvalidConfigurationSetException";
|
|
213
|
-
readonly $fault: "client";
|
|
214
|
-
constructor(
|
|
215
|
-
opts: __ExceptionOptionType<
|
|
216
|
-
InvalidConfigurationSetException,
|
|
217
|
-
__BaseException
|
|
218
|
-
>
|
|
219
|
-
);
|
|
220
|
-
}
|
|
221
100
|
export interface KinesisFirehoseDestination {
|
|
222
101
|
IAMRoleARN: string | undefined;
|
|
223
102
|
DeliveryStreamARN: string | undefined;
|
|
224
103
|
}
|
|
225
|
-
export declare const EventType: {
|
|
226
|
-
readonly BOUNCE: "bounce";
|
|
227
|
-
readonly CLICK: "click";
|
|
228
|
-
readonly COMPLAINT: "complaint";
|
|
229
|
-
readonly DELIVERY: "delivery";
|
|
230
|
-
readonly OPEN: "open";
|
|
231
|
-
readonly REJECT: "reject";
|
|
232
|
-
readonly RENDERING_FAILURE: "renderingFailure";
|
|
233
|
-
readonly SEND: "send";
|
|
234
|
-
};
|
|
235
|
-
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
236
104
|
export interface SNSDestination {
|
|
237
105
|
TopicARN: string | undefined;
|
|
238
106
|
}
|
|
@@ -249,51 +117,6 @@ export interface CreateConfigurationSetEventDestinationRequest {
|
|
|
249
117
|
EventDestination: EventDestination | undefined;
|
|
250
118
|
}
|
|
251
119
|
export interface CreateConfigurationSetEventDestinationResponse {}
|
|
252
|
-
export declare class EventDestinationAlreadyExistsException extends __BaseException {
|
|
253
|
-
readonly name: "EventDestinationAlreadyExistsException";
|
|
254
|
-
readonly $fault: "client";
|
|
255
|
-
ConfigurationSetName?: string | undefined;
|
|
256
|
-
EventDestinationName?: string | undefined;
|
|
257
|
-
constructor(
|
|
258
|
-
opts: __ExceptionOptionType<
|
|
259
|
-
EventDestinationAlreadyExistsException,
|
|
260
|
-
__BaseException
|
|
261
|
-
>
|
|
262
|
-
);
|
|
263
|
-
}
|
|
264
|
-
export declare class InvalidCloudWatchDestinationException extends __BaseException {
|
|
265
|
-
readonly name: "InvalidCloudWatchDestinationException";
|
|
266
|
-
readonly $fault: "client";
|
|
267
|
-
ConfigurationSetName?: string | undefined;
|
|
268
|
-
EventDestinationName?: string | undefined;
|
|
269
|
-
constructor(
|
|
270
|
-
opts: __ExceptionOptionType<
|
|
271
|
-
InvalidCloudWatchDestinationException,
|
|
272
|
-
__BaseException
|
|
273
|
-
>
|
|
274
|
-
);
|
|
275
|
-
}
|
|
276
|
-
export declare class InvalidFirehoseDestinationException extends __BaseException {
|
|
277
|
-
readonly name: "InvalidFirehoseDestinationException";
|
|
278
|
-
readonly $fault: "client";
|
|
279
|
-
ConfigurationSetName?: string | undefined;
|
|
280
|
-
EventDestinationName?: string | undefined;
|
|
281
|
-
constructor(
|
|
282
|
-
opts: __ExceptionOptionType<
|
|
283
|
-
InvalidFirehoseDestinationException,
|
|
284
|
-
__BaseException
|
|
285
|
-
>
|
|
286
|
-
);
|
|
287
|
-
}
|
|
288
|
-
export declare class InvalidSNSDestinationException extends __BaseException {
|
|
289
|
-
readonly name: "InvalidSNSDestinationException";
|
|
290
|
-
readonly $fault: "client";
|
|
291
|
-
ConfigurationSetName?: string | undefined;
|
|
292
|
-
EventDestinationName?: string | undefined;
|
|
293
|
-
constructor(
|
|
294
|
-
opts: __ExceptionOptionType<InvalidSNSDestinationException, __BaseException>
|
|
295
|
-
);
|
|
296
|
-
}
|
|
297
120
|
export interface TrackingOptions {
|
|
298
121
|
CustomRedirectDomain?: string | undefined;
|
|
299
122
|
}
|
|
@@ -302,27 +125,6 @@ export interface CreateConfigurationSetTrackingOptionsRequest {
|
|
|
302
125
|
TrackingOptions: TrackingOptions | undefined;
|
|
303
126
|
}
|
|
304
127
|
export interface CreateConfigurationSetTrackingOptionsResponse {}
|
|
305
|
-
export declare class InvalidTrackingOptionsException extends __BaseException {
|
|
306
|
-
readonly name: "InvalidTrackingOptionsException";
|
|
307
|
-
readonly $fault: "client";
|
|
308
|
-
constructor(
|
|
309
|
-
opts: __ExceptionOptionType<
|
|
310
|
-
InvalidTrackingOptionsException,
|
|
311
|
-
__BaseException
|
|
312
|
-
>
|
|
313
|
-
);
|
|
314
|
-
}
|
|
315
|
-
export declare class TrackingOptionsAlreadyExistsException extends __BaseException {
|
|
316
|
-
readonly name: "TrackingOptionsAlreadyExistsException";
|
|
317
|
-
readonly $fault: "client";
|
|
318
|
-
ConfigurationSetName?: string | undefined;
|
|
319
|
-
constructor(
|
|
320
|
-
opts: __ExceptionOptionType<
|
|
321
|
-
TrackingOptionsAlreadyExistsException,
|
|
322
|
-
__BaseException
|
|
323
|
-
>
|
|
324
|
-
);
|
|
325
|
-
}
|
|
326
128
|
export interface CreateCustomVerificationEmailTemplateRequest {
|
|
327
129
|
TemplateName: string | undefined;
|
|
328
130
|
FromEmailAddress: string | undefined;
|
|
@@ -331,44 +133,6 @@ export interface CreateCustomVerificationEmailTemplateRequest {
|
|
|
331
133
|
SuccessRedirectionURL: string | undefined;
|
|
332
134
|
FailureRedirectionURL: string | undefined;
|
|
333
135
|
}
|
|
334
|
-
export declare class CustomVerificationEmailInvalidContentException extends __BaseException {
|
|
335
|
-
readonly name: "CustomVerificationEmailInvalidContentException";
|
|
336
|
-
readonly $fault: "client";
|
|
337
|
-
constructor(
|
|
338
|
-
opts: __ExceptionOptionType<
|
|
339
|
-
CustomVerificationEmailInvalidContentException,
|
|
340
|
-
__BaseException
|
|
341
|
-
>
|
|
342
|
-
);
|
|
343
|
-
}
|
|
344
|
-
export declare class CustomVerificationEmailTemplateAlreadyExistsException extends __BaseException {
|
|
345
|
-
readonly name: "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
346
|
-
readonly $fault: "client";
|
|
347
|
-
CustomVerificationEmailTemplateName?: string | undefined;
|
|
348
|
-
constructor(
|
|
349
|
-
opts: __ExceptionOptionType<
|
|
350
|
-
CustomVerificationEmailTemplateAlreadyExistsException,
|
|
351
|
-
__BaseException
|
|
352
|
-
>
|
|
353
|
-
);
|
|
354
|
-
}
|
|
355
|
-
export declare class FromEmailAddressNotVerifiedException extends __BaseException {
|
|
356
|
-
readonly name: "FromEmailAddressNotVerifiedException";
|
|
357
|
-
readonly $fault: "client";
|
|
358
|
-
FromEmailAddress?: string | undefined;
|
|
359
|
-
constructor(
|
|
360
|
-
opts: __ExceptionOptionType<
|
|
361
|
-
FromEmailAddressNotVerifiedException,
|
|
362
|
-
__BaseException
|
|
363
|
-
>
|
|
364
|
-
);
|
|
365
|
-
}
|
|
366
|
-
export declare const ReceiptFilterPolicy: {
|
|
367
|
-
readonly Allow: "Allow";
|
|
368
|
-
readonly Block: "Block";
|
|
369
|
-
};
|
|
370
|
-
export type ReceiptFilterPolicy =
|
|
371
|
-
(typeof ReceiptFilterPolicy)[keyof typeof ReceiptFilterPolicy];
|
|
372
136
|
export interface ReceiptIpFilter {
|
|
373
137
|
Policy: ReceiptFilterPolicy | undefined;
|
|
374
138
|
Cidr: string | undefined;
|
|
@@ -381,12 +145,6 @@ export interface CreateReceiptFilterRequest {
|
|
|
381
145
|
Filter: ReceiptFilter | undefined;
|
|
382
146
|
}
|
|
383
147
|
export interface CreateReceiptFilterResponse {}
|
|
384
|
-
export declare const InvocationType: {
|
|
385
|
-
readonly Event: "Event";
|
|
386
|
-
readonly RequestResponse: "RequestResponse";
|
|
387
|
-
};
|
|
388
|
-
export type InvocationType =
|
|
389
|
-
(typeof InvocationType)[keyof typeof InvocationType];
|
|
390
148
|
export interface LambdaAction {
|
|
391
149
|
TopicArn?: string | undefined;
|
|
392
150
|
FunctionArn: string | undefined;
|
|
@@ -399,20 +157,10 @@ export interface S3Action {
|
|
|
399
157
|
KmsKeyArn?: string | undefined;
|
|
400
158
|
IamRoleArn?: string | undefined;
|
|
401
159
|
}
|
|
402
|
-
export declare const SNSActionEncoding: {
|
|
403
|
-
readonly Base64: "Base64";
|
|
404
|
-
readonly UTF8: "UTF-8";
|
|
405
|
-
};
|
|
406
|
-
export type SNSActionEncoding =
|
|
407
|
-
(typeof SNSActionEncoding)[keyof typeof SNSActionEncoding];
|
|
408
160
|
export interface SNSAction {
|
|
409
161
|
TopicArn: string | undefined;
|
|
410
162
|
Encoding?: SNSActionEncoding | undefined;
|
|
411
163
|
}
|
|
412
|
-
export declare const StopScope: {
|
|
413
|
-
readonly RULE_SET: "RuleSet";
|
|
414
|
-
};
|
|
415
|
-
export type StopScope = (typeof StopScope)[keyof typeof StopScope];
|
|
416
164
|
export interface StopAction {
|
|
417
165
|
Scope: StopScope | undefined;
|
|
418
166
|
TopicArn?: string | undefined;
|
|
@@ -431,11 +179,6 @@ export interface ReceiptAction {
|
|
|
431
179
|
SNSAction?: SNSAction | undefined;
|
|
432
180
|
ConnectAction?: ConnectAction | undefined;
|
|
433
181
|
}
|
|
434
|
-
export declare const TlsPolicy: {
|
|
435
|
-
readonly Optional: "Optional";
|
|
436
|
-
readonly Require: "Require";
|
|
437
|
-
};
|
|
438
|
-
export type TlsPolicy = (typeof TlsPolicy)[keyof typeof TlsPolicy];
|
|
439
182
|
export interface ReceiptRule {
|
|
440
183
|
Name: string | undefined;
|
|
441
184
|
Enabled?: boolean | undefined;
|
|
@@ -450,41 +193,6 @@ export interface CreateReceiptRuleRequest {
|
|
|
450
193
|
Rule: ReceiptRule | undefined;
|
|
451
194
|
}
|
|
452
195
|
export interface CreateReceiptRuleResponse {}
|
|
453
|
-
export declare class InvalidLambdaFunctionException extends __BaseException {
|
|
454
|
-
readonly name: "InvalidLambdaFunctionException";
|
|
455
|
-
readonly $fault: "client";
|
|
456
|
-
FunctionArn?: string | undefined;
|
|
457
|
-
constructor(
|
|
458
|
-
opts: __ExceptionOptionType<InvalidLambdaFunctionException, __BaseException>
|
|
459
|
-
);
|
|
460
|
-
}
|
|
461
|
-
export declare class InvalidS3ConfigurationException extends __BaseException {
|
|
462
|
-
readonly name: "InvalidS3ConfigurationException";
|
|
463
|
-
readonly $fault: "client";
|
|
464
|
-
Bucket?: string | undefined;
|
|
465
|
-
constructor(
|
|
466
|
-
opts: __ExceptionOptionType<
|
|
467
|
-
InvalidS3ConfigurationException,
|
|
468
|
-
__BaseException
|
|
469
|
-
>
|
|
470
|
-
);
|
|
471
|
-
}
|
|
472
|
-
export declare class InvalidSnsTopicException extends __BaseException {
|
|
473
|
-
readonly name: "InvalidSnsTopicException";
|
|
474
|
-
readonly $fault: "client";
|
|
475
|
-
Topic?: string | undefined;
|
|
476
|
-
constructor(
|
|
477
|
-
opts: __ExceptionOptionType<InvalidSnsTopicException, __BaseException>
|
|
478
|
-
);
|
|
479
|
-
}
|
|
480
|
-
export declare class RuleDoesNotExistException extends __BaseException {
|
|
481
|
-
readonly name: "RuleDoesNotExistException";
|
|
482
|
-
readonly $fault: "client";
|
|
483
|
-
Name?: string | undefined;
|
|
484
|
-
constructor(
|
|
485
|
-
opts: __ExceptionOptionType<RuleDoesNotExistException, __BaseException>
|
|
486
|
-
);
|
|
487
|
-
}
|
|
488
196
|
export interface CreateReceiptRuleSetRequest {
|
|
489
197
|
RuleSetName: string | undefined;
|
|
490
198
|
}
|
|
@@ -499,22 +207,6 @@ export interface CreateTemplateRequest {
|
|
|
499
207
|
Template: Template | undefined;
|
|
500
208
|
}
|
|
501
209
|
export interface CreateTemplateResponse {}
|
|
502
|
-
export declare class InvalidTemplateException extends __BaseException {
|
|
503
|
-
readonly name: "InvalidTemplateException";
|
|
504
|
-
readonly $fault: "client";
|
|
505
|
-
TemplateName?: string | undefined;
|
|
506
|
-
constructor(
|
|
507
|
-
opts: __ExceptionOptionType<InvalidTemplateException, __BaseException>
|
|
508
|
-
);
|
|
509
|
-
}
|
|
510
|
-
export declare const CustomMailFromStatus: {
|
|
511
|
-
readonly Failed: "Failed";
|
|
512
|
-
readonly Pending: "Pending";
|
|
513
|
-
readonly Success: "Success";
|
|
514
|
-
readonly TemporaryFailure: "TemporaryFailure";
|
|
515
|
-
};
|
|
516
|
-
export type CustomMailFromStatus =
|
|
517
|
-
(typeof CustomMailFromStatus)[keyof typeof CustomMailFromStatus];
|
|
518
210
|
export interface CustomVerificationEmailTemplate {
|
|
519
211
|
TemplateName?: string | undefined;
|
|
520
212
|
FromEmailAddress?: string | undefined;
|
|
@@ -522,17 +214,6 @@ export interface CustomVerificationEmailTemplate {
|
|
|
522
214
|
SuccessRedirectionURL?: string | undefined;
|
|
523
215
|
FailureRedirectionURL?: string | undefined;
|
|
524
216
|
}
|
|
525
|
-
export declare class CustomVerificationEmailTemplateDoesNotExistException extends __BaseException {
|
|
526
|
-
readonly name: "CustomVerificationEmailTemplateDoesNotExistException";
|
|
527
|
-
readonly $fault: "client";
|
|
528
|
-
CustomVerificationEmailTemplateName?: string | undefined;
|
|
529
|
-
constructor(
|
|
530
|
-
opts: __ExceptionOptionType<
|
|
531
|
-
CustomVerificationEmailTemplateDoesNotExistException,
|
|
532
|
-
__BaseException
|
|
533
|
-
>
|
|
534
|
-
);
|
|
535
|
-
}
|
|
536
217
|
export interface DeleteConfigurationSetRequest {
|
|
537
218
|
ConfigurationSetName: string | undefined;
|
|
538
219
|
}
|
|
@@ -542,33 +223,10 @@ export interface DeleteConfigurationSetEventDestinationRequest {
|
|
|
542
223
|
EventDestinationName: string | undefined;
|
|
543
224
|
}
|
|
544
225
|
export interface DeleteConfigurationSetEventDestinationResponse {}
|
|
545
|
-
export declare class EventDestinationDoesNotExistException extends __BaseException {
|
|
546
|
-
readonly name: "EventDestinationDoesNotExistException";
|
|
547
|
-
readonly $fault: "client";
|
|
548
|
-
ConfigurationSetName?: string | undefined;
|
|
549
|
-
EventDestinationName?: string | undefined;
|
|
550
|
-
constructor(
|
|
551
|
-
opts: __ExceptionOptionType<
|
|
552
|
-
EventDestinationDoesNotExistException,
|
|
553
|
-
__BaseException
|
|
554
|
-
>
|
|
555
|
-
);
|
|
556
|
-
}
|
|
557
226
|
export interface DeleteConfigurationSetTrackingOptionsRequest {
|
|
558
227
|
ConfigurationSetName: string | undefined;
|
|
559
228
|
}
|
|
560
229
|
export interface DeleteConfigurationSetTrackingOptionsResponse {}
|
|
561
|
-
export declare class TrackingOptionsDoesNotExistException extends __BaseException {
|
|
562
|
-
readonly name: "TrackingOptionsDoesNotExistException";
|
|
563
|
-
readonly $fault: "client";
|
|
564
|
-
ConfigurationSetName?: string | undefined;
|
|
565
|
-
constructor(
|
|
566
|
-
opts: __ExceptionOptionType<
|
|
567
|
-
TrackingOptionsDoesNotExistException,
|
|
568
|
-
__BaseException
|
|
569
|
-
>
|
|
570
|
-
);
|
|
571
|
-
}
|
|
572
230
|
export interface DeleteCustomVerificationEmailTemplateRequest {
|
|
573
231
|
TemplateName: string | undefined;
|
|
574
232
|
}
|
|
@@ -643,15 +301,6 @@ export interface DescribeReceiptRuleSetResponse {
|
|
|
643
301
|
Metadata?: ReceiptRuleSetMetadata | undefined;
|
|
644
302
|
Rules?: ReceiptRule[] | undefined;
|
|
645
303
|
}
|
|
646
|
-
export declare const VerificationStatus: {
|
|
647
|
-
readonly Failed: "Failed";
|
|
648
|
-
readonly NotStarted: "NotStarted";
|
|
649
|
-
readonly Pending: "Pending";
|
|
650
|
-
readonly Success: "Success";
|
|
651
|
-
readonly TemporaryFailure: "TemporaryFailure";
|
|
652
|
-
};
|
|
653
|
-
export type VerificationStatus =
|
|
654
|
-
(typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
655
304
|
export interface IdentityDkimAttributes {
|
|
656
305
|
DkimEnabled: boolean | undefined;
|
|
657
306
|
DkimVerificationStatus: VerificationStatus | undefined;
|
|
@@ -747,47 +396,6 @@ export interface GetTemplateRequest {
|
|
|
747
396
|
export interface GetTemplateResponse {
|
|
748
397
|
Template?: Template | undefined;
|
|
749
398
|
}
|
|
750
|
-
export declare class TemplateDoesNotExistException extends __BaseException {
|
|
751
|
-
readonly name: "TemplateDoesNotExistException";
|
|
752
|
-
readonly $fault: "client";
|
|
753
|
-
TemplateName?: string | undefined;
|
|
754
|
-
constructor(
|
|
755
|
-
opts: __ExceptionOptionType<TemplateDoesNotExistException, __BaseException>
|
|
756
|
-
);
|
|
757
|
-
}
|
|
758
|
-
export declare const IdentityType: {
|
|
759
|
-
readonly Domain: "Domain";
|
|
760
|
-
readonly EmailAddress: "EmailAddress";
|
|
761
|
-
};
|
|
762
|
-
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
763
|
-
export declare class InvalidDeliveryOptionsException extends __BaseException {
|
|
764
|
-
readonly name: "InvalidDeliveryOptionsException";
|
|
765
|
-
readonly $fault: "client";
|
|
766
|
-
constructor(
|
|
767
|
-
opts: __ExceptionOptionType<
|
|
768
|
-
InvalidDeliveryOptionsException,
|
|
769
|
-
__BaseException
|
|
770
|
-
>
|
|
771
|
-
);
|
|
772
|
-
}
|
|
773
|
-
export declare class InvalidPolicyException extends __BaseException {
|
|
774
|
-
readonly name: "InvalidPolicyException";
|
|
775
|
-
readonly $fault: "client";
|
|
776
|
-
constructor(
|
|
777
|
-
opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
|
|
778
|
-
);
|
|
779
|
-
}
|
|
780
|
-
export declare class InvalidRenderingParameterException extends __BaseException {
|
|
781
|
-
readonly name: "InvalidRenderingParameterException";
|
|
782
|
-
readonly $fault: "client";
|
|
783
|
-
TemplateName?: string | undefined;
|
|
784
|
-
constructor(
|
|
785
|
-
opts: __ExceptionOptionType<
|
|
786
|
-
InvalidRenderingParameterException,
|
|
787
|
-
__BaseException
|
|
788
|
-
>
|
|
789
|
-
);
|
|
790
|
-
}
|
|
791
399
|
export interface ListConfigurationSetsRequest {
|
|
792
400
|
NextToken?: string | undefined;
|
|
793
401
|
MaxItems?: number | undefined;
|
|
@@ -847,16 +455,6 @@ export interface ListTemplatesResponse {
|
|
|
847
455
|
export interface ListVerifiedEmailAddressesResponse {
|
|
848
456
|
VerifiedEmailAddresses?: string[] | undefined;
|
|
849
457
|
}
|
|
850
|
-
export declare class MailFromDomainNotVerifiedException extends __BaseException {
|
|
851
|
-
readonly name: "MailFromDomainNotVerifiedException";
|
|
852
|
-
readonly $fault: "client";
|
|
853
|
-
constructor(
|
|
854
|
-
opts: __ExceptionOptionType<
|
|
855
|
-
MailFromDomainNotVerifiedException,
|
|
856
|
-
__BaseException
|
|
857
|
-
>
|
|
858
|
-
);
|
|
859
|
-
}
|
|
860
458
|
export interface Message {
|
|
861
459
|
Subject: Content | undefined;
|
|
862
460
|
Body: Body | undefined;
|
|
@@ -866,39 +464,6 @@ export interface MessageDsn {
|
|
|
866
464
|
ArrivalDate?: Date | undefined;
|
|
867
465
|
ExtensionFields?: ExtensionField[] | undefined;
|
|
868
466
|
}
|
|
869
|
-
export declare class MessageRejected extends __BaseException {
|
|
870
|
-
readonly name: "MessageRejected";
|
|
871
|
-
readonly $fault: "client";
|
|
872
|
-
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
873
|
-
}
|
|
874
|
-
export declare class MissingRenderingAttributeException extends __BaseException {
|
|
875
|
-
readonly name: "MissingRenderingAttributeException";
|
|
876
|
-
readonly $fault: "client";
|
|
877
|
-
TemplateName?: string | undefined;
|
|
878
|
-
constructor(
|
|
879
|
-
opts: __ExceptionOptionType<
|
|
880
|
-
MissingRenderingAttributeException,
|
|
881
|
-
__BaseException
|
|
882
|
-
>
|
|
883
|
-
);
|
|
884
|
-
}
|
|
885
|
-
export declare const NotificationType: {
|
|
886
|
-
readonly Bounce: "Bounce";
|
|
887
|
-
readonly Complaint: "Complaint";
|
|
888
|
-
readonly Delivery: "Delivery";
|
|
889
|
-
};
|
|
890
|
-
export type NotificationType =
|
|
891
|
-
(typeof NotificationType)[keyof typeof NotificationType];
|
|
892
|
-
export declare class ProductionAccessNotGrantedException extends __BaseException {
|
|
893
|
-
readonly name: "ProductionAccessNotGrantedException";
|
|
894
|
-
readonly $fault: "client";
|
|
895
|
-
constructor(
|
|
896
|
-
opts: __ExceptionOptionType<
|
|
897
|
-
ProductionAccessNotGrantedException,
|
|
898
|
-
__BaseException
|
|
899
|
-
>
|
|
900
|
-
);
|
|
901
|
-
}
|
|
902
467
|
export interface PutConfigurationSetDeliveryOptionsRequest {
|
|
903
468
|
ConfigurationSetName: string | undefined;
|
|
904
469
|
DeliveryOptions?: DeliveryOptions | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ses",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ses Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ses",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|