aws-sdk-ses 1.57.0 → 1.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ses/client.rb +1 -1
- data/lib/aws-sdk-ses/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-ses.rb +1 -1
- data/sig/client.rbs +1066 -0
- data/sig/errors.rbs +113 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1141 -0
- data/sig/waiters.rbs +23 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1141 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::SES
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccountSendingPausedException < Aws::EmptyStructure
|
12
|
+
end
|
13
|
+
|
14
|
+
class AddHeaderAction
|
15
|
+
attr_accessor header_name: ::String
|
16
|
+
attr_accessor header_value: ::String
|
17
|
+
SENSITIVE: []
|
18
|
+
end
|
19
|
+
|
20
|
+
class AlreadyExistsException
|
21
|
+
attr_accessor name: ::String
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class Body
|
26
|
+
attr_accessor text: Types::Content
|
27
|
+
attr_accessor html: Types::Content
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class BounceAction
|
32
|
+
attr_accessor topic_arn: ::String
|
33
|
+
attr_accessor smtp_reply_code: ::String
|
34
|
+
attr_accessor status_code: ::String
|
35
|
+
attr_accessor message: ::String
|
36
|
+
attr_accessor sender: ::String
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class BouncedRecipientInfo
|
41
|
+
attr_accessor recipient: ::String
|
42
|
+
attr_accessor recipient_arn: ::String
|
43
|
+
attr_accessor bounce_type: ("DoesNotExist" | "MessageTooLarge" | "ExceededQuota" | "ContentRejected" | "Undefined" | "TemporaryFailure")
|
44
|
+
attr_accessor recipient_dsn_fields: Types::RecipientDsnFields
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class BulkEmailDestination
|
49
|
+
attr_accessor destination: Types::Destination
|
50
|
+
attr_accessor replacement_tags: ::Array[Types::MessageTag]
|
51
|
+
attr_accessor replacement_template_data: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class BulkEmailDestinationStatus
|
56
|
+
attr_accessor status: ("Success" | "MessageRejected" | "MailFromDomainNotVerified" | "ConfigurationSetDoesNotExist" | "TemplateDoesNotExist" | "AccountSuspended" | "AccountThrottled" | "AccountDailyQuotaExceeded" | "InvalidSendingPoolName" | "AccountSendingPaused" | "ConfigurationSetSendingPaused" | "InvalidParameterValue" | "TransientFailure" | "Failed")
|
57
|
+
attr_accessor error: ::String
|
58
|
+
attr_accessor message_id: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class CannotDeleteException
|
63
|
+
attr_accessor name: ::String
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class CloneReceiptRuleSetRequest
|
68
|
+
attr_accessor rule_set_name: ::String
|
69
|
+
attr_accessor original_rule_set_name: ::String
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class CloneReceiptRuleSetResponse < Aws::EmptyStructure
|
74
|
+
end
|
75
|
+
|
76
|
+
class CloudWatchDestination
|
77
|
+
attr_accessor dimension_configurations: ::Array[Types::CloudWatchDimensionConfiguration]
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class CloudWatchDimensionConfiguration
|
82
|
+
attr_accessor dimension_name: ::String
|
83
|
+
attr_accessor dimension_value_source: ("messageTag" | "emailHeader" | "linkTag")
|
84
|
+
attr_accessor default_dimension_value: ::String
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class ConfigurationSet
|
89
|
+
attr_accessor name: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class ConfigurationSetAlreadyExistsException
|
94
|
+
attr_accessor configuration_set_name: ::String
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class ConfigurationSetDoesNotExistException
|
99
|
+
attr_accessor configuration_set_name: ::String
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class ConfigurationSetSendingPausedException
|
104
|
+
attr_accessor configuration_set_name: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class Content
|
109
|
+
attr_accessor data: ::String
|
110
|
+
attr_accessor charset: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class CreateConfigurationSetEventDestinationRequest
|
115
|
+
attr_accessor configuration_set_name: ::String
|
116
|
+
attr_accessor event_destination: Types::EventDestination
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class CreateConfigurationSetEventDestinationResponse < Aws::EmptyStructure
|
121
|
+
end
|
122
|
+
|
123
|
+
class CreateConfigurationSetRequest
|
124
|
+
attr_accessor configuration_set: Types::ConfigurationSet
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class CreateConfigurationSetResponse < Aws::EmptyStructure
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateConfigurationSetTrackingOptionsRequest
|
132
|
+
attr_accessor configuration_set_name: ::String
|
133
|
+
attr_accessor tracking_options: Types::TrackingOptions
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class CreateConfigurationSetTrackingOptionsResponse < Aws::EmptyStructure
|
138
|
+
end
|
139
|
+
|
140
|
+
class CreateCustomVerificationEmailTemplateRequest
|
141
|
+
attr_accessor template_name: ::String
|
142
|
+
attr_accessor from_email_address: ::String
|
143
|
+
attr_accessor template_subject: ::String
|
144
|
+
attr_accessor template_content: ::String
|
145
|
+
attr_accessor success_redirection_url: ::String
|
146
|
+
attr_accessor failure_redirection_url: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class CreateReceiptFilterRequest
|
151
|
+
attr_accessor filter: Types::ReceiptFilter
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateReceiptFilterResponse < Aws::EmptyStructure
|
156
|
+
end
|
157
|
+
|
158
|
+
class CreateReceiptRuleRequest
|
159
|
+
attr_accessor rule_set_name: ::String
|
160
|
+
attr_accessor after: ::String
|
161
|
+
attr_accessor rule: Types::ReceiptRule
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class CreateReceiptRuleResponse < Aws::EmptyStructure
|
166
|
+
end
|
167
|
+
|
168
|
+
class CreateReceiptRuleSetRequest
|
169
|
+
attr_accessor rule_set_name: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class CreateReceiptRuleSetResponse < Aws::EmptyStructure
|
174
|
+
end
|
175
|
+
|
176
|
+
class CreateTemplateRequest
|
177
|
+
attr_accessor template: Types::Template
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class CreateTemplateResponse < Aws::EmptyStructure
|
182
|
+
end
|
183
|
+
|
184
|
+
class CustomVerificationEmailInvalidContentException < Aws::EmptyStructure
|
185
|
+
end
|
186
|
+
|
187
|
+
class CustomVerificationEmailTemplate
|
188
|
+
attr_accessor template_name: ::String
|
189
|
+
attr_accessor from_email_address: ::String
|
190
|
+
attr_accessor template_subject: ::String
|
191
|
+
attr_accessor success_redirection_url: ::String
|
192
|
+
attr_accessor failure_redirection_url: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class CustomVerificationEmailTemplateAlreadyExistsException
|
197
|
+
attr_accessor custom_verification_email_template_name: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class CustomVerificationEmailTemplateDoesNotExistException
|
202
|
+
attr_accessor custom_verification_email_template_name: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class DeleteConfigurationSetEventDestinationRequest
|
207
|
+
attr_accessor configuration_set_name: ::String
|
208
|
+
attr_accessor event_destination_name: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class DeleteConfigurationSetEventDestinationResponse < Aws::EmptyStructure
|
213
|
+
end
|
214
|
+
|
215
|
+
class DeleteConfigurationSetRequest
|
216
|
+
attr_accessor configuration_set_name: ::String
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class DeleteConfigurationSetResponse < Aws::EmptyStructure
|
221
|
+
end
|
222
|
+
|
223
|
+
class DeleteConfigurationSetTrackingOptionsRequest
|
224
|
+
attr_accessor configuration_set_name: ::String
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class DeleteConfigurationSetTrackingOptionsResponse < Aws::EmptyStructure
|
229
|
+
end
|
230
|
+
|
231
|
+
class DeleteCustomVerificationEmailTemplateRequest
|
232
|
+
attr_accessor template_name: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class DeleteIdentityPolicyRequest
|
237
|
+
attr_accessor identity: ::String
|
238
|
+
attr_accessor policy_name: ::String
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class DeleteIdentityPolicyResponse < Aws::EmptyStructure
|
243
|
+
end
|
244
|
+
|
245
|
+
class DeleteIdentityRequest
|
246
|
+
attr_accessor identity: ::String
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class DeleteIdentityResponse < Aws::EmptyStructure
|
251
|
+
end
|
252
|
+
|
253
|
+
class DeleteReceiptFilterRequest
|
254
|
+
attr_accessor filter_name: ::String
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class DeleteReceiptFilterResponse < Aws::EmptyStructure
|
259
|
+
end
|
260
|
+
|
261
|
+
class DeleteReceiptRuleRequest
|
262
|
+
attr_accessor rule_set_name: ::String
|
263
|
+
attr_accessor rule_name: ::String
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class DeleteReceiptRuleResponse < Aws::EmptyStructure
|
268
|
+
end
|
269
|
+
|
270
|
+
class DeleteReceiptRuleSetRequest
|
271
|
+
attr_accessor rule_set_name: ::String
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class DeleteReceiptRuleSetResponse < Aws::EmptyStructure
|
276
|
+
end
|
277
|
+
|
278
|
+
class DeleteTemplateRequest
|
279
|
+
attr_accessor template_name: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class DeleteTemplateResponse < Aws::EmptyStructure
|
284
|
+
end
|
285
|
+
|
286
|
+
class DeleteVerifiedEmailAddressRequest
|
287
|
+
attr_accessor email_address: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class DeliveryOptions
|
292
|
+
attr_accessor tls_policy: ("Require" | "Optional")
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class DescribeActiveReceiptRuleSetRequest < Aws::EmptyStructure
|
297
|
+
end
|
298
|
+
|
299
|
+
class DescribeActiveReceiptRuleSetResponse
|
300
|
+
attr_accessor metadata: Types::ReceiptRuleSetMetadata
|
301
|
+
attr_accessor rules: ::Array[Types::ReceiptRule]
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class DescribeConfigurationSetRequest
|
306
|
+
attr_accessor configuration_set_name: ::String
|
307
|
+
attr_accessor configuration_set_attribute_names: ::Array[("eventDestinations" | "trackingOptions" | "deliveryOptions" | "reputationOptions")]
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class DescribeConfigurationSetResponse
|
312
|
+
attr_accessor configuration_set: Types::ConfigurationSet
|
313
|
+
attr_accessor event_destinations: ::Array[Types::EventDestination]
|
314
|
+
attr_accessor tracking_options: Types::TrackingOptions
|
315
|
+
attr_accessor delivery_options: Types::DeliveryOptions
|
316
|
+
attr_accessor reputation_options: Types::ReputationOptions
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class DescribeReceiptRuleRequest
|
321
|
+
attr_accessor rule_set_name: ::String
|
322
|
+
attr_accessor rule_name: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class DescribeReceiptRuleResponse
|
327
|
+
attr_accessor rule: Types::ReceiptRule
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class DescribeReceiptRuleSetRequest
|
332
|
+
attr_accessor rule_set_name: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class DescribeReceiptRuleSetResponse
|
337
|
+
attr_accessor metadata: Types::ReceiptRuleSetMetadata
|
338
|
+
attr_accessor rules: ::Array[Types::ReceiptRule]
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class Destination
|
343
|
+
attr_accessor to_addresses: ::Array[::String]
|
344
|
+
attr_accessor cc_addresses: ::Array[::String]
|
345
|
+
attr_accessor bcc_addresses: ::Array[::String]
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class EventDestination
|
350
|
+
attr_accessor name: ::String
|
351
|
+
attr_accessor enabled: bool
|
352
|
+
attr_accessor matching_event_types: ::Array[("send" | "reject" | "bounce" | "complaint" | "delivery" | "open" | "click" | "renderingFailure")]
|
353
|
+
attr_accessor kinesis_firehose_destination: Types::KinesisFirehoseDestination
|
354
|
+
attr_accessor cloud_watch_destination: Types::CloudWatchDestination
|
355
|
+
attr_accessor sns_destination: Types::SNSDestination
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class EventDestinationAlreadyExistsException
|
360
|
+
attr_accessor configuration_set_name: ::String
|
361
|
+
attr_accessor event_destination_name: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class EventDestinationDoesNotExistException
|
366
|
+
attr_accessor configuration_set_name: ::String
|
367
|
+
attr_accessor event_destination_name: ::String
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class ExtensionField
|
372
|
+
attr_accessor name: ::String
|
373
|
+
attr_accessor value: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class FromEmailAddressNotVerifiedException
|
378
|
+
attr_accessor from_email_address: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class GetAccountSendingEnabledResponse
|
383
|
+
attr_accessor enabled: bool
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class GetCustomVerificationEmailTemplateRequest
|
388
|
+
attr_accessor template_name: ::String
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class GetCustomVerificationEmailTemplateResponse
|
393
|
+
attr_accessor template_name: ::String
|
394
|
+
attr_accessor from_email_address: ::String
|
395
|
+
attr_accessor template_subject: ::String
|
396
|
+
attr_accessor template_content: ::String
|
397
|
+
attr_accessor success_redirection_url: ::String
|
398
|
+
attr_accessor failure_redirection_url: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class GetIdentityDkimAttributesRequest
|
403
|
+
attr_accessor identities: ::Array[::String]
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class GetIdentityDkimAttributesResponse
|
408
|
+
attr_accessor dkim_attributes: ::Hash[::String, Types::IdentityDkimAttributes]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class GetIdentityMailFromDomainAttributesRequest
|
413
|
+
attr_accessor identities: ::Array[::String]
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class GetIdentityMailFromDomainAttributesResponse
|
418
|
+
attr_accessor mail_from_domain_attributes: ::Hash[::String, Types::IdentityMailFromDomainAttributes]
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class GetIdentityNotificationAttributesRequest
|
423
|
+
attr_accessor identities: ::Array[::String]
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class GetIdentityNotificationAttributesResponse
|
428
|
+
attr_accessor notification_attributes: ::Hash[::String, Types::IdentityNotificationAttributes]
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class GetIdentityPoliciesRequest
|
433
|
+
attr_accessor identity: ::String
|
434
|
+
attr_accessor policy_names: ::Array[::String]
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class GetIdentityPoliciesResponse
|
439
|
+
attr_accessor policies: ::Hash[::String, ::String]
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class GetIdentityVerificationAttributesRequest
|
444
|
+
attr_accessor identities: ::Array[::String]
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class GetIdentityVerificationAttributesResponse
|
449
|
+
attr_accessor verification_attributes: ::Hash[::String, Types::IdentityVerificationAttributes]
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class GetSendQuotaResponse
|
454
|
+
attr_accessor max_24_hour_send: ::Float
|
455
|
+
attr_accessor max_send_rate: ::Float
|
456
|
+
attr_accessor sent_last_24_hours: ::Float
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class GetSendStatisticsResponse
|
461
|
+
attr_accessor send_data_points: ::Array[Types::SendDataPoint]
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class GetTemplateRequest
|
466
|
+
attr_accessor template_name: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class GetTemplateResponse
|
471
|
+
attr_accessor template: Types::Template
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class IdentityDkimAttributes
|
476
|
+
attr_accessor dkim_enabled: bool
|
477
|
+
attr_accessor dkim_verification_status: ("Pending" | "Success" | "Failed" | "TemporaryFailure" | "NotStarted")
|
478
|
+
attr_accessor dkim_tokens: ::Array[::String]
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class IdentityMailFromDomainAttributes
|
483
|
+
attr_accessor mail_from_domain: ::String
|
484
|
+
attr_accessor mail_from_domain_status: ("Pending" | "Success" | "Failed" | "TemporaryFailure")
|
485
|
+
attr_accessor behavior_on_mx_failure: ("UseDefaultValue" | "RejectMessage")
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class IdentityNotificationAttributes
|
490
|
+
attr_accessor bounce_topic: ::String
|
491
|
+
attr_accessor complaint_topic: ::String
|
492
|
+
attr_accessor delivery_topic: ::String
|
493
|
+
attr_accessor forwarding_enabled: bool
|
494
|
+
attr_accessor headers_in_bounce_notifications_enabled: bool
|
495
|
+
attr_accessor headers_in_complaint_notifications_enabled: bool
|
496
|
+
attr_accessor headers_in_delivery_notifications_enabled: bool
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class IdentityVerificationAttributes
|
501
|
+
attr_accessor verification_status: ("Pending" | "Success" | "Failed" | "TemporaryFailure" | "NotStarted")
|
502
|
+
attr_accessor verification_token: ::String
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class InvalidCloudWatchDestinationException
|
507
|
+
attr_accessor configuration_set_name: ::String
|
508
|
+
attr_accessor event_destination_name: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class InvalidConfigurationSetException < Aws::EmptyStructure
|
513
|
+
end
|
514
|
+
|
515
|
+
class InvalidDeliveryOptionsException < Aws::EmptyStructure
|
516
|
+
end
|
517
|
+
|
518
|
+
class InvalidFirehoseDestinationException
|
519
|
+
attr_accessor configuration_set_name: ::String
|
520
|
+
attr_accessor event_destination_name: ::String
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class InvalidLambdaFunctionException
|
525
|
+
attr_accessor function_arn: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class InvalidPolicyException < Aws::EmptyStructure
|
530
|
+
end
|
531
|
+
|
532
|
+
class InvalidRenderingParameterException
|
533
|
+
attr_accessor template_name: ::String
|
534
|
+
SENSITIVE: []
|
535
|
+
end
|
536
|
+
|
537
|
+
class InvalidS3ConfigurationException
|
538
|
+
attr_accessor bucket: ::String
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class InvalidSNSDestinationException
|
543
|
+
attr_accessor configuration_set_name: ::String
|
544
|
+
attr_accessor event_destination_name: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class InvalidSnsTopicException
|
549
|
+
attr_accessor topic: ::String
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class InvalidTemplateException
|
554
|
+
attr_accessor template_name: ::String
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class InvalidTrackingOptionsException < Aws::EmptyStructure
|
559
|
+
end
|
560
|
+
|
561
|
+
class KinesisFirehoseDestination
|
562
|
+
attr_accessor iam_role_arn: ::String
|
563
|
+
attr_accessor delivery_stream_arn: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class LambdaAction
|
568
|
+
attr_accessor topic_arn: ::String
|
569
|
+
attr_accessor function_arn: ::String
|
570
|
+
attr_accessor invocation_type: ("Event" | "RequestResponse")
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class LimitExceededException < Aws::EmptyStructure
|
575
|
+
end
|
576
|
+
|
577
|
+
class ListConfigurationSetsRequest
|
578
|
+
attr_accessor next_token: ::String
|
579
|
+
attr_accessor max_items: ::Integer
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
583
|
+
class ListConfigurationSetsResponse
|
584
|
+
attr_accessor configuration_sets: ::Array[Types::ConfigurationSet]
|
585
|
+
attr_accessor next_token: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class ListCustomVerificationEmailTemplatesRequest
|
590
|
+
attr_accessor next_token: ::String
|
591
|
+
attr_accessor max_results: ::Integer
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class ListCustomVerificationEmailTemplatesResponse
|
596
|
+
attr_accessor custom_verification_email_templates: ::Array[Types::CustomVerificationEmailTemplate]
|
597
|
+
attr_accessor next_token: ::String
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class ListIdentitiesRequest
|
602
|
+
attr_accessor identity_type: ("EmailAddress" | "Domain")
|
603
|
+
attr_accessor next_token: ::String
|
604
|
+
attr_accessor max_items: ::Integer
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class ListIdentitiesResponse
|
609
|
+
attr_accessor identities: ::Array[::String]
|
610
|
+
attr_accessor next_token: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class ListIdentityPoliciesRequest
|
615
|
+
attr_accessor identity: ::String
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class ListIdentityPoliciesResponse
|
620
|
+
attr_accessor policy_names: ::Array[::String]
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class ListReceiptFiltersRequest < Aws::EmptyStructure
|
625
|
+
end
|
626
|
+
|
627
|
+
class ListReceiptFiltersResponse
|
628
|
+
attr_accessor filters: ::Array[Types::ReceiptFilter]
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class ListReceiptRuleSetsRequest
|
633
|
+
attr_accessor next_token: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class ListReceiptRuleSetsResponse
|
638
|
+
attr_accessor rule_sets: ::Array[Types::ReceiptRuleSetMetadata]
|
639
|
+
attr_accessor next_token: ::String
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class ListTemplatesRequest
|
644
|
+
attr_accessor next_token: ::String
|
645
|
+
attr_accessor max_items: ::Integer
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class ListTemplatesResponse
|
650
|
+
attr_accessor templates_metadata: ::Array[Types::TemplateMetadata]
|
651
|
+
attr_accessor next_token: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class ListVerifiedEmailAddressesResponse
|
656
|
+
attr_accessor verified_email_addresses: ::Array[::String]
|
657
|
+
SENSITIVE: []
|
658
|
+
end
|
659
|
+
|
660
|
+
class MailFromDomainNotVerifiedException < Aws::EmptyStructure
|
661
|
+
end
|
662
|
+
|
663
|
+
class Message
|
664
|
+
attr_accessor subject: Types::Content
|
665
|
+
attr_accessor body: Types::Body
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class MessageDsn
|
670
|
+
attr_accessor reporting_mta: ::String
|
671
|
+
attr_accessor arrival_date: ::Time
|
672
|
+
attr_accessor extension_fields: ::Array[Types::ExtensionField]
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class MessageRejected < Aws::EmptyStructure
|
677
|
+
end
|
678
|
+
|
679
|
+
class MessageTag
|
680
|
+
attr_accessor name: ::String
|
681
|
+
attr_accessor value: ::String
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class MissingRenderingAttributeException
|
686
|
+
attr_accessor template_name: ::String
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class ProductionAccessNotGrantedException < Aws::EmptyStructure
|
691
|
+
end
|
692
|
+
|
693
|
+
class PutConfigurationSetDeliveryOptionsRequest
|
694
|
+
attr_accessor configuration_set_name: ::String
|
695
|
+
attr_accessor delivery_options: Types::DeliveryOptions
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class PutConfigurationSetDeliveryOptionsResponse < Aws::EmptyStructure
|
700
|
+
end
|
701
|
+
|
702
|
+
class PutIdentityPolicyRequest
|
703
|
+
attr_accessor identity: ::String
|
704
|
+
attr_accessor policy_name: ::String
|
705
|
+
attr_accessor policy: ::String
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class PutIdentityPolicyResponse < Aws::EmptyStructure
|
710
|
+
end
|
711
|
+
|
712
|
+
class RawMessage
|
713
|
+
attr_accessor data: ::String
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class ReceiptAction
|
718
|
+
attr_accessor s3_action: Types::S3Action
|
719
|
+
attr_accessor bounce_action: Types::BounceAction
|
720
|
+
attr_accessor workmail_action: Types::WorkmailAction
|
721
|
+
attr_accessor lambda_action: Types::LambdaAction
|
722
|
+
attr_accessor stop_action: Types::StopAction
|
723
|
+
attr_accessor add_header_action: Types::AddHeaderAction
|
724
|
+
attr_accessor sns_action: Types::SNSAction
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class ReceiptFilter
|
729
|
+
attr_accessor name: ::String
|
730
|
+
attr_accessor ip_filter: Types::ReceiptIpFilter
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class ReceiptIpFilter
|
735
|
+
attr_accessor policy: ("Block" | "Allow")
|
736
|
+
attr_accessor cidr: ::String
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class ReceiptRule
|
741
|
+
attr_accessor name: ::String
|
742
|
+
attr_accessor enabled: bool
|
743
|
+
attr_accessor tls_policy: ("Require" | "Optional")
|
744
|
+
attr_accessor recipients: ::Array[::String]
|
745
|
+
attr_accessor actions: ::Array[Types::ReceiptAction]
|
746
|
+
attr_accessor scan_enabled: bool
|
747
|
+
SENSITIVE: []
|
748
|
+
end
|
749
|
+
|
750
|
+
class ReceiptRuleSetMetadata
|
751
|
+
attr_accessor name: ::String
|
752
|
+
attr_accessor created_timestamp: ::Time
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class RecipientDsnFields
|
757
|
+
attr_accessor final_recipient: ::String
|
758
|
+
attr_accessor action: ("failed" | "delayed" | "delivered" | "relayed" | "expanded")
|
759
|
+
attr_accessor remote_mta: ::String
|
760
|
+
attr_accessor status: ::String
|
761
|
+
attr_accessor diagnostic_code: ::String
|
762
|
+
attr_accessor last_attempt_date: ::Time
|
763
|
+
attr_accessor extension_fields: ::Array[Types::ExtensionField]
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class ReorderReceiptRuleSetRequest
|
768
|
+
attr_accessor rule_set_name: ::String
|
769
|
+
attr_accessor rule_names: ::Array[::String]
|
770
|
+
SENSITIVE: []
|
771
|
+
end
|
772
|
+
|
773
|
+
class ReorderReceiptRuleSetResponse < Aws::EmptyStructure
|
774
|
+
end
|
775
|
+
|
776
|
+
class ReputationOptions
|
777
|
+
attr_accessor sending_enabled: bool
|
778
|
+
attr_accessor reputation_metrics_enabled: bool
|
779
|
+
attr_accessor last_fresh_start: ::Time
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class RuleDoesNotExistException
|
784
|
+
attr_accessor name: ::String
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class RuleSetDoesNotExistException
|
789
|
+
attr_accessor name: ::String
|
790
|
+
SENSITIVE: []
|
791
|
+
end
|
792
|
+
|
793
|
+
class S3Action
|
794
|
+
attr_accessor topic_arn: ::String
|
795
|
+
attr_accessor bucket_name: ::String
|
796
|
+
attr_accessor object_key_prefix: ::String
|
797
|
+
attr_accessor kms_key_arn: ::String
|
798
|
+
SENSITIVE: []
|
799
|
+
end
|
800
|
+
|
801
|
+
class SNSAction
|
802
|
+
attr_accessor topic_arn: ::String
|
803
|
+
attr_accessor encoding: ("UTF-8" | "Base64")
|
804
|
+
SENSITIVE: []
|
805
|
+
end
|
806
|
+
|
807
|
+
class SNSDestination
|
808
|
+
attr_accessor topic_arn: ::String
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class SendBounceRequest
|
813
|
+
attr_accessor original_message_id: ::String
|
814
|
+
attr_accessor bounce_sender: ::String
|
815
|
+
attr_accessor explanation: ::String
|
816
|
+
attr_accessor message_dsn: Types::MessageDsn
|
817
|
+
attr_accessor bounced_recipient_info_list: ::Array[Types::BouncedRecipientInfo]
|
818
|
+
attr_accessor bounce_sender_arn: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class SendBounceResponse
|
823
|
+
attr_accessor message_id: ::String
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class SendBulkTemplatedEmailRequest
|
828
|
+
attr_accessor source: ::String
|
829
|
+
attr_accessor source_arn: ::String
|
830
|
+
attr_accessor reply_to_addresses: ::Array[::String]
|
831
|
+
attr_accessor return_path: ::String
|
832
|
+
attr_accessor return_path_arn: ::String
|
833
|
+
attr_accessor configuration_set_name: ::String
|
834
|
+
attr_accessor default_tags: ::Array[Types::MessageTag]
|
835
|
+
attr_accessor template: ::String
|
836
|
+
attr_accessor template_arn: ::String
|
837
|
+
attr_accessor default_template_data: ::String
|
838
|
+
attr_accessor destinations: ::Array[Types::BulkEmailDestination]
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class SendBulkTemplatedEmailResponse
|
843
|
+
attr_accessor status: ::Array[Types::BulkEmailDestinationStatus]
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class SendCustomVerificationEmailRequest
|
848
|
+
attr_accessor email_address: ::String
|
849
|
+
attr_accessor template_name: ::String
|
850
|
+
attr_accessor configuration_set_name: ::String
|
851
|
+
SENSITIVE: []
|
852
|
+
end
|
853
|
+
|
854
|
+
class SendCustomVerificationEmailResponse
|
855
|
+
attr_accessor message_id: ::String
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class SendDataPoint
|
860
|
+
attr_accessor timestamp: ::Time
|
861
|
+
attr_accessor delivery_attempts: ::Integer
|
862
|
+
attr_accessor bounces: ::Integer
|
863
|
+
attr_accessor complaints: ::Integer
|
864
|
+
attr_accessor rejects: ::Integer
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class SendEmailRequest
|
869
|
+
attr_accessor source: ::String
|
870
|
+
attr_accessor destination: Types::Destination
|
871
|
+
attr_accessor message: Types::Message
|
872
|
+
attr_accessor reply_to_addresses: ::Array[::String]
|
873
|
+
attr_accessor return_path: ::String
|
874
|
+
attr_accessor source_arn: ::String
|
875
|
+
attr_accessor return_path_arn: ::String
|
876
|
+
attr_accessor tags: ::Array[Types::MessageTag]
|
877
|
+
attr_accessor configuration_set_name: ::String
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class SendEmailResponse
|
882
|
+
attr_accessor message_id: ::String
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
886
|
+
class SendRawEmailRequest
|
887
|
+
attr_accessor source: ::String
|
888
|
+
attr_accessor destinations: ::Array[::String]
|
889
|
+
attr_accessor raw_message: Types::RawMessage
|
890
|
+
attr_accessor from_arn: ::String
|
891
|
+
attr_accessor source_arn: ::String
|
892
|
+
attr_accessor return_path_arn: ::String
|
893
|
+
attr_accessor tags: ::Array[Types::MessageTag]
|
894
|
+
attr_accessor configuration_set_name: ::String
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
898
|
+
class SendRawEmailResponse
|
899
|
+
attr_accessor message_id: ::String
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class SendTemplatedEmailRequest
|
904
|
+
attr_accessor source: ::String
|
905
|
+
attr_accessor destination: Types::Destination
|
906
|
+
attr_accessor reply_to_addresses: ::Array[::String]
|
907
|
+
attr_accessor return_path: ::String
|
908
|
+
attr_accessor source_arn: ::String
|
909
|
+
attr_accessor return_path_arn: ::String
|
910
|
+
attr_accessor tags: ::Array[Types::MessageTag]
|
911
|
+
attr_accessor configuration_set_name: ::String
|
912
|
+
attr_accessor template: ::String
|
913
|
+
attr_accessor template_arn: ::String
|
914
|
+
attr_accessor template_data: ::String
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class SendTemplatedEmailResponse
|
919
|
+
attr_accessor message_id: ::String
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class SetActiveReceiptRuleSetRequest
|
924
|
+
attr_accessor rule_set_name: ::String
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class SetActiveReceiptRuleSetResponse < Aws::EmptyStructure
|
929
|
+
end
|
930
|
+
|
931
|
+
class SetIdentityDkimEnabledRequest
|
932
|
+
attr_accessor identity: ::String
|
933
|
+
attr_accessor dkim_enabled: bool
|
934
|
+
SENSITIVE: []
|
935
|
+
end
|
936
|
+
|
937
|
+
class SetIdentityDkimEnabledResponse < Aws::EmptyStructure
|
938
|
+
end
|
939
|
+
|
940
|
+
class SetIdentityFeedbackForwardingEnabledRequest
|
941
|
+
attr_accessor identity: ::String
|
942
|
+
attr_accessor forwarding_enabled: bool
|
943
|
+
SENSITIVE: []
|
944
|
+
end
|
945
|
+
|
946
|
+
class SetIdentityFeedbackForwardingEnabledResponse < Aws::EmptyStructure
|
947
|
+
end
|
948
|
+
|
949
|
+
class SetIdentityHeadersInNotificationsEnabledRequest
|
950
|
+
attr_accessor identity: ::String
|
951
|
+
attr_accessor notification_type: ("Bounce" | "Complaint" | "Delivery")
|
952
|
+
attr_accessor enabled: bool
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class SetIdentityHeadersInNotificationsEnabledResponse < Aws::EmptyStructure
|
957
|
+
end
|
958
|
+
|
959
|
+
class SetIdentityMailFromDomainRequest
|
960
|
+
attr_accessor identity: ::String
|
961
|
+
attr_accessor mail_from_domain: ::String
|
962
|
+
attr_accessor behavior_on_mx_failure: ("UseDefaultValue" | "RejectMessage")
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class SetIdentityMailFromDomainResponse < Aws::EmptyStructure
|
967
|
+
end
|
968
|
+
|
969
|
+
class SetIdentityNotificationTopicRequest
|
970
|
+
attr_accessor identity: ::String
|
971
|
+
attr_accessor notification_type: ("Bounce" | "Complaint" | "Delivery")
|
972
|
+
attr_accessor sns_topic: ::String
|
973
|
+
SENSITIVE: []
|
974
|
+
end
|
975
|
+
|
976
|
+
class SetIdentityNotificationTopicResponse < Aws::EmptyStructure
|
977
|
+
end
|
978
|
+
|
979
|
+
class SetReceiptRulePositionRequest
|
980
|
+
attr_accessor rule_set_name: ::String
|
981
|
+
attr_accessor rule_name: ::String
|
982
|
+
attr_accessor after: ::String
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class SetReceiptRulePositionResponse < Aws::EmptyStructure
|
987
|
+
end
|
988
|
+
|
989
|
+
class StopAction
|
990
|
+
attr_accessor scope: ("RuleSet")
|
991
|
+
attr_accessor topic_arn: ::String
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class Template
|
996
|
+
attr_accessor template_name: ::String
|
997
|
+
attr_accessor subject_part: ::String
|
998
|
+
attr_accessor text_part: ::String
|
999
|
+
attr_accessor html_part: ::String
|
1000
|
+
SENSITIVE: []
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
class TemplateDoesNotExistException
|
1004
|
+
attr_accessor template_name: ::String
|
1005
|
+
SENSITIVE: []
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
class TemplateMetadata
|
1009
|
+
attr_accessor name: ::String
|
1010
|
+
attr_accessor created_timestamp: ::Time
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class TestRenderTemplateRequest
|
1015
|
+
attr_accessor template_name: ::String
|
1016
|
+
attr_accessor template_data: ::String
|
1017
|
+
SENSITIVE: []
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
class TestRenderTemplateResponse
|
1021
|
+
attr_accessor rendered_template: ::String
|
1022
|
+
SENSITIVE: []
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
class TrackingOptions
|
1026
|
+
attr_accessor custom_redirect_domain: ::String
|
1027
|
+
SENSITIVE: []
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class TrackingOptionsAlreadyExistsException
|
1031
|
+
attr_accessor configuration_set_name: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class TrackingOptionsDoesNotExistException
|
1036
|
+
attr_accessor configuration_set_name: ::String
|
1037
|
+
SENSITIVE: []
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class UpdateAccountSendingEnabledRequest
|
1041
|
+
attr_accessor enabled: bool
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class UpdateConfigurationSetEventDestinationRequest
|
1046
|
+
attr_accessor configuration_set_name: ::String
|
1047
|
+
attr_accessor event_destination: Types::EventDestination
|
1048
|
+
SENSITIVE: []
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class UpdateConfigurationSetEventDestinationResponse < Aws::EmptyStructure
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class UpdateConfigurationSetReputationMetricsEnabledRequest
|
1055
|
+
attr_accessor configuration_set_name: ::String
|
1056
|
+
attr_accessor enabled: bool
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class UpdateConfigurationSetSendingEnabledRequest
|
1061
|
+
attr_accessor configuration_set_name: ::String
|
1062
|
+
attr_accessor enabled: bool
|
1063
|
+
SENSITIVE: []
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class UpdateConfigurationSetTrackingOptionsRequest
|
1067
|
+
attr_accessor configuration_set_name: ::String
|
1068
|
+
attr_accessor tracking_options: Types::TrackingOptions
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class UpdateConfigurationSetTrackingOptionsResponse < Aws::EmptyStructure
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class UpdateCustomVerificationEmailTemplateRequest
|
1076
|
+
attr_accessor template_name: ::String
|
1077
|
+
attr_accessor from_email_address: ::String
|
1078
|
+
attr_accessor template_subject: ::String
|
1079
|
+
attr_accessor template_content: ::String
|
1080
|
+
attr_accessor success_redirection_url: ::String
|
1081
|
+
attr_accessor failure_redirection_url: ::String
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class UpdateReceiptRuleRequest
|
1086
|
+
attr_accessor rule_set_name: ::String
|
1087
|
+
attr_accessor rule: Types::ReceiptRule
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class UpdateReceiptRuleResponse < Aws::EmptyStructure
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class UpdateTemplateRequest
|
1095
|
+
attr_accessor template: Types::Template
|
1096
|
+
SENSITIVE: []
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class UpdateTemplateResponse < Aws::EmptyStructure
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class VerifyDomainDkimRequest
|
1103
|
+
attr_accessor domain: ::String
|
1104
|
+
SENSITIVE: []
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class VerifyDomainDkimResponse
|
1108
|
+
attr_accessor dkim_tokens: ::Array[::String]
|
1109
|
+
SENSITIVE: []
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
class VerifyDomainIdentityRequest
|
1113
|
+
attr_accessor domain: ::String
|
1114
|
+
SENSITIVE: []
|
1115
|
+
end
|
1116
|
+
|
1117
|
+
class VerifyDomainIdentityResponse
|
1118
|
+
attr_accessor verification_token: ::String
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class VerifyEmailAddressRequest
|
1123
|
+
attr_accessor email_address: ::String
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class VerifyEmailIdentityRequest
|
1128
|
+
attr_accessor email_address: ::String
|
1129
|
+
SENSITIVE: []
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class VerifyEmailIdentityResponse < Aws::EmptyStructure
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class WorkmailAction
|
1136
|
+
attr_accessor topic_arn: ::String
|
1137
|
+
attr_accessor organization_arn: ::String
|
1138
|
+
SENSITIVE: []
|
1139
|
+
end
|
1140
|
+
end
|
1141
|
+
end
|