@distilled.cloud/aws 0.30.2 → 0.30.3
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/lib/client/response-parser.d.ts.map +1 -1
- package/lib/client/response-parser.js +9 -1
- package/lib/client/response-parser.js.map +1 -1
- package/lib/services/cloudfront.d.ts +1 -1
- package/lib/services/cloudfront.d.ts.map +1 -1
- package/lib/services/cloudfront.js +234 -488
- package/lib/services/cloudfront.js.map +1 -1
- package/lib/services/datasync.d.ts +1 -1
- package/lib/services/datasync.d.ts.map +1 -1
- package/lib/services/datasync.js +55 -104
- package/lib/services/datasync.js.map +1 -1
- package/lib/services/ses.d.ts +8 -2
- package/lib/services/ses.d.ts.map +1 -1
- package/lib/services/ses.js +135 -191
- package/lib/services/ses.js.map +1 -1
- package/package.json +2 -2
- package/src/client/response-parser.ts +13 -1
- package/src/services/cloudfront.ts +2315 -2479
- package/src/services/datasync.ts +523 -553
- package/src/services/ses.ts +826 -724
package/lib/services/ses.js
CHANGED
|
@@ -63,19 +63,16 @@ const rules = T.EndpointResolver((p, _) => {
|
|
|
63
63
|
export const CloneReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String, OriginalRuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
64
64
|
identifier: "CloneReceiptRuleSetRequest",
|
|
65
65
|
});
|
|
66
|
-
export const CloneReceiptRuleSetResponse =
|
|
67
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
66
|
+
export const CloneReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
68
67
|
identifier: "CloneReceiptRuleSetResponse",
|
|
69
68
|
});
|
|
70
69
|
export const ConfigurationSet = /*@__PURE__*/ S.suspend(() => S.Struct({ Name: S.String })).annotate({
|
|
71
70
|
identifier: "ConfigurationSet",
|
|
72
71
|
});
|
|
73
|
-
export const CreateConfigurationSetRequest =
|
|
74
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ ConfigurationSet: ConfigurationSet }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
72
|
+
export const CreateConfigurationSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ ConfigurationSet: ConfigurationSet }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
75
73
|
identifier: "CreateConfigurationSetRequest",
|
|
76
74
|
});
|
|
77
|
-
export const CreateConfigurationSetResponse =
|
|
78
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
75
|
+
export const CreateConfigurationSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
79
76
|
identifier: "CreateConfigurationSetResponse",
|
|
80
77
|
});
|
|
81
78
|
export const EventType = /*@__PURE__*/ S.String;
|
|
@@ -84,16 +81,14 @@ export const KinesisFirehoseDestination = /*@__PURE__*/ S.suspend(() => S.Struct
|
|
|
84
81
|
identifier: "KinesisFirehoseDestination",
|
|
85
82
|
});
|
|
86
83
|
export const DimensionValueSource = /*@__PURE__*/ S.String;
|
|
87
|
-
export const CloudWatchDimensionConfiguration =
|
|
88
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
84
|
+
export const CloudWatchDimensionConfiguration = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
89
85
|
DimensionName: S.String,
|
|
90
86
|
DimensionValueSource: DimensionValueSource,
|
|
91
87
|
DefaultDimensionValue: S.String,
|
|
92
88
|
})).annotate({
|
|
93
89
|
identifier: "CloudWatchDimensionConfiguration",
|
|
94
90
|
});
|
|
95
|
-
export const CloudWatchDimensionConfigurations =
|
|
96
|
-
/*@__PURE__*/ S.Array(CloudWatchDimensionConfiguration);
|
|
91
|
+
export const CloudWatchDimensionConfigurations = /*@__PURE__*/ S.Array(CloudWatchDimensionConfiguration);
|
|
97
92
|
export const CloudWatchDestination = /*@__PURE__*/ S.suspend(() => S.Struct({ DimensionConfigurations: CloudWatchDimensionConfigurations })).annotate({
|
|
98
93
|
identifier: "CloudWatchDestination",
|
|
99
94
|
});
|
|
@@ -156,8 +151,7 @@ export const ReceiptFilter = /*@__PURE__*/ S.suspend(() => S.Struct({ Name: S.St
|
|
|
156
151
|
export const CreateReceiptFilterRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Filter: ReceiptFilter }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
157
152
|
identifier: "CreateReceiptFilterRequest",
|
|
158
153
|
});
|
|
159
|
-
export const CreateReceiptFilterResponse =
|
|
160
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
154
|
+
export const CreateReceiptFilterResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
161
155
|
identifier: "CreateReceiptFilterResponse",
|
|
162
156
|
});
|
|
163
157
|
export const TlsPolicy = /*@__PURE__*/ S.String;
|
|
@@ -220,12 +214,10 @@ export const CreateReceiptRuleRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
220
214
|
export const CreateReceiptRuleResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
221
215
|
identifier: "CreateReceiptRuleResponse",
|
|
222
216
|
});
|
|
223
|
-
export const CreateReceiptRuleSetRequest =
|
|
224
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
217
|
+
export const CreateReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
225
218
|
identifier: "CreateReceiptRuleSetRequest",
|
|
226
219
|
});
|
|
227
|
-
export const CreateReceiptRuleSetResponse =
|
|
228
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
220
|
+
export const CreateReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
229
221
|
identifier: "CreateReceiptRuleSetResponse",
|
|
230
222
|
});
|
|
231
223
|
export const Template = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
@@ -240,12 +232,10 @@ export const CreateTemplateRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Te
|
|
|
240
232
|
export const CreateTemplateResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
241
233
|
identifier: "CreateTemplateResponse",
|
|
242
234
|
});
|
|
243
|
-
export const DeleteConfigurationSetRequest =
|
|
244
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ ConfigurationSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
235
|
+
export const DeleteConfigurationSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ ConfigurationSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
245
236
|
identifier: "DeleteConfigurationSetRequest",
|
|
246
237
|
});
|
|
247
|
-
export const DeleteConfigurationSetResponse =
|
|
248
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
238
|
+
export const DeleteConfigurationSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
249
239
|
identifier: "DeleteConfigurationSetResponse",
|
|
250
240
|
});
|
|
251
241
|
export const DeleteConfigurationSetEventDestinationRequest =
|
|
@@ -281,19 +271,16 @@ export const DeleteIdentityRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Id
|
|
|
281
271
|
export const DeleteIdentityResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
282
272
|
identifier: "DeleteIdentityResponse",
|
|
283
273
|
});
|
|
284
|
-
export const DeleteIdentityPolicyRequest =
|
|
285
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String, PolicyName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
274
|
+
export const DeleteIdentityPolicyRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String, PolicyName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
286
275
|
identifier: "DeleteIdentityPolicyRequest",
|
|
287
276
|
});
|
|
288
|
-
export const DeleteIdentityPolicyResponse =
|
|
289
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
277
|
+
export const DeleteIdentityPolicyResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
290
278
|
identifier: "DeleteIdentityPolicyResponse",
|
|
291
279
|
});
|
|
292
280
|
export const DeleteReceiptFilterRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ FilterName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
293
281
|
identifier: "DeleteReceiptFilterRequest",
|
|
294
282
|
});
|
|
295
|
-
export const DeleteReceiptFilterResponse =
|
|
296
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
283
|
+
export const DeleteReceiptFilterResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
297
284
|
identifier: "DeleteReceiptFilterResponse",
|
|
298
285
|
});
|
|
299
286
|
export const DeleteReceiptRuleRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String, RuleName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
@@ -302,12 +289,10 @@ export const DeleteReceiptRuleRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
302
289
|
export const DeleteReceiptRuleResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
303
290
|
identifier: "DeleteReceiptRuleResponse",
|
|
304
291
|
});
|
|
305
|
-
export const DeleteReceiptRuleSetRequest =
|
|
306
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
292
|
+
export const DeleteReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
307
293
|
identifier: "DeleteReceiptRuleSetRequest",
|
|
308
294
|
});
|
|
309
|
-
export const DeleteReceiptRuleSetResponse =
|
|
310
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
295
|
+
export const DeleteReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
311
296
|
identifier: "DeleteReceiptRuleSetResponse",
|
|
312
297
|
});
|
|
313
298
|
export const DeleteTemplateRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ TemplateName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
@@ -316,16 +301,13 @@ export const DeleteTemplateRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Te
|
|
|
316
301
|
export const DeleteTemplateResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
317
302
|
identifier: "DeleteTemplateResponse",
|
|
318
303
|
});
|
|
319
|
-
export const DeleteVerifiedEmailAddressRequest =
|
|
320
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ EmailAddress: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
304
|
+
export const DeleteVerifiedEmailAddressRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ EmailAddress: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
321
305
|
identifier: "DeleteVerifiedEmailAddressRequest",
|
|
322
306
|
});
|
|
323
|
-
export const DeleteVerifiedEmailAddressResponse =
|
|
324
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
307
|
+
export const DeleteVerifiedEmailAddressResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
325
308
|
identifier: "DeleteVerifiedEmailAddressResponse",
|
|
326
309
|
});
|
|
327
|
-
export const DescribeActiveReceiptRuleSetRequest =
|
|
328
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
310
|
+
export const DescribeActiveReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
329
311
|
identifier: "DescribeActiveReceiptRuleSetRequest",
|
|
330
312
|
});
|
|
331
313
|
export const ReceiptRuleSetMetadata = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
@@ -335,18 +317,15 @@ export const ReceiptRuleSetMetadata = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
335
317
|
identifier: "ReceiptRuleSetMetadata",
|
|
336
318
|
});
|
|
337
319
|
export const ReceiptRulesList = /*@__PURE__*/ S.Array(ReceiptRule);
|
|
338
|
-
export const DescribeActiveReceiptRuleSetResponse =
|
|
339
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
320
|
+
export const DescribeActiveReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
340
321
|
Metadata: S.optional(ReceiptRuleSetMetadata),
|
|
341
322
|
Rules: S.optional(ReceiptRulesList),
|
|
342
323
|
}).pipe(ns)).annotate({
|
|
343
324
|
identifier: "DescribeActiveReceiptRuleSetResponse",
|
|
344
325
|
});
|
|
345
326
|
export const ConfigurationSetAttribute = /*@__PURE__*/ S.String;
|
|
346
|
-
export const ConfigurationSetAttributeList =
|
|
347
|
-
/*@__PURE__*/ S.
|
|
348
|
-
export const DescribeConfigurationSetRequest =
|
|
349
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
327
|
+
export const ConfigurationSetAttributeList = /*@__PURE__*/ S.Array(ConfigurationSetAttribute);
|
|
328
|
+
export const DescribeConfigurationSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
350
329
|
ConfigurationSetName: S.String,
|
|
351
330
|
ConfigurationSetAttributeNames: S.optional(ConfigurationSetAttributeList),
|
|
352
331
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
@@ -363,8 +342,7 @@ export const ReputationOptions = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
363
342
|
})).annotate({
|
|
364
343
|
identifier: "ReputationOptions",
|
|
365
344
|
});
|
|
366
|
-
export const DescribeConfigurationSetResponse =
|
|
367
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
345
|
+
export const DescribeConfigurationSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
368
346
|
ConfigurationSet: S.optional(ConfigurationSet),
|
|
369
347
|
EventDestinations: S.optional(EventDestinations),
|
|
370
348
|
TrackingOptions: S.optional(TrackingOptions),
|
|
@@ -376,27 +354,22 @@ export const DescribeConfigurationSetResponse =
|
|
|
376
354
|
export const DescribeReceiptRuleRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String, RuleName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
377
355
|
identifier: "DescribeReceiptRuleRequest",
|
|
378
356
|
});
|
|
379
|
-
export const DescribeReceiptRuleResponse =
|
|
380
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Rule: S.optional(ReceiptRule) }).pipe(ns)).annotate({
|
|
357
|
+
export const DescribeReceiptRuleResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ Rule: S.optional(ReceiptRule) }).pipe(ns)).annotate({
|
|
381
358
|
identifier: "DescribeReceiptRuleResponse",
|
|
382
359
|
});
|
|
383
|
-
export const DescribeReceiptRuleSetRequest =
|
|
384
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
360
|
+
export const DescribeReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
385
361
|
identifier: "DescribeReceiptRuleSetRequest",
|
|
386
362
|
});
|
|
387
|
-
export const DescribeReceiptRuleSetResponse =
|
|
388
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
363
|
+
export const DescribeReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
389
364
|
Metadata: S.optional(ReceiptRuleSetMetadata),
|
|
390
365
|
Rules: S.optional(ReceiptRulesList),
|
|
391
366
|
}).pipe(ns)).annotate({
|
|
392
367
|
identifier: "DescribeReceiptRuleSetResponse",
|
|
393
368
|
});
|
|
394
|
-
export const GetAccountSendingEnabledRequest =
|
|
395
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
369
|
+
export const GetAccountSendingEnabledRequest = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
396
370
|
identifier: "GetAccountSendingEnabledRequest",
|
|
397
371
|
});
|
|
398
|
-
export const GetAccountSendingEnabledResponse =
|
|
399
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Enabled: S.optional(S.Boolean) }).pipe(ns)).annotate({
|
|
372
|
+
export const GetAccountSendingEnabledResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ Enabled: S.optional(S.Boolean) }).pipe(ns)).annotate({
|
|
400
373
|
identifier: "GetAccountSendingEnabledResponse",
|
|
401
374
|
});
|
|
402
375
|
export const GetCustomVerificationEmailTemplateRequest =
|
|
@@ -415,8 +388,7 @@ export const GetCustomVerificationEmailTemplateResponse =
|
|
|
415
388
|
identifier: "GetCustomVerificationEmailTemplateResponse",
|
|
416
389
|
});
|
|
417
390
|
export const IdentityList = /*@__PURE__*/ S.Array(S.String);
|
|
418
|
-
export const GetIdentityDkimAttributesRequest =
|
|
419
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
391
|
+
export const GetIdentityDkimAttributesRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
420
392
|
identifier: "GetIdentityDkimAttributesRequest",
|
|
421
393
|
});
|
|
422
394
|
export const VerificationStatus = /*@__PURE__*/ S.String;
|
|
@@ -429,8 +401,7 @@ export const IdentityDkimAttributes = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
429
401
|
identifier: "IdentityDkimAttributes",
|
|
430
402
|
});
|
|
431
403
|
export const DkimAttributes = /*@__PURE__*/ S.Record(S.String, IdentityDkimAttributes.pipe(S.optional));
|
|
432
|
-
export const GetIdentityDkimAttributesResponse =
|
|
433
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ DkimAttributes: DkimAttributes }).pipe(ns)).annotate({
|
|
404
|
+
export const GetIdentityDkimAttributesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ DkimAttributes: DkimAttributes }).pipe(ns)).annotate({
|
|
434
405
|
identifier: "GetIdentityDkimAttributesResponse",
|
|
435
406
|
});
|
|
436
407
|
export const GetIdentityMailFromDomainAttributesRequest =
|
|
@@ -439,8 +410,7 @@ export const GetIdentityMailFromDomainAttributesRequest =
|
|
|
439
410
|
});
|
|
440
411
|
export const CustomMailFromStatus = /*@__PURE__*/ S.String;
|
|
441
412
|
export const BehaviorOnMXFailure = /*@__PURE__*/ S.String;
|
|
442
|
-
export const IdentityMailFromDomainAttributes =
|
|
443
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
413
|
+
export const IdentityMailFromDomainAttributes = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
444
414
|
MailFromDomain: S.String,
|
|
445
415
|
MailFromDomainStatus: CustomMailFromStatus,
|
|
446
416
|
BehaviorOnMXFailure: BehaviorOnMXFailure,
|
|
@@ -452,12 +422,10 @@ export const GetIdentityMailFromDomainAttributesResponse =
|
|
|
452
422
|
/*@__PURE__*/ S.suspend(() => S.Struct({ MailFromDomainAttributes: MailFromDomainAttributes }).pipe(ns)).annotate({
|
|
453
423
|
identifier: "GetIdentityMailFromDomainAttributesResponse",
|
|
454
424
|
});
|
|
455
|
-
export const GetIdentityNotificationAttributesRequest =
|
|
456
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
425
|
+
export const GetIdentityNotificationAttributesRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
457
426
|
identifier: "GetIdentityNotificationAttributesRequest",
|
|
458
427
|
});
|
|
459
|
-
export const IdentityNotificationAttributes =
|
|
460
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
428
|
+
export const IdentityNotificationAttributes = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
461
429
|
BounceTopic: S.String,
|
|
462
430
|
ComplaintTopic: S.String,
|
|
463
431
|
DeliveryTopic: S.String,
|
|
@@ -478,16 +446,13 @@ export const GetIdentityPoliciesRequest = /*@__PURE__*/ S.suspend(() => S.Struct
|
|
|
478
446
|
identifier: "GetIdentityPoliciesRequest",
|
|
479
447
|
});
|
|
480
448
|
export const PolicyMap = /*@__PURE__*/ S.Record(S.String, S.String.pipe(S.optional));
|
|
481
|
-
export const GetIdentityPoliciesResponse =
|
|
482
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Policies: PolicyMap }).pipe(ns)).annotate({
|
|
449
|
+
export const GetIdentityPoliciesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ Policies: PolicyMap }).pipe(ns)).annotate({
|
|
483
450
|
identifier: "GetIdentityPoliciesResponse",
|
|
484
451
|
});
|
|
485
|
-
export const GetIdentityVerificationAttributesRequest =
|
|
486
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
452
|
+
export const GetIdentityVerificationAttributesRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
487
453
|
identifier: "GetIdentityVerificationAttributesRequest",
|
|
488
454
|
});
|
|
489
|
-
export const IdentityVerificationAttributes =
|
|
490
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
455
|
+
export const IdentityVerificationAttributes = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
491
456
|
VerificationStatus: VerificationStatus,
|
|
492
457
|
VerificationToken: S.optional(S.String),
|
|
493
458
|
})).annotate({
|
|
@@ -528,16 +493,14 @@ export const GetTemplateRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Templ
|
|
|
528
493
|
export const GetTemplateResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ Template: S.optional(Template) }).pipe(ns)).annotate({
|
|
529
494
|
identifier: "GetTemplateResponse",
|
|
530
495
|
});
|
|
531
|
-
export const ListConfigurationSetsRequest =
|
|
532
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
496
|
+
export const ListConfigurationSetsRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
533
497
|
NextToken: S.optional(S.String),
|
|
534
498
|
MaxItems: S.optional(S.Number),
|
|
535
499
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
536
500
|
identifier: "ListConfigurationSetsRequest",
|
|
537
501
|
});
|
|
538
502
|
export const ConfigurationSets = /*@__PURE__*/ S.Array(ConfigurationSet);
|
|
539
|
-
export const ListConfigurationSetsResponse =
|
|
540
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
503
|
+
export const ListConfigurationSetsResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
541
504
|
ConfigurationSets: S.optional(ConfigurationSets),
|
|
542
505
|
NextToken: S.optional(S.String),
|
|
543
506
|
}).pipe(ns)).annotate({
|
|
@@ -550,8 +513,7 @@ export const ListCustomVerificationEmailTemplatesRequest =
|
|
|
550
513
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
551
514
|
identifier: "ListCustomVerificationEmailTemplatesRequest",
|
|
552
515
|
});
|
|
553
|
-
export const CustomVerificationEmailTemplate =
|
|
554
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
516
|
+
export const CustomVerificationEmailTemplate = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
555
517
|
TemplateName: S.optional(S.String),
|
|
556
518
|
FromEmailAddress: S.optional(S.String),
|
|
557
519
|
TemplateSubject: S.optional(S.String),
|
|
@@ -560,8 +522,7 @@ export const CustomVerificationEmailTemplate =
|
|
|
560
522
|
})).annotate({
|
|
561
523
|
identifier: "CustomVerificationEmailTemplate",
|
|
562
524
|
});
|
|
563
|
-
export const CustomVerificationEmailTemplates =
|
|
564
|
-
/*@__PURE__*/ S.Array(CustomVerificationEmailTemplate);
|
|
525
|
+
export const CustomVerificationEmailTemplates = /*@__PURE__*/ S.Array(CustomVerificationEmailTemplate);
|
|
565
526
|
export const ListCustomVerificationEmailTemplatesResponse =
|
|
566
527
|
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
567
528
|
CustomVerificationEmailTemplates: S.optional(CustomVerificationEmailTemplates),
|
|
@@ -577,18 +538,13 @@ export const ListIdentitiesRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
577
538
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
578
539
|
identifier: "ListIdentitiesRequest",
|
|
579
540
|
});
|
|
580
|
-
export const ListIdentitiesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
581
|
-
Identities: IdentityList,
|
|
582
|
-
NextToken: S.optional(S.String),
|
|
583
|
-
}).pipe(ns)).annotate({
|
|
541
|
+
export const ListIdentitiesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ Identities: IdentityList, NextToken: S.optional(S.String) }).pipe(ns)).annotate({
|
|
584
542
|
identifier: "ListIdentitiesResponse",
|
|
585
543
|
});
|
|
586
|
-
export const ListIdentityPoliciesRequest =
|
|
587
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
544
|
+
export const ListIdentityPoliciesRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
588
545
|
identifier: "ListIdentityPoliciesRequest",
|
|
589
546
|
});
|
|
590
|
-
export const ListIdentityPoliciesResponse =
|
|
591
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ PolicyNames: PolicyNameList }).pipe(ns)).annotate({
|
|
547
|
+
export const ListIdentityPoliciesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ PolicyNames: PolicyNameList }).pipe(ns)).annotate({
|
|
592
548
|
identifier: "ListIdentityPoliciesResponse",
|
|
593
549
|
});
|
|
594
550
|
export const ListReceiptFiltersRequest = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
@@ -602,8 +558,7 @@ export const ListReceiptRuleSetsRequest = /*@__PURE__*/ S.suspend(() => S.Struct
|
|
|
602
558
|
identifier: "ListReceiptRuleSetsRequest",
|
|
603
559
|
});
|
|
604
560
|
export const ReceiptRuleSetsLists = /*@__PURE__*/ S.Array(ReceiptRuleSetMetadata);
|
|
605
|
-
export const ListReceiptRuleSetsResponse =
|
|
606
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
561
|
+
export const ListReceiptRuleSetsResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
607
562
|
RuleSets: S.optional(ReceiptRuleSetsLists),
|
|
608
563
|
NextToken: S.optional(S.String),
|
|
609
564
|
}).pipe(ns)).annotate({
|
|
@@ -628,13 +583,11 @@ export const ListTemplatesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
628
583
|
}).pipe(ns)).annotate({
|
|
629
584
|
identifier: "ListTemplatesResponse",
|
|
630
585
|
});
|
|
631
|
-
export const ListVerifiedEmailAddressesRequest =
|
|
632
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
586
|
+
export const ListVerifiedEmailAddressesRequest = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
633
587
|
identifier: "ListVerifiedEmailAddressesRequest",
|
|
634
588
|
});
|
|
635
589
|
export const AddressList = /*@__PURE__*/ S.Array(S.String);
|
|
636
|
-
export const ListVerifiedEmailAddressesResponse =
|
|
637
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ VerifiedEmailAddresses: S.optional(AddressList) }).pipe(ns)).annotate({
|
|
590
|
+
export const ListVerifiedEmailAddressesResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ VerifiedEmailAddresses: S.optional(AddressList) }).pipe(ns)).annotate({
|
|
638
591
|
identifier: "ListVerifiedEmailAddressesResponse",
|
|
639
592
|
});
|
|
640
593
|
export const PutConfigurationSetDeliveryOptionsRequest =
|
|
@@ -648,23 +601,17 @@ export const PutConfigurationSetDeliveryOptionsResponse =
|
|
|
648
601
|
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
649
602
|
identifier: "PutConfigurationSetDeliveryOptionsResponse",
|
|
650
603
|
});
|
|
651
|
-
export const PutIdentityPolicyRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
652
|
-
Identity: S.String,
|
|
653
|
-
PolicyName: S.String,
|
|
654
|
-
Policy: S.String,
|
|
655
|
-
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
604
|
+
export const PutIdentityPolicyRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String, PolicyName: S.String, Policy: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
656
605
|
identifier: "PutIdentityPolicyRequest",
|
|
657
606
|
});
|
|
658
607
|
export const PutIdentityPolicyResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
659
608
|
identifier: "PutIdentityPolicyResponse",
|
|
660
609
|
});
|
|
661
610
|
export const ReceiptRuleNamesList = /*@__PURE__*/ S.Array(S.String);
|
|
662
|
-
export const ReorderReceiptRuleSetRequest =
|
|
663
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String, RuleNames: ReceiptRuleNamesList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
611
|
+
export const ReorderReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.String, RuleNames: ReceiptRuleNamesList }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
664
612
|
identifier: "ReorderReceiptRuleSetRequest",
|
|
665
613
|
});
|
|
666
|
-
export const ReorderReceiptRuleSetResponse =
|
|
667
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
614
|
+
export const ReorderReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
668
615
|
identifier: "ReorderReceiptRuleSetResponse",
|
|
669
616
|
});
|
|
670
617
|
export const ExtensionField = /*@__PURE__*/ S.suspend(() => S.Struct({ Name: S.String, Value: S.String })).annotate({ identifier: "ExtensionField" });
|
|
@@ -726,8 +673,7 @@ export const BulkEmailDestination = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
726
673
|
});
|
|
727
674
|
export const BulkEmailDestinationList =
|
|
728
675
|
/*@__PURE__*/ S.Array(BulkEmailDestination);
|
|
729
|
-
export const SendBulkTemplatedEmailRequest =
|
|
730
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
676
|
+
export const SendBulkTemplatedEmailRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
731
677
|
Source: S.String,
|
|
732
678
|
SourceArn: S.optional(S.String),
|
|
733
679
|
ReplyToAddresses: S.optional(AddressList),
|
|
@@ -750,22 +696,18 @@ export const BulkEmailDestinationStatus = /*@__PURE__*/ S.suspend(() => S.Struct
|
|
|
750
696
|
})).annotate({
|
|
751
697
|
identifier: "BulkEmailDestinationStatus",
|
|
752
698
|
});
|
|
753
|
-
export const BulkEmailDestinationStatusList =
|
|
754
|
-
/*@__PURE__*/ S.
|
|
755
|
-
export const SendBulkTemplatedEmailResponse =
|
|
756
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Status: BulkEmailDestinationStatusList }).pipe(ns)).annotate({
|
|
699
|
+
export const BulkEmailDestinationStatusList = /*@__PURE__*/ S.Array(BulkEmailDestinationStatus);
|
|
700
|
+
export const SendBulkTemplatedEmailResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ Status: BulkEmailDestinationStatusList }).pipe(ns)).annotate({
|
|
757
701
|
identifier: "SendBulkTemplatedEmailResponse",
|
|
758
702
|
});
|
|
759
|
-
export const SendCustomVerificationEmailRequest =
|
|
760
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
703
|
+
export const SendCustomVerificationEmailRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
761
704
|
EmailAddress: S.String,
|
|
762
705
|
TemplateName: S.String,
|
|
763
706
|
ConfigurationSetName: S.optional(S.String),
|
|
764
707
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
765
708
|
identifier: "SendCustomVerificationEmailRequest",
|
|
766
709
|
});
|
|
767
|
-
export const SendCustomVerificationEmailResponse =
|
|
768
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ MessageId: S.optional(S.String) }).pipe(ns)).annotate({
|
|
710
|
+
export const SendCustomVerificationEmailResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ MessageId: S.optional(S.String) }).pipe(ns)).annotate({
|
|
769
711
|
identifier: "SendCustomVerificationEmailResponse",
|
|
770
712
|
});
|
|
771
713
|
export const Content = /*@__PURE__*/ S.suspend(() => S.Struct({ Data: S.String, Charset: S.optional(S.String) })).annotate({ identifier: "Content" });
|
|
@@ -821,20 +763,16 @@ export const SendTemplatedEmailRequest = /*@__PURE__*/ S.suspend(() => S.Struct(
|
|
|
821
763
|
export const SendTemplatedEmailResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ MessageId: S.String }).pipe(ns)).annotate({
|
|
822
764
|
identifier: "SendTemplatedEmailResponse",
|
|
823
765
|
});
|
|
824
|
-
export const SetActiveReceiptRuleSetRequest =
|
|
825
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.optional(S.String) }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
766
|
+
export const SetActiveReceiptRuleSetRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ RuleSetName: S.optional(S.String) }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
826
767
|
identifier: "SetActiveReceiptRuleSetRequest",
|
|
827
768
|
});
|
|
828
|
-
export const SetActiveReceiptRuleSetResponse =
|
|
829
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
769
|
+
export const SetActiveReceiptRuleSetResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
830
770
|
identifier: "SetActiveReceiptRuleSetResponse",
|
|
831
771
|
});
|
|
832
|
-
export const SetIdentityDkimEnabledRequest =
|
|
833
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String, DkimEnabled: S.Boolean }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
772
|
+
export const SetIdentityDkimEnabledRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Identity: S.String, DkimEnabled: S.Boolean }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
834
773
|
identifier: "SetIdentityDkimEnabledRequest",
|
|
835
774
|
});
|
|
836
|
-
export const SetIdentityDkimEnabledResponse =
|
|
837
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
775
|
+
export const SetIdentityDkimEnabledResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
838
776
|
identifier: "SetIdentityDkimEnabledResponse",
|
|
839
777
|
});
|
|
840
778
|
export const SetIdentityFeedbackForwardingEnabledRequest =
|
|
@@ -858,40 +796,34 @@ export const SetIdentityHeadersInNotificationsEnabledResponse =
|
|
|
858
796
|
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
859
797
|
identifier: "SetIdentityHeadersInNotificationsEnabledResponse",
|
|
860
798
|
});
|
|
861
|
-
export const SetIdentityMailFromDomainRequest =
|
|
862
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
799
|
+
export const SetIdentityMailFromDomainRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
863
800
|
Identity: S.String,
|
|
864
801
|
MailFromDomain: S.optional(S.String),
|
|
865
802
|
BehaviorOnMXFailure: S.optional(BehaviorOnMXFailure),
|
|
866
803
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
867
804
|
identifier: "SetIdentityMailFromDomainRequest",
|
|
868
805
|
});
|
|
869
|
-
export const SetIdentityMailFromDomainResponse =
|
|
870
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
806
|
+
export const SetIdentityMailFromDomainResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
871
807
|
identifier: "SetIdentityMailFromDomainResponse",
|
|
872
808
|
});
|
|
873
|
-
export const SetIdentityNotificationTopicRequest =
|
|
874
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
809
|
+
export const SetIdentityNotificationTopicRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
875
810
|
Identity: S.String,
|
|
876
811
|
NotificationType: NotificationType,
|
|
877
812
|
SnsTopic: S.optional(S.String),
|
|
878
813
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
879
814
|
identifier: "SetIdentityNotificationTopicRequest",
|
|
880
815
|
});
|
|
881
|
-
export const SetIdentityNotificationTopicResponse =
|
|
882
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
816
|
+
export const SetIdentityNotificationTopicResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
883
817
|
identifier: "SetIdentityNotificationTopicResponse",
|
|
884
818
|
});
|
|
885
|
-
export const SetReceiptRulePositionRequest =
|
|
886
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({
|
|
819
|
+
export const SetReceiptRulePositionRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
887
820
|
RuleSetName: S.String,
|
|
888
821
|
RuleName: S.String,
|
|
889
822
|
After: S.optional(S.String),
|
|
890
823
|
}).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
891
824
|
identifier: "SetReceiptRulePositionRequest",
|
|
892
825
|
});
|
|
893
|
-
export const SetReceiptRulePositionResponse =
|
|
894
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
826
|
+
export const SetReceiptRulePositionResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
895
827
|
identifier: "SetReceiptRulePositionResponse",
|
|
896
828
|
});
|
|
897
829
|
export const TestRenderTemplateRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ TemplateName: S.String, TemplateData: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
@@ -900,12 +832,10 @@ export const TestRenderTemplateRequest = /*@__PURE__*/ S.suspend(() => S.Struct(
|
|
|
900
832
|
export const TestRenderTemplateResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ RenderedTemplate: S.optional(S.String) }).pipe(ns)).annotate({
|
|
901
833
|
identifier: "TestRenderTemplateResponse",
|
|
902
834
|
});
|
|
903
|
-
export const UpdateAccountSendingEnabledRequest =
|
|
904
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Enabled: S.optional(S.Boolean) }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
835
|
+
export const UpdateAccountSendingEnabledRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Enabled: S.optional(S.Boolean) }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
905
836
|
identifier: "UpdateAccountSendingEnabledRequest",
|
|
906
837
|
});
|
|
907
|
-
export const UpdateAccountSendingEnabledResponse =
|
|
908
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
838
|
+
export const UpdateAccountSendingEnabledResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
909
839
|
identifier: "UpdateAccountSendingEnabledResponse",
|
|
910
840
|
});
|
|
911
841
|
export const UpdateConfigurationSetEventDestinationRequest =
|
|
@@ -979,12 +909,10 @@ export const VerifyDomainDkimRequest = /*@__PURE__*/ S.suspend(() => S.Struct({
|
|
|
979
909
|
export const VerifyDomainDkimResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ DkimTokens: VerificationTokenList }).pipe(ns)).annotate({
|
|
980
910
|
identifier: "VerifyDomainDkimResponse",
|
|
981
911
|
});
|
|
982
|
-
export const VerifyDomainIdentityRequest =
|
|
983
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ Domain: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
912
|
+
export const VerifyDomainIdentityRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ Domain: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
984
913
|
identifier: "VerifyDomainIdentityRequest",
|
|
985
914
|
});
|
|
986
|
-
export const VerifyDomainIdentityResponse =
|
|
987
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({ VerificationToken: S.String }).pipe(ns)).annotate({
|
|
915
|
+
export const VerifyDomainIdentityResponse = /*@__PURE__*/ S.suspend(() => S.Struct({ VerificationToken: S.String }).pipe(ns)).annotate({
|
|
988
916
|
identifier: "VerifyDomainIdentityResponse",
|
|
989
917
|
});
|
|
990
918
|
export const VerifyEmailAddressRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ EmailAddress: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
@@ -996,152 +924,164 @@ export const VerifyEmailAddressResponse = /*@__PURE__*/ S.suspend(() => S.Struct
|
|
|
996
924
|
export const VerifyEmailIdentityRequest = /*@__PURE__*/ S.suspend(() => S.Struct({ EmailAddress: S.String }).pipe(T.all(ns, T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotate({
|
|
997
925
|
identifier: "VerifyEmailIdentityRequest",
|
|
998
926
|
});
|
|
999
|
-
export const VerifyEmailIdentityResponse =
|
|
1000
|
-
/*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
927
|
+
export const VerifyEmailIdentityResponse = /*@__PURE__*/ S.suspend(() => S.Struct({}).pipe(ns)).annotate({
|
|
1001
928
|
identifier: "VerifyEmailIdentityResponse",
|
|
1002
929
|
});
|
|
1003
930
|
//# Errors
|
|
1004
|
-
export class AlreadyExistsException extends S.TaggedErrorClass()("AlreadyExistsException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({ code: "AlreadyExists", httpResponseCode: 400 })).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
931
|
+
export class AlreadyExistsException extends S.TaggedErrorClass()("AlreadyExistsException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "AlreadyExists", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
1005
932
|
}
|
|
1006
|
-
export class LimitExceededException extends S.TaggedErrorClass()("LimitExceededException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "LimitExceeded", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
933
|
+
export class LimitExceededException extends S.TaggedErrorClass()("LimitExceededException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "LimitExceeded", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1007
934
|
}
|
|
1008
|
-
export class RuleSetDoesNotExistException extends S.TaggedErrorClass()("RuleSetDoesNotExistException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({ code: "RuleSetDoesNotExist", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
935
|
+
export class RuleSetDoesNotExistException extends S.TaggedErrorClass()("RuleSetDoesNotExistException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "RuleSetDoesNotExist", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1009
936
|
}
|
|
1010
|
-
export class ConfigurationSetAlreadyExistsException extends S.TaggedErrorClass()("ConfigurationSetAlreadyExistsException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({
|
|
937
|
+
export class ConfigurationSetAlreadyExistsException extends S.TaggedErrorClass()("ConfigurationSetAlreadyExistsException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1011
938
|
code: "ConfigurationSetAlreadyExists",
|
|
1012
939
|
httpResponseCode: 400,
|
|
1013
|
-
})).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
940
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
1014
941
|
}
|
|
1015
|
-
export class InvalidConfigurationSetException extends S.TaggedErrorClass()("InvalidConfigurationSetException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidConfigurationSet", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
942
|
+
export class InvalidConfigurationSetException extends S.TaggedErrorClass()("InvalidConfigurationSetException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidConfigurationSet", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1016
943
|
}
|
|
1017
|
-
export class ConfigurationSetDoesNotExistException extends S.TaggedErrorClass()("ConfigurationSetDoesNotExistException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({
|
|
944
|
+
export class ConfigurationSetDoesNotExistException extends S.TaggedErrorClass()("ConfigurationSetDoesNotExistException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1018
945
|
code: "ConfigurationSetDoesNotExist",
|
|
1019
946
|
httpResponseCode: 400,
|
|
1020
|
-
})).pipe(C.withBadRequestError) {
|
|
947
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1021
948
|
}
|
|
1022
949
|
export class EventDestinationAlreadyExistsException extends S.TaggedErrorClass()("EventDestinationAlreadyExistsException", {
|
|
1023
950
|
ConfigurationSetName: S.optional(S.String),
|
|
1024
951
|
EventDestinationName: S.optional(S.String),
|
|
1025
952
|
message: S.optional(S.String),
|
|
1026
|
-
}, T.AwsQueryError({
|
|
953
|
+
}, T.all(T.AwsQueryError({
|
|
1027
954
|
code: "EventDestinationAlreadyExists",
|
|
1028
955
|
httpResponseCode: 400,
|
|
1029
|
-
})).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
956
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
1030
957
|
}
|
|
1031
958
|
export class InvalidCloudWatchDestinationException extends S.TaggedErrorClass()("InvalidCloudWatchDestinationException", {
|
|
1032
959
|
ConfigurationSetName: S.optional(S.String),
|
|
1033
960
|
EventDestinationName: S.optional(S.String),
|
|
1034
961
|
message: S.optional(S.String),
|
|
1035
|
-
}, T.AwsQueryError({
|
|
962
|
+
}, T.all(T.AwsQueryError({
|
|
1036
963
|
code: "InvalidCloudWatchDestination",
|
|
1037
964
|
httpResponseCode: 400,
|
|
1038
|
-
})).pipe(C.withBadRequestError) {
|
|
965
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1039
966
|
}
|
|
1040
967
|
export class InvalidFirehoseDestinationException extends S.TaggedErrorClass()("InvalidFirehoseDestinationException", {
|
|
1041
968
|
ConfigurationSetName: S.optional(S.String),
|
|
1042
969
|
EventDestinationName: S.optional(S.String),
|
|
1043
970
|
message: S.optional(S.String),
|
|
1044
|
-
}, T.AwsQueryError({
|
|
971
|
+
}, T.all(T.AwsQueryError({
|
|
1045
972
|
code: "InvalidFirehoseDestination",
|
|
1046
973
|
httpResponseCode: 400,
|
|
1047
|
-
})).pipe(C.withBadRequestError) {
|
|
974
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1048
975
|
}
|
|
1049
976
|
export class InvalidSNSDestinationException extends S.TaggedErrorClass()("InvalidSNSDestinationException", {
|
|
1050
977
|
ConfigurationSetName: S.optional(S.String),
|
|
1051
978
|
EventDestinationName: S.optional(S.String),
|
|
1052
979
|
message: S.optional(S.String),
|
|
1053
|
-
}, T.AwsQueryError({ code: "InvalidSNSDestination", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
980
|
+
}, T.all(T.AwsQueryError({ code: "InvalidSNSDestination", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1054
981
|
}
|
|
1055
|
-
export class InvalidTrackingOptionsException extends S.TaggedErrorClass()("InvalidTrackingOptionsException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidTrackingOptions", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
982
|
+
export class InvalidTrackingOptionsException extends S.TaggedErrorClass()("InvalidTrackingOptionsException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidTrackingOptions", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1056
983
|
}
|
|
1057
|
-
export class TrackingOptionsAlreadyExistsException extends S.TaggedErrorClass()("TrackingOptionsAlreadyExistsException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({
|
|
984
|
+
export class TrackingOptionsAlreadyExistsException extends S.TaggedErrorClass()("TrackingOptionsAlreadyExistsException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1058
985
|
code: "TrackingOptionsAlreadyExistsException",
|
|
1059
986
|
httpResponseCode: 400,
|
|
1060
|
-
})).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
987
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
1061
988
|
}
|
|
1062
|
-
export class CustomVerificationEmailInvalidContentException extends S.TaggedErrorClass()("CustomVerificationEmailInvalidContentException", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
989
|
+
export class CustomVerificationEmailInvalidContentException extends S.TaggedErrorClass()("CustomVerificationEmailInvalidContentException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1063
990
|
code: "CustomVerificationEmailInvalidContent",
|
|
1064
991
|
httpResponseCode: 400,
|
|
1065
|
-
})).pipe(C.withBadRequestError) {
|
|
992
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1066
993
|
}
|
|
1067
994
|
export class CustomVerificationEmailTemplateAlreadyExistsException extends S.TaggedErrorClass()("CustomVerificationEmailTemplateAlreadyExistsException", {
|
|
1068
995
|
CustomVerificationEmailTemplateName: S.optional(S.String),
|
|
1069
996
|
message: S.optional(S.String),
|
|
1070
|
-
}, T.AwsQueryError({
|
|
997
|
+
}, T.all(T.AwsQueryError({
|
|
1071
998
|
code: "CustomVerificationEmailTemplateAlreadyExists",
|
|
1072
999
|
httpResponseCode: 400,
|
|
1073
|
-
})).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
1000
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
1074
1001
|
}
|
|
1075
|
-
export class FromEmailAddressNotVerifiedException extends S.TaggedErrorClass()("FromEmailAddressNotVerifiedException", { FromEmailAddress: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({
|
|
1002
|
+
export class FromEmailAddressNotVerifiedException extends S.TaggedErrorClass()("FromEmailAddressNotVerifiedException", { FromEmailAddress: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1076
1003
|
code: "FromEmailAddressNotVerified",
|
|
1077
1004
|
httpResponseCode: 400,
|
|
1078
|
-
})).pipe(C.withBadRequestError) {
|
|
1005
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1006
|
+
}
|
|
1007
|
+
export class InvalidLambdaFunctionException extends S.TaggedErrorClass()("InvalidLambdaFunctionException", { FunctionArn: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidLambdaFunction", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1008
|
+
}
|
|
1009
|
+
export class InvalidS3ConfigurationException extends S.TaggedErrorClass()("InvalidS3ConfigurationException", { Bucket: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidS3Configuration", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1079
1010
|
}
|
|
1080
|
-
export class
|
|
1011
|
+
export class InvalidSnsTopicException extends S.TaggedErrorClass()("InvalidSnsTopicException", { Topic: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidSnsTopic", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1081
1012
|
}
|
|
1082
|
-
export class
|
|
1013
|
+
export class RuleDoesNotExistException extends S.TaggedErrorClass()("RuleDoesNotExistException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "RuleDoesNotExist", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1083
1014
|
}
|
|
1084
|
-
export class
|
|
1015
|
+
export class InvalidParameterValue extends S.TaggedErrorClass()("InvalidParameterValue", {}) {
|
|
1085
1016
|
}
|
|
1086
|
-
export class
|
|
1017
|
+
export class IdentityNotVerified extends S.TaggedErrorClass()("IdentityNotVerified", {}, T.SyntheticError({
|
|
1018
|
+
from: "InvalidParameterValue",
|
|
1019
|
+
message: { includes: "Identity is not verified" },
|
|
1020
|
+
})) {
|
|
1087
1021
|
}
|
|
1088
|
-
export class InvalidTemplateException extends S.TaggedErrorClass()("InvalidTemplateException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidTemplate", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
1022
|
+
export class InvalidTemplateException extends S.TaggedErrorClass()("InvalidTemplateException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidTemplate", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1089
1023
|
}
|
|
1090
1024
|
export class EventDestinationDoesNotExistException extends S.TaggedErrorClass()("EventDestinationDoesNotExistException", {
|
|
1091
1025
|
ConfigurationSetName: S.optional(S.String),
|
|
1092
1026
|
EventDestinationName: S.optional(S.String),
|
|
1093
1027
|
message: S.optional(S.String),
|
|
1094
|
-
}, T.AwsQueryError({
|
|
1028
|
+
}, T.all(T.AwsQueryError({
|
|
1095
1029
|
code: "EventDestinationDoesNotExist",
|
|
1096
1030
|
httpResponseCode: 400,
|
|
1097
|
-
})).pipe(C.withBadRequestError) {
|
|
1031
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1098
1032
|
}
|
|
1099
|
-
export class TrackingOptionsDoesNotExistException extends S.TaggedErrorClass()("TrackingOptionsDoesNotExistException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({
|
|
1033
|
+
export class TrackingOptionsDoesNotExistException extends S.TaggedErrorClass()("TrackingOptionsDoesNotExistException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1100
1034
|
code: "TrackingOptionsDoesNotExistException",
|
|
1101
1035
|
httpResponseCode: 400,
|
|
1102
|
-
})).pipe(C.withBadRequestError) {
|
|
1036
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1103
1037
|
}
|
|
1104
|
-
export class CannotDeleteException extends S.TaggedErrorClass()("CannotDeleteException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({ code: "CannotDelete", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
1038
|
+
export class CannotDeleteException extends S.TaggedErrorClass()("CannotDeleteException", { Name: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "CannotDelete", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1105
1039
|
}
|
|
1106
1040
|
export class CustomVerificationEmailTemplateDoesNotExistException extends S.TaggedErrorClass()("CustomVerificationEmailTemplateDoesNotExistException", {
|
|
1107
1041
|
CustomVerificationEmailTemplateName: S.optional(S.String),
|
|
1108
1042
|
message: S.optional(S.String),
|
|
1109
|
-
}, T.AwsQueryError({
|
|
1043
|
+
}, T.all(T.AwsQueryError({
|
|
1110
1044
|
code: "CustomVerificationEmailTemplateDoesNotExist",
|
|
1111
1045
|
httpResponseCode: 400,
|
|
1112
|
-
})).pipe(C.withBadRequestError) {
|
|
1046
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1113
1047
|
}
|
|
1114
|
-
export class TemplateDoesNotExistException extends S.TaggedErrorClass()("TemplateDoesNotExistException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({ code: "TemplateDoesNotExist", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
1048
|
+
export class TemplateDoesNotExistException extends S.TaggedErrorClass()("TemplateDoesNotExistException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "TemplateDoesNotExist", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1115
1049
|
}
|
|
1116
|
-
export class InvalidDeliveryOptionsException extends S.TaggedErrorClass()("InvalidDeliveryOptionsException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidDeliveryOptions", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
1050
|
+
export class InvalidDeliveryOptionsException extends S.TaggedErrorClass()("InvalidDeliveryOptionsException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidDeliveryOptions", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1117
1051
|
}
|
|
1118
|
-
export class InvalidPolicyException extends S.TaggedErrorClass()("InvalidPolicyException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidPolicy", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
1052
|
+
export class InvalidPolicyException extends S.TaggedErrorClass()("InvalidPolicyException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "InvalidPolicy", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1119
1053
|
}
|
|
1120
|
-
export class MessageRejected extends S.TaggedErrorClass()("MessageRejected", { message: S.optional(S.String) }, T.AwsQueryError({ code: "MessageRejected", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
1054
|
+
export class MessageRejected extends S.TaggedErrorClass()("MessageRejected", { message: S.optional(S.String) }, T.all(T.AwsQueryError({ code: "MessageRejected", httpResponseCode: 400 }), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1121
1055
|
}
|
|
1122
|
-
export class AccountSendingPausedException extends S.TaggedErrorClass()("AccountSendingPausedException", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
1056
|
+
export class AccountSendingPausedException extends S.TaggedErrorClass()("AccountSendingPausedException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1123
1057
|
code: "AccountSendingPausedException",
|
|
1124
1058
|
httpResponseCode: 400,
|
|
1125
|
-
})).pipe(C.withBadRequestError) {
|
|
1059
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1126
1060
|
}
|
|
1127
|
-
export class ConfigurationSetSendingPausedException extends S.TaggedErrorClass()("ConfigurationSetSendingPausedException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.AwsQueryError({
|
|
1061
|
+
export class ConfigurationSetSendingPausedException extends S.TaggedErrorClass()("ConfigurationSetSendingPausedException", { ConfigurationSetName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1128
1062
|
code: "ConfigurationSetSendingPausedException",
|
|
1129
1063
|
httpResponseCode: 400,
|
|
1130
|
-
})).pipe(C.withBadRequestError) {
|
|
1064
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1131
1065
|
}
|
|
1132
|
-
export class MailFromDomainNotVerifiedException extends S.TaggedErrorClass()("MailFromDomainNotVerifiedException", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
1066
|
+
export class MailFromDomainNotVerifiedException extends S.TaggedErrorClass()("MailFromDomainNotVerifiedException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1133
1067
|
code: "MailFromDomainNotVerifiedException",
|
|
1134
1068
|
httpResponseCode: 400,
|
|
1135
|
-
})).pipe(C.withBadRequestError) {
|
|
1069
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1136
1070
|
}
|
|
1137
|
-
export class ProductionAccessNotGrantedException extends S.TaggedErrorClass()("ProductionAccessNotGrantedException", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
1071
|
+
export class ProductionAccessNotGrantedException extends S.TaggedErrorClass()("ProductionAccessNotGrantedException", { message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1138
1072
|
code: "ProductionAccessNotGranted",
|
|
1139
1073
|
httpResponseCode: 400,
|
|
1140
|
-
})).pipe(C.withBadRequestError) {
|
|
1074
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1141
1075
|
}
|
|
1142
|
-
export class InvalidRenderingParameterException extends S.TaggedErrorClass()("InvalidRenderingParameterException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.
|
|
1076
|
+
export class InvalidRenderingParameterException extends S.TaggedErrorClass()("InvalidRenderingParameterException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1077
|
+
code: "InvalidRenderingParameter",
|
|
1078
|
+
httpResponseCode: 400,
|
|
1079
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1143
1080
|
}
|
|
1144
|
-
export class MissingRenderingAttributeException extends S.TaggedErrorClass()("MissingRenderingAttributeException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.
|
|
1081
|
+
export class MissingRenderingAttributeException extends S.TaggedErrorClass()("MissingRenderingAttributeException", { TemplateName: S.optional(S.String), message: S.optional(S.String) }, T.all(T.AwsQueryError({
|
|
1082
|
+
code: "MissingRenderingAttribute",
|
|
1083
|
+
httpResponseCode: 400,
|
|
1084
|
+
}), T.HttpError(400))).pipe(C.withBadRequestError) {
|
|
1145
1085
|
}
|
|
1146
1086
|
/**
|
|
1147
1087
|
* Creates a receipt rule set by cloning an existing one. All receipt rules and
|
|
@@ -1278,6 +1218,8 @@ export const createReceiptRule = /*@__PURE__*/ API.make(() => ({
|
|
|
1278
1218
|
LimitExceededException,
|
|
1279
1219
|
RuleDoesNotExistException,
|
|
1280
1220
|
RuleSetDoesNotExistException,
|
|
1221
|
+
InvalidParameterValue,
|
|
1222
|
+
IdentityNotVerified,
|
|
1281
1223
|
],
|
|
1282
1224
|
operationName: "CreateReceiptRule",
|
|
1283
1225
|
}));
|
|
@@ -2447,6 +2389,8 @@ export const updateReceiptRule = /*@__PURE__*/ API.make(() => ({
|
|
|
2447
2389
|
LimitExceededException,
|
|
2448
2390
|
RuleDoesNotExistException,
|
|
2449
2391
|
RuleSetDoesNotExistException,
|
|
2392
|
+
InvalidParameterValue,
|
|
2393
|
+
IdentityNotVerified,
|
|
2450
2394
|
],
|
|
2451
2395
|
operationName: "UpdateReceiptRule",
|
|
2452
2396
|
}));
|