aws-sdk-pinpointemail 1.46.0 → 1.48.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,748 @@
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::PinpointEmail
9
+ module Types
10
+
11
+ class AccountSuspendedException < Aws::EmptyStructure
12
+ end
13
+
14
+ class AlreadyExistsException < Aws::EmptyStructure
15
+ end
16
+
17
+ class BadRequestException < Aws::EmptyStructure
18
+ end
19
+
20
+ class BlacklistEntry
21
+ attr_accessor rbl_name: ::String
22
+ attr_accessor listing_time: ::Time
23
+ attr_accessor description: ::String
24
+ SENSITIVE: []
25
+ end
26
+
27
+ class Body
28
+ attr_accessor text: Types::Content
29
+ attr_accessor html: Types::Content
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class CloudWatchDestination
34
+ attr_accessor dimension_configurations: ::Array[Types::CloudWatchDimensionConfiguration]
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class CloudWatchDimensionConfiguration
39
+ attr_accessor dimension_name: ::String
40
+ attr_accessor dimension_value_source: ("MESSAGE_TAG" | "EMAIL_HEADER" | "LINK_TAG")
41
+ attr_accessor default_dimension_value: ::String
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class ConcurrentModificationException < Aws::EmptyStructure
46
+ end
47
+
48
+ class Content
49
+ attr_accessor data: ::String
50
+ attr_accessor charset: ::String
51
+ SENSITIVE: []
52
+ end
53
+
54
+ class CreateConfigurationSetEventDestinationRequest
55
+ attr_accessor configuration_set_name: ::String
56
+ attr_accessor event_destination_name: ::String
57
+ attr_accessor event_destination: Types::EventDestinationDefinition
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class CreateConfigurationSetEventDestinationResponse < Aws::EmptyStructure
62
+ end
63
+
64
+ class CreateConfigurationSetRequest
65
+ attr_accessor configuration_set_name: ::String
66
+ attr_accessor tracking_options: Types::TrackingOptions
67
+ attr_accessor delivery_options: Types::DeliveryOptions
68
+ attr_accessor reputation_options: Types::ReputationOptions
69
+ attr_accessor sending_options: Types::SendingOptions
70
+ attr_accessor tags: ::Array[Types::Tag]
71
+ SENSITIVE: []
72
+ end
73
+
74
+ class CreateConfigurationSetResponse < Aws::EmptyStructure
75
+ end
76
+
77
+ class CreateDedicatedIpPoolRequest
78
+ attr_accessor pool_name: ::String
79
+ attr_accessor tags: ::Array[Types::Tag]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class CreateDedicatedIpPoolResponse < Aws::EmptyStructure
84
+ end
85
+
86
+ class CreateDeliverabilityTestReportRequest
87
+ attr_accessor report_name: ::String
88
+ attr_accessor from_email_address: ::String
89
+ attr_accessor content: Types::EmailContent
90
+ attr_accessor tags: ::Array[Types::Tag]
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class CreateDeliverabilityTestReportResponse
95
+ attr_accessor report_id: ::String
96
+ attr_accessor deliverability_test_status: ("IN_PROGRESS" | "COMPLETED")
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class CreateEmailIdentityRequest
101
+ attr_accessor email_identity: ::String
102
+ attr_accessor tags: ::Array[Types::Tag]
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class CreateEmailIdentityResponse
107
+ attr_accessor identity_type: ("EMAIL_ADDRESS" | "DOMAIN" | "MANAGED_DOMAIN")
108
+ attr_accessor verified_for_sending_status: bool
109
+ attr_accessor dkim_attributes: Types::DkimAttributes
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class DailyVolume
114
+ attr_accessor start_date: ::Time
115
+ attr_accessor volume_statistics: Types::VolumeStatistics
116
+ attr_accessor domain_isp_placements: ::Array[Types::DomainIspPlacement]
117
+ SENSITIVE: []
118
+ end
119
+
120
+ class DedicatedIp
121
+ attr_accessor ip: ::String
122
+ attr_accessor warmup_status: ("IN_PROGRESS" | "DONE")
123
+ attr_accessor warmup_percentage: ::Integer
124
+ attr_accessor pool_name: ::String
125
+ SENSITIVE: []
126
+ end
127
+
128
+ class DeleteConfigurationSetEventDestinationRequest
129
+ attr_accessor configuration_set_name: ::String
130
+ attr_accessor event_destination_name: ::String
131
+ SENSITIVE: []
132
+ end
133
+
134
+ class DeleteConfigurationSetEventDestinationResponse < Aws::EmptyStructure
135
+ end
136
+
137
+ class DeleteConfigurationSetRequest
138
+ attr_accessor configuration_set_name: ::String
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class DeleteConfigurationSetResponse < Aws::EmptyStructure
143
+ end
144
+
145
+ class DeleteDedicatedIpPoolRequest
146
+ attr_accessor pool_name: ::String
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class DeleteDedicatedIpPoolResponse < Aws::EmptyStructure
151
+ end
152
+
153
+ class DeleteEmailIdentityRequest
154
+ attr_accessor email_identity: ::String
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class DeleteEmailIdentityResponse < Aws::EmptyStructure
159
+ end
160
+
161
+ class DeliverabilityTestReport
162
+ attr_accessor report_id: ::String
163
+ attr_accessor report_name: ::String
164
+ attr_accessor subject: ::String
165
+ attr_accessor from_email_address: ::String
166
+ attr_accessor create_date: ::Time
167
+ attr_accessor deliverability_test_status: ("IN_PROGRESS" | "COMPLETED")
168
+ SENSITIVE: []
169
+ end
170
+
171
+ class DeliveryOptions
172
+ attr_accessor tls_policy: ("REQUIRE" | "OPTIONAL")
173
+ attr_accessor sending_pool_name: ::String
174
+ SENSITIVE: []
175
+ end
176
+
177
+ class Destination
178
+ attr_accessor to_addresses: ::Array[::String]
179
+ attr_accessor cc_addresses: ::Array[::String]
180
+ attr_accessor bcc_addresses: ::Array[::String]
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class DkimAttributes
185
+ attr_accessor signing_enabled: bool
186
+ attr_accessor status: ("PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE" | "NOT_STARTED")
187
+ attr_accessor tokens: ::Array[::String]
188
+ SENSITIVE: []
189
+ end
190
+
191
+ class DomainDeliverabilityCampaign
192
+ attr_accessor campaign_id: ::String
193
+ attr_accessor image_url: ::String
194
+ attr_accessor subject: ::String
195
+ attr_accessor from_address: ::String
196
+ attr_accessor sending_ips: ::Array[::String]
197
+ attr_accessor first_seen_date_time: ::Time
198
+ attr_accessor last_seen_date_time: ::Time
199
+ attr_accessor inbox_count: ::Integer
200
+ attr_accessor spam_count: ::Integer
201
+ attr_accessor read_rate: ::Float
202
+ attr_accessor delete_rate: ::Float
203
+ attr_accessor read_delete_rate: ::Float
204
+ attr_accessor projected_volume: ::Integer
205
+ attr_accessor esps: ::Array[::String]
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class DomainDeliverabilityTrackingOption
210
+ attr_accessor domain: ::String
211
+ attr_accessor subscription_start_date: ::Time
212
+ attr_accessor inbox_placement_tracking_option: Types::InboxPlacementTrackingOption
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class DomainIspPlacement
217
+ attr_accessor isp_name: ::String
218
+ attr_accessor inbox_raw_count: ::Integer
219
+ attr_accessor spam_raw_count: ::Integer
220
+ attr_accessor inbox_percentage: ::Float
221
+ attr_accessor spam_percentage: ::Float
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class EmailContent
226
+ attr_accessor simple: Types::Message
227
+ attr_accessor raw: Types::RawMessage
228
+ attr_accessor template: Types::Template
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class EventDestination
233
+ attr_accessor name: ::String
234
+ attr_accessor enabled: bool
235
+ attr_accessor matching_event_types: ::Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE")]
236
+ attr_accessor kinesis_firehose_destination: Types::KinesisFirehoseDestination
237
+ attr_accessor cloud_watch_destination: Types::CloudWatchDestination
238
+ attr_accessor sns_destination: Types::SnsDestination
239
+ attr_accessor pinpoint_destination: Types::PinpointDestination
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class EventDestinationDefinition
244
+ attr_accessor enabled: bool
245
+ attr_accessor matching_event_types: ::Array[("SEND" | "REJECT" | "BOUNCE" | "COMPLAINT" | "DELIVERY" | "OPEN" | "CLICK" | "RENDERING_FAILURE")]
246
+ attr_accessor kinesis_firehose_destination: Types::KinesisFirehoseDestination
247
+ attr_accessor cloud_watch_destination: Types::CloudWatchDestination
248
+ attr_accessor sns_destination: Types::SnsDestination
249
+ attr_accessor pinpoint_destination: Types::PinpointDestination
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class GetAccountRequest < Aws::EmptyStructure
254
+ end
255
+
256
+ class GetAccountResponse
257
+ attr_accessor send_quota: Types::SendQuota
258
+ attr_accessor sending_enabled: bool
259
+ attr_accessor dedicated_ip_auto_warmup_enabled: bool
260
+ attr_accessor enforcement_status: ::String
261
+ attr_accessor production_access_enabled: bool
262
+ SENSITIVE: []
263
+ end
264
+
265
+ class GetBlacklistReportsRequest
266
+ attr_accessor blacklist_item_names: ::Array[::String]
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class GetBlacklistReportsResponse
271
+ attr_accessor blacklist_report: ::Hash[::String, ::Array[Types::BlacklistEntry]]
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class GetConfigurationSetEventDestinationsRequest
276
+ attr_accessor configuration_set_name: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class GetConfigurationSetEventDestinationsResponse
281
+ attr_accessor event_destinations: ::Array[Types::EventDestination]
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class GetConfigurationSetRequest
286
+ attr_accessor configuration_set_name: ::String
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class GetConfigurationSetResponse
291
+ attr_accessor configuration_set_name: ::String
292
+ attr_accessor tracking_options: Types::TrackingOptions
293
+ attr_accessor delivery_options: Types::DeliveryOptions
294
+ attr_accessor reputation_options: Types::ReputationOptions
295
+ attr_accessor sending_options: Types::SendingOptions
296
+ attr_accessor tags: ::Array[Types::Tag]
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class GetDedicatedIpRequest
301
+ attr_accessor ip: ::String
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class GetDedicatedIpResponse
306
+ attr_accessor dedicated_ip: Types::DedicatedIp
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class GetDedicatedIpsRequest
311
+ attr_accessor pool_name: ::String
312
+ attr_accessor next_token: ::String
313
+ attr_accessor page_size: ::Integer
314
+ SENSITIVE: []
315
+ end
316
+
317
+ class GetDedicatedIpsResponse
318
+ attr_accessor dedicated_ips: ::Array[Types::DedicatedIp]
319
+ attr_accessor next_token: ::String
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class GetDeliverabilityDashboardOptionsRequest < Aws::EmptyStructure
324
+ end
325
+
326
+ class GetDeliverabilityDashboardOptionsResponse
327
+ attr_accessor dashboard_enabled: bool
328
+ attr_accessor subscription_expiry_date: ::Time
329
+ attr_accessor account_status: ("ACTIVE" | "PENDING_EXPIRATION" | "DISABLED")
330
+ attr_accessor active_subscribed_domains: ::Array[Types::DomainDeliverabilityTrackingOption]
331
+ attr_accessor pending_expiration_subscribed_domains: ::Array[Types::DomainDeliverabilityTrackingOption]
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class GetDeliverabilityTestReportRequest
336
+ attr_accessor report_id: ::String
337
+ SENSITIVE: []
338
+ end
339
+
340
+ class GetDeliverabilityTestReportResponse
341
+ attr_accessor deliverability_test_report: Types::DeliverabilityTestReport
342
+ attr_accessor overall_placement: Types::PlacementStatistics
343
+ attr_accessor isp_placements: ::Array[Types::IspPlacement]
344
+ attr_accessor message: ::String
345
+ attr_accessor tags: ::Array[Types::Tag]
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class GetDomainDeliverabilityCampaignRequest
350
+ attr_accessor campaign_id: ::String
351
+ SENSITIVE: []
352
+ end
353
+
354
+ class GetDomainDeliverabilityCampaignResponse
355
+ attr_accessor domain_deliverability_campaign: Types::DomainDeliverabilityCampaign
356
+ SENSITIVE: []
357
+ end
358
+
359
+ class GetDomainStatisticsReportRequest
360
+ attr_accessor domain: ::String
361
+ attr_accessor start_date: ::Time
362
+ attr_accessor end_date: ::Time
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class GetDomainStatisticsReportResponse
367
+ attr_accessor overall_volume: Types::OverallVolume
368
+ attr_accessor daily_volumes: ::Array[Types::DailyVolume]
369
+ SENSITIVE: []
370
+ end
371
+
372
+ class GetEmailIdentityRequest
373
+ attr_accessor email_identity: ::String
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class GetEmailIdentityResponse
378
+ attr_accessor identity_type: ("EMAIL_ADDRESS" | "DOMAIN" | "MANAGED_DOMAIN")
379
+ attr_accessor feedback_forwarding_status: bool
380
+ attr_accessor verified_for_sending_status: bool
381
+ attr_accessor dkim_attributes: Types::DkimAttributes
382
+ attr_accessor mail_from_attributes: Types::MailFromAttributes
383
+ attr_accessor tags: ::Array[Types::Tag]
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class IdentityInfo
388
+ attr_accessor identity_type: ("EMAIL_ADDRESS" | "DOMAIN" | "MANAGED_DOMAIN")
389
+ attr_accessor identity_name: ::String
390
+ attr_accessor sending_enabled: bool
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class InboxPlacementTrackingOption
395
+ attr_accessor global: bool
396
+ attr_accessor tracked_isps: ::Array[::String]
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class IspPlacement
401
+ attr_accessor isp_name: ::String
402
+ attr_accessor placement_statistics: Types::PlacementStatistics
403
+ SENSITIVE: []
404
+ end
405
+
406
+ class KinesisFirehoseDestination
407
+ attr_accessor iam_role_arn: ::String
408
+ attr_accessor delivery_stream_arn: ::String
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class LimitExceededException < Aws::EmptyStructure
413
+ end
414
+
415
+ class ListConfigurationSetsRequest
416
+ attr_accessor next_token: ::String
417
+ attr_accessor page_size: ::Integer
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class ListConfigurationSetsResponse
422
+ attr_accessor configuration_sets: ::Array[::String]
423
+ attr_accessor next_token: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class ListDedicatedIpPoolsRequest
428
+ attr_accessor next_token: ::String
429
+ attr_accessor page_size: ::Integer
430
+ SENSITIVE: []
431
+ end
432
+
433
+ class ListDedicatedIpPoolsResponse
434
+ attr_accessor dedicated_ip_pools: ::Array[::String]
435
+ attr_accessor next_token: ::String
436
+ SENSITIVE: []
437
+ end
438
+
439
+ class ListDeliverabilityTestReportsRequest
440
+ attr_accessor next_token: ::String
441
+ attr_accessor page_size: ::Integer
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class ListDeliverabilityTestReportsResponse
446
+ attr_accessor deliverability_test_reports: ::Array[Types::DeliverabilityTestReport]
447
+ attr_accessor next_token: ::String
448
+ SENSITIVE: []
449
+ end
450
+
451
+ class ListDomainDeliverabilityCampaignsRequest
452
+ attr_accessor start_date: ::Time
453
+ attr_accessor end_date: ::Time
454
+ attr_accessor subscribed_domain: ::String
455
+ attr_accessor next_token: ::String
456
+ attr_accessor page_size: ::Integer
457
+ SENSITIVE: []
458
+ end
459
+
460
+ class ListDomainDeliverabilityCampaignsResponse
461
+ attr_accessor domain_deliverability_campaigns: ::Array[Types::DomainDeliverabilityCampaign]
462
+ attr_accessor next_token: ::String
463
+ SENSITIVE: []
464
+ end
465
+
466
+ class ListEmailIdentitiesRequest
467
+ attr_accessor next_token: ::String
468
+ attr_accessor page_size: ::Integer
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class ListEmailIdentitiesResponse
473
+ attr_accessor email_identities: ::Array[Types::IdentityInfo]
474
+ attr_accessor next_token: ::String
475
+ SENSITIVE: []
476
+ end
477
+
478
+ class ListTagsForResourceRequest
479
+ attr_accessor resource_arn: ::String
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class ListTagsForResourceResponse
484
+ attr_accessor tags: ::Array[Types::Tag]
485
+ SENSITIVE: []
486
+ end
487
+
488
+ class MailFromAttributes
489
+ attr_accessor mail_from_domain: ::String
490
+ attr_accessor mail_from_domain_status: ("PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE")
491
+ attr_accessor behavior_on_mx_failure: ("USE_DEFAULT_VALUE" | "REJECT_MESSAGE")
492
+ SENSITIVE: []
493
+ end
494
+
495
+ class MailFromDomainNotVerifiedException < Aws::EmptyStructure
496
+ end
497
+
498
+ class Message
499
+ attr_accessor subject: Types::Content
500
+ attr_accessor body: Types::Body
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class MessageRejected < Aws::EmptyStructure
505
+ end
506
+
507
+ class MessageTag
508
+ attr_accessor name: ::String
509
+ attr_accessor value: ::String
510
+ SENSITIVE: []
511
+ end
512
+
513
+ class NotFoundException < Aws::EmptyStructure
514
+ end
515
+
516
+ class OverallVolume
517
+ attr_accessor volume_statistics: Types::VolumeStatistics
518
+ attr_accessor read_rate_percent: ::Float
519
+ attr_accessor domain_isp_placements: ::Array[Types::DomainIspPlacement]
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class PinpointDestination
524
+ attr_accessor application_arn: ::String
525
+ SENSITIVE: []
526
+ end
527
+
528
+ class PlacementStatistics
529
+ attr_accessor inbox_percentage: ::Float
530
+ attr_accessor spam_percentage: ::Float
531
+ attr_accessor missing_percentage: ::Float
532
+ attr_accessor spf_percentage: ::Float
533
+ attr_accessor dkim_percentage: ::Float
534
+ SENSITIVE: []
535
+ end
536
+
537
+ class PutAccountDedicatedIpWarmupAttributesRequest
538
+ attr_accessor auto_warmup_enabled: bool
539
+ SENSITIVE: []
540
+ end
541
+
542
+ class PutAccountDedicatedIpWarmupAttributesResponse < Aws::EmptyStructure
543
+ end
544
+
545
+ class PutAccountSendingAttributesRequest
546
+ attr_accessor sending_enabled: bool
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class PutAccountSendingAttributesResponse < Aws::EmptyStructure
551
+ end
552
+
553
+ class PutConfigurationSetDeliveryOptionsRequest
554
+ attr_accessor configuration_set_name: ::String
555
+ attr_accessor tls_policy: ("REQUIRE" | "OPTIONAL")
556
+ attr_accessor sending_pool_name: ::String
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class PutConfigurationSetDeliveryOptionsResponse < Aws::EmptyStructure
561
+ end
562
+
563
+ class PutConfigurationSetReputationOptionsRequest
564
+ attr_accessor configuration_set_name: ::String
565
+ attr_accessor reputation_metrics_enabled: bool
566
+ SENSITIVE: []
567
+ end
568
+
569
+ class PutConfigurationSetReputationOptionsResponse < Aws::EmptyStructure
570
+ end
571
+
572
+ class PutConfigurationSetSendingOptionsRequest
573
+ attr_accessor configuration_set_name: ::String
574
+ attr_accessor sending_enabled: bool
575
+ SENSITIVE: []
576
+ end
577
+
578
+ class PutConfigurationSetSendingOptionsResponse < Aws::EmptyStructure
579
+ end
580
+
581
+ class PutConfigurationSetTrackingOptionsRequest
582
+ attr_accessor configuration_set_name: ::String
583
+ attr_accessor custom_redirect_domain: ::String
584
+ SENSITIVE: []
585
+ end
586
+
587
+ class PutConfigurationSetTrackingOptionsResponse < Aws::EmptyStructure
588
+ end
589
+
590
+ class PutDedicatedIpInPoolRequest
591
+ attr_accessor ip: ::String
592
+ attr_accessor destination_pool_name: ::String
593
+ SENSITIVE: []
594
+ end
595
+
596
+ class PutDedicatedIpInPoolResponse < Aws::EmptyStructure
597
+ end
598
+
599
+ class PutDedicatedIpWarmupAttributesRequest
600
+ attr_accessor ip: ::String
601
+ attr_accessor warmup_percentage: ::Integer
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class PutDedicatedIpWarmupAttributesResponse < Aws::EmptyStructure
606
+ end
607
+
608
+ class PutDeliverabilityDashboardOptionRequest
609
+ attr_accessor dashboard_enabled: bool
610
+ attr_accessor subscribed_domains: ::Array[Types::DomainDeliverabilityTrackingOption]
611
+ SENSITIVE: []
612
+ end
613
+
614
+ class PutDeliverabilityDashboardOptionResponse < Aws::EmptyStructure
615
+ end
616
+
617
+ class PutEmailIdentityDkimAttributesRequest
618
+ attr_accessor email_identity: ::String
619
+ attr_accessor signing_enabled: bool
620
+ SENSITIVE: []
621
+ end
622
+
623
+ class PutEmailIdentityDkimAttributesResponse < Aws::EmptyStructure
624
+ end
625
+
626
+ class PutEmailIdentityFeedbackAttributesRequest
627
+ attr_accessor email_identity: ::String
628
+ attr_accessor email_forwarding_enabled: bool
629
+ SENSITIVE: []
630
+ end
631
+
632
+ class PutEmailIdentityFeedbackAttributesResponse < Aws::EmptyStructure
633
+ end
634
+
635
+ class PutEmailIdentityMailFromAttributesRequest
636
+ attr_accessor email_identity: ::String
637
+ attr_accessor mail_from_domain: ::String
638
+ attr_accessor behavior_on_mx_failure: ("USE_DEFAULT_VALUE" | "REJECT_MESSAGE")
639
+ SENSITIVE: []
640
+ end
641
+
642
+ class PutEmailIdentityMailFromAttributesResponse < Aws::EmptyStructure
643
+ end
644
+
645
+ class RawMessage
646
+ attr_accessor data: ::String
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class ReputationOptions
651
+ attr_accessor reputation_metrics_enabled: bool
652
+ attr_accessor last_fresh_start: ::Time
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class SendEmailRequest
657
+ attr_accessor from_email_address: ::String
658
+ attr_accessor destination: Types::Destination
659
+ attr_accessor reply_to_addresses: ::Array[::String]
660
+ attr_accessor feedback_forwarding_email_address: ::String
661
+ attr_accessor content: Types::EmailContent
662
+ attr_accessor email_tags: ::Array[Types::MessageTag]
663
+ attr_accessor configuration_set_name: ::String
664
+ SENSITIVE: []
665
+ end
666
+
667
+ class SendEmailResponse
668
+ attr_accessor message_id: ::String
669
+ SENSITIVE: []
670
+ end
671
+
672
+ class SendQuota
673
+ attr_accessor max_24_hour_send: ::Float
674
+ attr_accessor max_send_rate: ::Float
675
+ attr_accessor sent_last_24_hours: ::Float
676
+ SENSITIVE: []
677
+ end
678
+
679
+ class SendingOptions
680
+ attr_accessor sending_enabled: bool
681
+ SENSITIVE: []
682
+ end
683
+
684
+ class SendingPausedException < Aws::EmptyStructure
685
+ end
686
+
687
+ class SnsDestination
688
+ attr_accessor topic_arn: ::String
689
+ SENSITIVE: []
690
+ end
691
+
692
+ class Tag
693
+ attr_accessor key: ::String
694
+ attr_accessor value: ::String
695
+ SENSITIVE: []
696
+ end
697
+
698
+ class TagResourceRequest
699
+ attr_accessor resource_arn: ::String
700
+ attr_accessor tags: ::Array[Types::Tag]
701
+ SENSITIVE: []
702
+ end
703
+
704
+ class TagResourceResponse < Aws::EmptyStructure
705
+ end
706
+
707
+ class Template
708
+ attr_accessor template_arn: ::String
709
+ attr_accessor template_data: ::String
710
+ SENSITIVE: []
711
+ end
712
+
713
+ class TooManyRequestsException < Aws::EmptyStructure
714
+ end
715
+
716
+ class TrackingOptions
717
+ attr_accessor custom_redirect_domain: ::String
718
+ SENSITIVE: []
719
+ end
720
+
721
+ class UntagResourceRequest
722
+ attr_accessor resource_arn: ::String
723
+ attr_accessor tag_keys: ::Array[::String]
724
+ SENSITIVE: []
725
+ end
726
+
727
+ class UntagResourceResponse < Aws::EmptyStructure
728
+ end
729
+
730
+ class UpdateConfigurationSetEventDestinationRequest
731
+ attr_accessor configuration_set_name: ::String
732
+ attr_accessor event_destination_name: ::String
733
+ attr_accessor event_destination: Types::EventDestinationDefinition
734
+ SENSITIVE: []
735
+ end
736
+
737
+ class UpdateConfigurationSetEventDestinationResponse < Aws::EmptyStructure
738
+ end
739
+
740
+ class VolumeStatistics
741
+ attr_accessor inbox_raw_count: ::Integer
742
+ attr_accessor spam_raw_count: ::Integer
743
+ attr_accessor projected_inbox: ::Integer
744
+ attr_accessor projected_spam: ::Integer
745
+ SENSITIVE: []
746
+ end
747
+ end
748
+ end