aws-sdk-mailmanager 1.27.0 → 1.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mailmanager/client.rb +1050 -639
- data/lib/aws-sdk-mailmanager/client_api.rb +161 -161
- data/lib/aws-sdk-mailmanager/types.rb +752 -752
- data/lib/aws-sdk-mailmanager/waiters.rb +15 -0
- data/lib/aws-sdk-mailmanager.rb +2 -1
- data/sig/client.rbs +355 -354
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +175 -175
- metadata +4 -3
data/sig/types.rbs
CHANGED
@@ -20,18 +20,18 @@ module Aws::MailManager
|
|
20
20
|
end
|
21
21
|
|
22
22
|
class AddonInstance
|
23
|
-
attr_accessor addon_instance_arn: ::String
|
24
23
|
attr_accessor addon_instance_id: ::String
|
25
|
-
attr_accessor addon_name: ::String
|
26
24
|
attr_accessor addon_subscription_id: ::String
|
25
|
+
attr_accessor addon_name: ::String
|
26
|
+
attr_accessor addon_instance_arn: ::String
|
27
27
|
attr_accessor created_timestamp: ::Time
|
28
28
|
SENSITIVE: []
|
29
29
|
end
|
30
30
|
|
31
31
|
class AddonSubscription
|
32
|
+
attr_accessor addon_subscription_id: ::String
|
32
33
|
attr_accessor addon_name: ::String
|
33
34
|
attr_accessor addon_subscription_arn: ::String
|
34
|
-
attr_accessor addon_subscription_id: ::String
|
35
35
|
attr_accessor created_timestamp: ::Time
|
36
36
|
SENSITIVE: []
|
37
37
|
end
|
@@ -42,8 +42,8 @@ module Aws::MailManager
|
|
42
42
|
end
|
43
43
|
|
44
44
|
class AddressList
|
45
|
-
attr_accessor address_list_arn: ::String
|
46
45
|
attr_accessor address_list_id: ::String
|
46
|
+
attr_accessor address_list_arn: ::String
|
47
47
|
attr_accessor address_list_name: ::String
|
48
48
|
attr_accessor created_timestamp: ::Time
|
49
49
|
attr_accessor last_updated_timestamp: ::Time
|
@@ -88,15 +88,15 @@ module Aws::MailManager
|
|
88
88
|
end
|
89
89
|
|
90
90
|
class ArchiveFilterCondition
|
91
|
-
attr_accessor boolean_expression: Types::ArchiveBooleanExpression
|
92
91
|
attr_accessor string_expression: Types::ArchiveStringExpression
|
92
|
+
attr_accessor boolean_expression: Types::ArchiveBooleanExpression
|
93
93
|
attr_accessor unknown: untyped
|
94
94
|
SENSITIVE: []
|
95
95
|
|
96
|
-
class BooleanExpression < ArchiveFilterCondition
|
97
|
-
end
|
98
96
|
class StringExpression < ArchiveFilterCondition
|
99
97
|
end
|
98
|
+
class BooleanExpression < ArchiveFilterCondition
|
99
|
+
end
|
100
100
|
class Unknown < ArchiveFilterCondition
|
101
101
|
end
|
102
102
|
end
|
@@ -142,8 +142,8 @@ module Aws::MailManager
|
|
142
142
|
end
|
143
143
|
|
144
144
|
class CreateAddonInstanceRequest
|
145
|
-
attr_accessor addon_subscription_id: ::String
|
146
145
|
attr_accessor client_token: ::String
|
146
|
+
attr_accessor addon_subscription_id: ::String
|
147
147
|
attr_accessor tags: ::Array[Types::Tag]
|
148
148
|
SENSITIVE: []
|
149
149
|
end
|
@@ -154,8 +154,8 @@ module Aws::MailManager
|
|
154
154
|
end
|
155
155
|
|
156
156
|
class CreateAddonSubscriptionRequest
|
157
|
-
attr_accessor addon_name: ::String
|
158
157
|
attr_accessor client_token: ::String
|
158
|
+
attr_accessor addon_name: ::String
|
159
159
|
attr_accessor tags: ::Array[Types::Tag]
|
160
160
|
SENSITIVE: []
|
161
161
|
end
|
@@ -166,10 +166,10 @@ module Aws::MailManager
|
|
166
166
|
end
|
167
167
|
|
168
168
|
class CreateAddressListImportJobRequest
|
169
|
-
attr_accessor address_list_id: ::String
|
170
169
|
attr_accessor client_token: ::String
|
171
|
-
attr_accessor
|
170
|
+
attr_accessor address_list_id: ::String
|
172
171
|
attr_accessor name: ::String
|
172
|
+
attr_accessor import_data_format: Types::ImportDataFormat
|
173
173
|
SENSITIVE: []
|
174
174
|
end
|
175
175
|
|
@@ -180,8 +180,8 @@ module Aws::MailManager
|
|
180
180
|
end
|
181
181
|
|
182
182
|
class CreateAddressListRequest
|
183
|
-
attr_accessor address_list_name: ::String
|
184
183
|
attr_accessor client_token: ::String
|
184
|
+
attr_accessor address_list_name: ::String
|
185
185
|
attr_accessor tags: ::Array[Types::Tag]
|
186
186
|
SENSITIVE: []
|
187
187
|
end
|
@@ -192,10 +192,10 @@ module Aws::MailManager
|
|
192
192
|
end
|
193
193
|
|
194
194
|
class CreateArchiveRequest
|
195
|
-
attr_accessor archive_name: ::String
|
196
195
|
attr_accessor client_token: ::String
|
197
|
-
attr_accessor
|
196
|
+
attr_accessor archive_name: ::String
|
198
197
|
attr_accessor retention: Types::ArchiveRetention
|
198
|
+
attr_accessor kms_key_arn: ::String
|
199
199
|
attr_accessor tags: ::Array[Types::Tag]
|
200
200
|
SENSITIVE: []
|
201
201
|
end
|
@@ -207,13 +207,13 @@ module Aws::MailManager
|
|
207
207
|
|
208
208
|
class CreateIngressPointRequest
|
209
209
|
attr_accessor client_token: ::String
|
210
|
-
attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
|
211
210
|
attr_accessor ingress_point_name: ::String
|
212
|
-
attr_accessor
|
211
|
+
attr_accessor type: ("OPEN" | "AUTH")
|
213
212
|
attr_accessor rule_set_id: ::String
|
214
|
-
attr_accessor tags: ::Array[Types::Tag]
|
215
213
|
attr_accessor traffic_policy_id: ::String
|
216
|
-
attr_accessor
|
214
|
+
attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
|
215
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
216
|
+
attr_accessor tags: ::Array[Types::Tag]
|
217
217
|
SENSITIVE: []
|
218
218
|
end
|
219
219
|
|
@@ -223,11 +223,11 @@ module Aws::MailManager
|
|
223
223
|
end
|
224
224
|
|
225
225
|
class CreateRelayRequest
|
226
|
-
attr_accessor authentication: Types::RelayAuthentication
|
227
226
|
attr_accessor client_token: ::String
|
228
227
|
attr_accessor relay_name: ::String
|
229
228
|
attr_accessor server_name: ::String
|
230
229
|
attr_accessor server_port: ::Integer
|
230
|
+
attr_accessor authentication: Types::RelayAuthentication
|
231
231
|
attr_accessor tags: ::Array[Types::Tag]
|
232
232
|
SENSITIVE: []
|
233
233
|
end
|
@@ -252,11 +252,11 @@ module Aws::MailManager
|
|
252
252
|
|
253
253
|
class CreateTrafficPolicyRequest
|
254
254
|
attr_accessor client_token: ::String
|
255
|
+
attr_accessor traffic_policy_name: ::String
|
256
|
+
attr_accessor policy_statements: ::Array[Types::PolicyStatement]
|
255
257
|
attr_accessor default_action: ("ALLOW" | "DENY")
|
256
258
|
attr_accessor max_message_size_bytes: ::Integer
|
257
|
-
attr_accessor policy_statements: ::Array[Types::PolicyStatement]
|
258
259
|
attr_accessor tags: ::Array[Types::Tag]
|
259
|
-
attr_accessor traffic_policy_name: ::String
|
260
260
|
SENSITIVE: []
|
261
261
|
end
|
262
262
|
|
@@ -345,8 +345,8 @@ module Aws::MailManager
|
|
345
345
|
end
|
346
346
|
|
347
347
|
class DeregisterMemberFromAddressListRequest
|
348
|
-
attr_accessor address: ::String
|
349
348
|
attr_accessor address_list_id: ::String
|
349
|
+
attr_accessor address: ::String
|
350
350
|
SENSITIVE: [:address]
|
351
351
|
end
|
352
352
|
|
@@ -357,8 +357,8 @@ module Aws::MailManager
|
|
357
357
|
end
|
358
358
|
|
359
359
|
class Envelope
|
360
|
-
attr_accessor from: ::String
|
361
360
|
attr_accessor helo: ::String
|
361
|
+
attr_accessor from: ::String
|
362
362
|
attr_accessor to: ::Array[::String]
|
363
363
|
SENSITIVE: []
|
364
364
|
end
|
@@ -375,10 +375,10 @@ module Aws::MailManager
|
|
375
375
|
end
|
376
376
|
|
377
377
|
class ExportStatus
|
378
|
+
attr_accessor submission_timestamp: ::Time
|
378
379
|
attr_accessor completion_timestamp: ::Time
|
379
|
-
attr_accessor error_message: ::String
|
380
380
|
attr_accessor state: ("QUEUED" | "PREPROCESSING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED")
|
381
|
-
attr_accessor
|
381
|
+
attr_accessor error_message: ::String
|
382
382
|
SENSITIVE: []
|
383
383
|
end
|
384
384
|
|
@@ -394,9 +394,9 @@ module Aws::MailManager
|
|
394
394
|
end
|
395
395
|
|
396
396
|
class GetAddonInstanceResponse
|
397
|
-
attr_accessor addon_instance_arn: ::String
|
398
|
-
attr_accessor addon_name: ::String
|
399
397
|
attr_accessor addon_subscription_id: ::String
|
398
|
+
attr_accessor addon_name: ::String
|
399
|
+
attr_accessor addon_instance_arn: ::String
|
400
400
|
attr_accessor created_timestamp: ::Time
|
401
401
|
SENSITIVE: []
|
402
402
|
end
|
@@ -419,18 +419,18 @@ module Aws::MailManager
|
|
419
419
|
end
|
420
420
|
|
421
421
|
class GetAddressListImportJobResponse
|
422
|
-
attr_accessor address_list_id: ::String
|
423
|
-
attr_accessor completed_timestamp: ::Time
|
424
|
-
attr_accessor created_timestamp: ::Time
|
425
|
-
attr_accessor error: ::String
|
426
|
-
attr_accessor failed_items_count: ::Integer
|
427
|
-
attr_accessor import_data_format: Types::ImportDataFormat
|
428
|
-
attr_accessor imported_items_count: ::Integer
|
429
422
|
attr_accessor job_id: ::String
|
430
423
|
attr_accessor name: ::String
|
424
|
+
attr_accessor status: ("CREATED" | "PROCESSING" | "COMPLETED" | "FAILED" | "STOPPED")
|
431
425
|
attr_accessor pre_signed_url: ::String
|
426
|
+
attr_accessor imported_items_count: ::Integer
|
427
|
+
attr_accessor failed_items_count: ::Integer
|
428
|
+
attr_accessor import_data_format: Types::ImportDataFormat
|
429
|
+
attr_accessor address_list_id: ::String
|
430
|
+
attr_accessor created_timestamp: ::Time
|
432
431
|
attr_accessor start_timestamp: ::Time
|
433
|
-
attr_accessor
|
432
|
+
attr_accessor completed_timestamp: ::Time
|
433
|
+
attr_accessor error: ::String
|
434
434
|
SENSITIVE: [:pre_signed_url]
|
435
435
|
end
|
436
436
|
|
@@ -440,8 +440,8 @@ module Aws::MailManager
|
|
440
440
|
end
|
441
441
|
|
442
442
|
class GetAddressListResponse
|
443
|
-
attr_accessor address_list_arn: ::String
|
444
443
|
attr_accessor address_list_id: ::String
|
444
|
+
attr_accessor address_list_arn: ::String
|
445
445
|
attr_accessor address_list_name: ::String
|
446
446
|
attr_accessor created_timestamp: ::Time
|
447
447
|
attr_accessor last_updated_timestamp: ::Time
|
@@ -455,12 +455,12 @@ module Aws::MailManager
|
|
455
455
|
|
456
456
|
class GetArchiveExportResponse
|
457
457
|
attr_accessor archive_id: ::String
|
458
|
-
attr_accessor export_destination_configuration: Types::ExportDestinationConfiguration
|
459
458
|
attr_accessor filters: Types::ArchiveFilters
|
460
459
|
attr_accessor from_timestamp: ::Time
|
460
|
+
attr_accessor to_timestamp: ::Time
|
461
461
|
attr_accessor max_results: ::Integer
|
462
|
+
attr_accessor export_destination_configuration: Types::ExportDestinationConfiguration
|
462
463
|
attr_accessor status: Types::ExportStatus
|
463
|
-
attr_accessor to_timestamp: ::Time
|
464
464
|
SENSITIVE: []
|
465
465
|
end
|
466
466
|
|
@@ -480,9 +480,9 @@ module Aws::MailManager
|
|
480
480
|
end
|
481
481
|
|
482
482
|
class GetArchiveMessageResponse
|
483
|
-
attr_accessor envelope: Types::Envelope
|
484
483
|
attr_accessor message_download_link: ::String
|
485
484
|
attr_accessor metadata: Types::Metadata
|
485
|
+
attr_accessor envelope: Types::Envelope
|
486
486
|
SENSITIVE: []
|
487
487
|
end
|
488
488
|
|
@@ -492,14 +492,14 @@ module Aws::MailManager
|
|
492
492
|
end
|
493
493
|
|
494
494
|
class GetArchiveResponse
|
495
|
-
attr_accessor archive_arn: ::String
|
496
495
|
attr_accessor archive_id: ::String
|
497
496
|
attr_accessor archive_name: ::String
|
497
|
+
attr_accessor archive_arn: ::String
|
498
498
|
attr_accessor archive_state: ("ACTIVE" | "PENDING_DELETION")
|
499
|
+
attr_accessor retention: Types::ArchiveRetention
|
499
500
|
attr_accessor created_timestamp: ::Time
|
500
|
-
attr_accessor kms_key_arn: ::String
|
501
501
|
attr_accessor last_updated_timestamp: ::Time
|
502
|
-
attr_accessor
|
502
|
+
attr_accessor kms_key_arn: ::String
|
503
503
|
SENSITIVE: []
|
504
504
|
end
|
505
505
|
|
@@ -512,9 +512,9 @@ module Aws::MailManager
|
|
512
512
|
attr_accessor archive_id: ::String
|
513
513
|
attr_accessor filters: Types::ArchiveFilters
|
514
514
|
attr_accessor from_timestamp: ::Time
|
515
|
+
attr_accessor to_timestamp: ::Time
|
515
516
|
attr_accessor max_results: ::Integer
|
516
517
|
attr_accessor status: Types::SearchStatus
|
517
|
-
attr_accessor to_timestamp: ::Time
|
518
518
|
SENSITIVE: []
|
519
519
|
end
|
520
520
|
|
@@ -534,24 +534,24 @@ module Aws::MailManager
|
|
534
534
|
end
|
535
535
|
|
536
536
|
class GetIngressPointResponse
|
537
|
-
attr_accessor a_record: ::String
|
538
|
-
attr_accessor created_timestamp: ::Time
|
539
|
-
attr_accessor ingress_point_arn: ::String
|
540
|
-
attr_accessor ingress_point_auth_configuration: Types::IngressPointAuthConfiguration
|
541
537
|
attr_accessor ingress_point_id: ::String
|
542
538
|
attr_accessor ingress_point_name: ::String
|
543
|
-
attr_accessor
|
544
|
-
attr_accessor network_configuration: Types::NetworkConfiguration
|
545
|
-
attr_accessor rule_set_id: ::String
|
539
|
+
attr_accessor ingress_point_arn: ::String
|
546
540
|
attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
|
547
|
-
attr_accessor traffic_policy_id: ::String
|
548
541
|
attr_accessor type: ("OPEN" | "AUTH")
|
542
|
+
attr_accessor a_record: ::String
|
543
|
+
attr_accessor rule_set_id: ::String
|
544
|
+
attr_accessor traffic_policy_id: ::String
|
545
|
+
attr_accessor ingress_point_auth_configuration: Types::IngressPointAuthConfiguration
|
546
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
547
|
+
attr_accessor created_timestamp: ::Time
|
548
|
+
attr_accessor last_updated_timestamp: ::Time
|
549
549
|
SENSITIVE: []
|
550
550
|
end
|
551
551
|
|
552
552
|
class GetMemberOfAddressListRequest
|
553
|
-
attr_accessor address: ::String
|
554
553
|
attr_accessor address_list_id: ::String
|
554
|
+
attr_accessor address: ::String
|
555
555
|
SENSITIVE: [:address]
|
556
556
|
end
|
557
557
|
|
@@ -567,14 +567,14 @@ module Aws::MailManager
|
|
567
567
|
end
|
568
568
|
|
569
569
|
class GetRelayResponse
|
570
|
-
attr_accessor authentication: Types::RelayAuthentication
|
571
|
-
attr_accessor created_timestamp: ::Time
|
572
|
-
attr_accessor last_modified_timestamp: ::Time
|
573
|
-
attr_accessor relay_arn: ::String
|
574
570
|
attr_accessor relay_id: ::String
|
571
|
+
attr_accessor relay_arn: ::String
|
575
572
|
attr_accessor relay_name: ::String
|
576
573
|
attr_accessor server_name: ::String
|
577
574
|
attr_accessor server_port: ::Integer
|
575
|
+
attr_accessor authentication: Types::RelayAuthentication
|
576
|
+
attr_accessor created_timestamp: ::Time
|
577
|
+
attr_accessor last_modified_timestamp: ::Time
|
578
578
|
SENSITIVE: []
|
579
579
|
end
|
580
580
|
|
@@ -584,11 +584,11 @@ module Aws::MailManager
|
|
584
584
|
end
|
585
585
|
|
586
586
|
class GetRuleSetResponse
|
587
|
-
attr_accessor created_date: ::Time
|
588
|
-
attr_accessor last_modification_date: ::Time
|
589
|
-
attr_accessor rule_set_arn: ::String
|
590
587
|
attr_accessor rule_set_id: ::String
|
588
|
+
attr_accessor rule_set_arn: ::String
|
591
589
|
attr_accessor rule_set_name: ::String
|
590
|
+
attr_accessor created_date: ::Time
|
591
|
+
attr_accessor last_modification_date: ::Time
|
592
592
|
attr_accessor rules: ::Array[Types::Rule]
|
593
593
|
SENSITIVE: []
|
594
594
|
end
|
@@ -599,14 +599,14 @@ module Aws::MailManager
|
|
599
599
|
end
|
600
600
|
|
601
601
|
class GetTrafficPolicyResponse
|
602
|
-
attr_accessor
|
602
|
+
attr_accessor traffic_policy_name: ::String
|
603
|
+
attr_accessor traffic_policy_id: ::String
|
604
|
+
attr_accessor traffic_policy_arn: ::String
|
605
|
+
attr_accessor policy_statements: ::Array[Types::PolicyStatement]
|
606
|
+
attr_accessor max_message_size_bytes: ::Integer
|
603
607
|
attr_accessor default_action: ("ALLOW" | "DENY")
|
608
|
+
attr_accessor created_timestamp: ::Time
|
604
609
|
attr_accessor last_updated_timestamp: ::Time
|
605
|
-
attr_accessor max_message_size_bytes: ::Integer
|
606
|
-
attr_accessor policy_statements: ::Array[Types::PolicyStatement]
|
607
|
-
attr_accessor traffic_policy_arn: ::String
|
608
|
-
attr_accessor traffic_policy_id: ::String
|
609
|
-
attr_accessor traffic_policy_name: ::String
|
610
610
|
SENSITIVE: []
|
611
611
|
end
|
612
612
|
|
@@ -616,18 +616,18 @@ module Aws::MailManager
|
|
616
616
|
end
|
617
617
|
|
618
618
|
class ImportJob
|
619
|
-
attr_accessor address_list_id: ::String
|
620
|
-
attr_accessor completed_timestamp: ::Time
|
621
|
-
attr_accessor created_timestamp: ::Time
|
622
|
-
attr_accessor error: ::String
|
623
|
-
attr_accessor failed_items_count: ::Integer
|
624
|
-
attr_accessor import_data_format: Types::ImportDataFormat
|
625
|
-
attr_accessor imported_items_count: ::Integer
|
626
619
|
attr_accessor job_id: ::String
|
627
620
|
attr_accessor name: ::String
|
621
|
+
attr_accessor status: ("CREATED" | "PROCESSING" | "COMPLETED" | "FAILED" | "STOPPED")
|
628
622
|
attr_accessor pre_signed_url: ::String
|
623
|
+
attr_accessor imported_items_count: ::Integer
|
624
|
+
attr_accessor failed_items_count: ::Integer
|
625
|
+
attr_accessor import_data_format: Types::ImportDataFormat
|
626
|
+
attr_accessor address_list_id: ::String
|
627
|
+
attr_accessor created_timestamp: ::Time
|
629
628
|
attr_accessor start_timestamp: ::Time
|
630
|
-
attr_accessor
|
629
|
+
attr_accessor completed_timestamp: ::Time
|
630
|
+
attr_accessor error: ::String
|
631
631
|
SENSITIVE: [:pre_signed_url]
|
632
632
|
end
|
633
633
|
|
@@ -694,17 +694,17 @@ module Aws::MailManager
|
|
694
694
|
end
|
695
695
|
|
696
696
|
class IngressIsInAddressList
|
697
|
-
attr_accessor address_lists: ::Array[::String]
|
698
697
|
attr_accessor attribute: ("RECIPIENT")
|
698
|
+
attr_accessor address_lists: ::Array[::String]
|
699
699
|
SENSITIVE: []
|
700
700
|
end
|
701
701
|
|
702
702
|
class IngressPoint
|
703
|
-
attr_accessor a_record: ::String
|
704
|
-
attr_accessor ingress_point_id: ::String
|
705
703
|
attr_accessor ingress_point_name: ::String
|
704
|
+
attr_accessor ingress_point_id: ::String
|
706
705
|
attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
|
707
706
|
attr_accessor type: ("OPEN" | "AUTH")
|
707
|
+
attr_accessor a_record: ::String
|
708
708
|
SENSITIVE: []
|
709
709
|
end
|
710
710
|
|
@@ -715,23 +715,23 @@ module Aws::MailManager
|
|
715
715
|
end
|
716
716
|
|
717
717
|
class IngressPointConfiguration
|
718
|
-
attr_accessor secret_arn: ::String
|
719
718
|
attr_accessor smtp_password: ::String
|
719
|
+
attr_accessor secret_arn: ::String
|
720
720
|
attr_accessor unknown: untyped
|
721
721
|
SENSITIVE: [:smtp_password]
|
722
722
|
|
723
|
-
class SecretArn < IngressPointConfiguration
|
724
|
-
end
|
725
723
|
class SmtpPassword < IngressPointConfiguration
|
726
724
|
end
|
725
|
+
class SecretArn < IngressPointConfiguration
|
726
|
+
end
|
727
727
|
class Unknown < IngressPointConfiguration
|
728
728
|
end
|
729
729
|
end
|
730
730
|
|
731
731
|
class IngressPointPasswordConfiguration
|
732
|
-
attr_accessor previous_smtp_password_expiry_timestamp: ::Time
|
733
|
-
attr_accessor previous_smtp_password_version: ::String
|
734
732
|
attr_accessor smtp_password_version: ::String
|
733
|
+
attr_accessor previous_smtp_password_version: ::String
|
734
|
+
attr_accessor previous_smtp_password_expiry_timestamp: ::Time
|
735
735
|
SENSITIVE: []
|
736
736
|
end
|
737
737
|
|
@@ -743,15 +743,15 @@ module Aws::MailManager
|
|
743
743
|
end
|
744
744
|
|
745
745
|
class IngressStringToEvaluate
|
746
|
-
attr_accessor analysis: Types::IngressAnalysis
|
747
746
|
attr_accessor attribute: ("RECIPIENT")
|
747
|
+
attr_accessor analysis: Types::IngressAnalysis
|
748
748
|
attr_accessor unknown: untyped
|
749
749
|
SENSITIVE: []
|
750
750
|
|
751
|
-
class Analysis < IngressStringToEvaluate
|
752
|
-
end
|
753
751
|
class Attribute < IngressStringToEvaluate
|
754
752
|
end
|
753
|
+
class Analysis < IngressStringToEvaluate
|
754
|
+
end
|
755
755
|
class Unknown < IngressStringToEvaluate
|
756
756
|
end
|
757
757
|
end
|
@@ -844,8 +844,8 @@ module Aws::MailManager
|
|
844
844
|
end
|
845
845
|
|
846
846
|
class ListArchiveSearchesResponse
|
847
|
-
attr_accessor next_token: ::String
|
848
847
|
attr_accessor searches: ::Array[Types::SearchSummary]
|
848
|
+
attr_accessor next_token: ::String
|
849
849
|
SENSITIVE: []
|
850
850
|
end
|
851
851
|
|
@@ -862,8 +862,8 @@ module Aws::MailManager
|
|
862
862
|
end
|
863
863
|
|
864
864
|
class ListIngressPointsRequest
|
865
|
-
attr_accessor next_token: ::String
|
866
865
|
attr_accessor page_size: ::Integer
|
866
|
+
attr_accessor next_token: ::String
|
867
867
|
SENSITIVE: []
|
868
868
|
end
|
869
869
|
|
@@ -888,14 +888,14 @@ module Aws::MailManager
|
|
888
888
|
end
|
889
889
|
|
890
890
|
class ListRelaysRequest
|
891
|
-
attr_accessor next_token: ::String
|
892
891
|
attr_accessor page_size: ::Integer
|
892
|
+
attr_accessor next_token: ::String
|
893
893
|
SENSITIVE: []
|
894
894
|
end
|
895
895
|
|
896
896
|
class ListRelaysResponse
|
897
|
-
attr_accessor next_token: ::String
|
898
897
|
attr_accessor relays: ::Array[Types::Relay]
|
898
|
+
attr_accessor next_token: ::String
|
899
899
|
SENSITIVE: []
|
900
900
|
end
|
901
901
|
|
@@ -906,8 +906,8 @@ module Aws::MailManager
|
|
906
906
|
end
|
907
907
|
|
908
908
|
class ListRuleSetsResponse
|
909
|
-
attr_accessor next_token: ::String
|
910
909
|
attr_accessor rule_sets: ::Array[Types::RuleSet]
|
910
|
+
attr_accessor next_token: ::String
|
911
911
|
SENSITIVE: []
|
912
912
|
end
|
913
913
|
|
@@ -922,51 +922,51 @@ module Aws::MailManager
|
|
922
922
|
end
|
923
923
|
|
924
924
|
class ListTrafficPoliciesRequest
|
925
|
-
attr_accessor next_token: ::String
|
926
925
|
attr_accessor page_size: ::Integer
|
926
|
+
attr_accessor next_token: ::String
|
927
927
|
SENSITIVE: []
|
928
928
|
end
|
929
929
|
|
930
930
|
class ListTrafficPoliciesResponse
|
931
|
-
attr_accessor next_token: ::String
|
932
931
|
attr_accessor traffic_policies: ::Array[Types::TrafficPolicy]
|
932
|
+
attr_accessor next_token: ::String
|
933
933
|
SENSITIVE: []
|
934
934
|
end
|
935
935
|
|
936
936
|
class MessageBody
|
937
|
+
attr_accessor text: ::String
|
937
938
|
attr_accessor html: ::String
|
938
939
|
attr_accessor message_malformed: bool
|
939
|
-
attr_accessor text: ::String
|
940
940
|
SENSITIVE: []
|
941
941
|
end
|
942
942
|
|
943
943
|
class Metadata
|
944
|
-
attr_accessor
|
944
|
+
attr_accessor timestamp: ::Time
|
945
945
|
attr_accessor ingress_point_id: ::String
|
946
|
+
attr_accessor traffic_policy_id: ::String
|
946
947
|
attr_accessor rule_set_id: ::String
|
947
948
|
attr_accessor sender_hostname: ::String
|
948
949
|
attr_accessor sender_ip_address: ::String
|
950
|
+
attr_accessor tls_cipher_suite: ::String
|
951
|
+
attr_accessor tls_protocol: ::String
|
949
952
|
attr_accessor sending_method: ::String
|
953
|
+
attr_accessor source_identity: ::String
|
950
954
|
attr_accessor sending_pool: ::String
|
955
|
+
attr_accessor configuration_set: ::String
|
951
956
|
attr_accessor source_arn: ::String
|
952
|
-
attr_accessor source_identity: ::String
|
953
|
-
attr_accessor timestamp: ::Time
|
954
|
-
attr_accessor tls_cipher_suite: ::String
|
955
|
-
attr_accessor tls_protocol: ::String
|
956
|
-
attr_accessor traffic_policy_id: ::String
|
957
957
|
SENSITIVE: [:sender_ip_address]
|
958
958
|
end
|
959
959
|
|
960
960
|
class NetworkConfiguration
|
961
|
-
attr_accessor private_network_configuration: Types::PrivateNetworkConfiguration
|
962
961
|
attr_accessor public_network_configuration: Types::PublicNetworkConfiguration
|
962
|
+
attr_accessor private_network_configuration: Types::PrivateNetworkConfiguration
|
963
963
|
attr_accessor unknown: untyped
|
964
964
|
SENSITIVE: []
|
965
965
|
|
966
|
-
class PrivateNetworkConfiguration < NetworkConfiguration
|
967
|
-
end
|
968
966
|
class PublicNetworkConfiguration < NetworkConfiguration
|
969
967
|
end
|
968
|
+
class PrivateNetworkConfiguration < NetworkConfiguration
|
969
|
+
end
|
970
970
|
class Unknown < NetworkConfiguration
|
971
971
|
end
|
972
972
|
end
|
@@ -975,31 +975,31 @@ module Aws::MailManager
|
|
975
975
|
end
|
976
976
|
|
977
977
|
class PolicyCondition
|
978
|
-
attr_accessor
|
978
|
+
attr_accessor string_expression: Types::IngressStringExpression
|
979
979
|
attr_accessor ip_expression: Types::IngressIpv4Expression
|
980
980
|
attr_accessor ipv_6_expression: Types::IngressIpv6Expression
|
981
|
-
attr_accessor string_expression: Types::IngressStringExpression
|
982
981
|
attr_accessor tls_expression: Types::IngressTlsProtocolExpression
|
982
|
+
attr_accessor boolean_expression: Types::IngressBooleanExpression
|
983
983
|
attr_accessor unknown: untyped
|
984
984
|
SENSITIVE: []
|
985
985
|
|
986
|
-
class
|
986
|
+
class StringExpression < PolicyCondition
|
987
987
|
end
|
988
988
|
class IpExpression < PolicyCondition
|
989
989
|
end
|
990
990
|
class Ipv6Expression < PolicyCondition
|
991
991
|
end
|
992
|
-
class StringExpression < PolicyCondition
|
993
|
-
end
|
994
992
|
class TlsExpression < PolicyCondition
|
995
993
|
end
|
994
|
+
class BooleanExpression < PolicyCondition
|
995
|
+
end
|
996
996
|
class Unknown < PolicyCondition
|
997
997
|
end
|
998
998
|
end
|
999
999
|
|
1000
1000
|
class PolicyStatement
|
1001
|
-
attr_accessor action: ("ALLOW" | "DENY")
|
1002
1001
|
attr_accessor conditions: ::Array[Types::PolicyCondition]
|
1002
|
+
attr_accessor action: ("ALLOW" | "DENY")
|
1003
1003
|
SENSITIVE: []
|
1004
1004
|
end
|
1005
1005
|
|
@@ -1014,8 +1014,8 @@ module Aws::MailManager
|
|
1014
1014
|
end
|
1015
1015
|
|
1016
1016
|
class RegisterMemberToAddressListRequest
|
1017
|
-
attr_accessor address: ::String
|
1018
1017
|
attr_accessor address_list_id: ::String
|
1018
|
+
attr_accessor address: ::String
|
1019
1019
|
SENSITIVE: [:address]
|
1020
1020
|
end
|
1021
1021
|
|
@@ -1023,29 +1023,29 @@ module Aws::MailManager
|
|
1023
1023
|
end
|
1024
1024
|
|
1025
1025
|
class Relay
|
1026
|
-
attr_accessor last_modified_timestamp: ::Time
|
1027
1026
|
attr_accessor relay_id: ::String
|
1028
1027
|
attr_accessor relay_name: ::String
|
1028
|
+
attr_accessor last_modified_timestamp: ::Time
|
1029
1029
|
SENSITIVE: []
|
1030
1030
|
end
|
1031
1031
|
|
1032
1032
|
class RelayAction
|
1033
1033
|
attr_accessor action_failure_policy: ("CONTINUE" | "DROP")
|
1034
|
-
attr_accessor mail_from: ("REPLACE" | "PRESERVE")
|
1035
1034
|
attr_accessor relay: ::String
|
1035
|
+
attr_accessor mail_from: ("REPLACE" | "PRESERVE")
|
1036
1036
|
SENSITIVE: []
|
1037
1037
|
end
|
1038
1038
|
|
1039
1039
|
class RelayAuthentication
|
1040
|
-
attr_accessor no_authentication: Types::NoAuthentication
|
1041
1040
|
attr_accessor secret_arn: ::String
|
1041
|
+
attr_accessor no_authentication: Types::NoAuthentication
|
1042
1042
|
attr_accessor unknown: untyped
|
1043
1043
|
SENSITIVE: []
|
1044
1044
|
|
1045
|
-
class NoAuthentication < RelayAuthentication
|
1046
|
-
end
|
1047
1045
|
class SecretArn < RelayAuthentication
|
1048
1046
|
end
|
1047
|
+
class NoAuthentication < RelayAuthentication
|
1048
|
+
end
|
1049
1049
|
class Unknown < RelayAuthentication
|
1050
1050
|
end
|
1051
1051
|
end
|
@@ -1062,68 +1062,68 @@ module Aws::MailManager
|
|
1062
1062
|
|
1063
1063
|
class Row
|
1064
1064
|
attr_accessor archived_message_id: ::String
|
1065
|
-
attr_accessor
|
1065
|
+
attr_accessor received_timestamp: ::Time
|
1066
1066
|
attr_accessor date: ::String
|
1067
|
-
attr_accessor
|
1067
|
+
attr_accessor to: ::String
|
1068
1068
|
attr_accessor from: ::String
|
1069
|
+
attr_accessor cc: ::String
|
1070
|
+
attr_accessor subject: ::String
|
1071
|
+
attr_accessor message_id: ::String
|
1069
1072
|
attr_accessor has_attachments: bool
|
1073
|
+
attr_accessor received_headers: ::Array[::String]
|
1070
1074
|
attr_accessor in_reply_to: ::String
|
1075
|
+
attr_accessor x_mailer: ::String
|
1076
|
+
attr_accessor x_original_mailer: ::String
|
1077
|
+
attr_accessor x_priority: ::String
|
1071
1078
|
attr_accessor ingress_point_id: ::String
|
1072
|
-
attr_accessor message_id: ::String
|
1073
|
-
attr_accessor received_headers: ::Array[::String]
|
1074
|
-
attr_accessor received_timestamp: ::Time
|
1075
1079
|
attr_accessor sender_hostname: ::String
|
1076
1080
|
attr_accessor sender_ip_address: ::String
|
1081
|
+
attr_accessor envelope: Types::Envelope
|
1077
1082
|
attr_accessor source_arn: ::String
|
1078
|
-
attr_accessor subject: ::String
|
1079
|
-
attr_accessor to: ::String
|
1080
|
-
attr_accessor x_mailer: ::String
|
1081
|
-
attr_accessor x_original_mailer: ::String
|
1082
|
-
attr_accessor x_priority: ::String
|
1083
1083
|
SENSITIVE: [:sender_ip_address]
|
1084
1084
|
end
|
1085
1085
|
|
1086
1086
|
class Rule
|
1087
|
-
attr_accessor actions: ::Array[Types::RuleAction]
|
1088
|
-
attr_accessor conditions: ::Array[Types::RuleCondition]
|
1089
1087
|
attr_accessor name: ::String
|
1088
|
+
attr_accessor conditions: ::Array[Types::RuleCondition]
|
1090
1089
|
attr_accessor unless: ::Array[Types::RuleCondition]
|
1090
|
+
attr_accessor actions: ::Array[Types::RuleAction]
|
1091
1091
|
SENSITIVE: []
|
1092
1092
|
end
|
1093
1093
|
|
1094
1094
|
class RuleAction
|
1095
|
-
attr_accessor
|
1095
|
+
attr_accessor drop: Types::DropAction
|
1096
|
+
attr_accessor relay: Types::RelayAction
|
1096
1097
|
attr_accessor archive: Types::ArchiveAction
|
1098
|
+
attr_accessor write_to_s3: Types::S3Action
|
1099
|
+
attr_accessor send: Types::SendAction
|
1100
|
+
attr_accessor add_header: Types::AddHeaderAction
|
1101
|
+
attr_accessor replace_recipient: Types::ReplaceRecipientAction
|
1097
1102
|
attr_accessor deliver_to_mailbox: Types::DeliverToMailboxAction
|
1098
1103
|
attr_accessor deliver_to_q_business: Types::DeliverToQBusinessAction
|
1099
|
-
attr_accessor drop: Types::DropAction
|
1100
1104
|
attr_accessor publish_to_sns: Types::SnsAction
|
1101
|
-
attr_accessor relay: Types::RelayAction
|
1102
|
-
attr_accessor replace_recipient: Types::ReplaceRecipientAction
|
1103
|
-
attr_accessor send: Types::SendAction
|
1104
|
-
attr_accessor write_to_s3: Types::S3Action
|
1105
1105
|
attr_accessor unknown: untyped
|
1106
1106
|
SENSITIVE: []
|
1107
1107
|
|
1108
|
-
class
|
1109
|
-
end
|
1110
|
-
class Archive < RuleAction
|
1108
|
+
class Drop < RuleAction
|
1111
1109
|
end
|
1112
|
-
class
|
1110
|
+
class Relay < RuleAction
|
1113
1111
|
end
|
1114
|
-
class
|
1112
|
+
class Archive < RuleAction
|
1115
1113
|
end
|
1116
|
-
class
|
1114
|
+
class WriteToS3 < RuleAction
|
1117
1115
|
end
|
1118
|
-
class
|
1116
|
+
class Send < RuleAction
|
1119
1117
|
end
|
1120
|
-
class
|
1118
|
+
class AddHeader < RuleAction
|
1121
1119
|
end
|
1122
1120
|
class ReplaceRecipient < RuleAction
|
1123
1121
|
end
|
1124
|
-
class
|
1122
|
+
class DeliverToMailbox < RuleAction
|
1125
1123
|
end
|
1126
|
-
class
|
1124
|
+
class DeliverToQBusiness < RuleAction
|
1125
|
+
end
|
1126
|
+
class PublishToSns < RuleAction
|
1127
1127
|
end
|
1128
1128
|
class Unknown < RuleAction
|
1129
1129
|
end
|
@@ -1136,16 +1136,16 @@ module Aws::MailManager
|
|
1136
1136
|
end
|
1137
1137
|
|
1138
1138
|
class RuleBooleanToEvaluate
|
1139
|
-
attr_accessor analysis: Types::Analysis
|
1140
1139
|
attr_accessor attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")
|
1140
|
+
attr_accessor analysis: Types::Analysis
|
1141
1141
|
attr_accessor is_in_address_list: Types::RuleIsInAddressList
|
1142
1142
|
attr_accessor unknown: untyped
|
1143
1143
|
SENSITIVE: []
|
1144
1144
|
|
1145
|
-
class Analysis < RuleBooleanToEvaluate
|
1146
|
-
end
|
1147
1145
|
class Attribute < RuleBooleanToEvaluate
|
1148
1146
|
end
|
1147
|
+
class Analysis < RuleBooleanToEvaluate
|
1148
|
+
end
|
1149
1149
|
class IsInAddressList < RuleBooleanToEvaluate
|
1150
1150
|
end
|
1151
1151
|
class Unknown < RuleBooleanToEvaluate
|
@@ -1154,26 +1154,26 @@ module Aws::MailManager
|
|
1154
1154
|
|
1155
1155
|
class RuleCondition
|
1156
1156
|
attr_accessor boolean_expression: Types::RuleBooleanExpression
|
1157
|
-
attr_accessor dmarc_expression: Types::RuleDmarcExpression
|
1158
|
-
attr_accessor ip_expression: Types::RuleIpExpression
|
1159
|
-
attr_accessor number_expression: Types::RuleNumberExpression
|
1160
1157
|
attr_accessor string_expression: Types::RuleStringExpression
|
1158
|
+
attr_accessor number_expression: Types::RuleNumberExpression
|
1159
|
+
attr_accessor ip_expression: Types::RuleIpExpression
|
1161
1160
|
attr_accessor verdict_expression: Types::RuleVerdictExpression
|
1161
|
+
attr_accessor dmarc_expression: Types::RuleDmarcExpression
|
1162
1162
|
attr_accessor unknown: untyped
|
1163
1163
|
SENSITIVE: []
|
1164
1164
|
|
1165
1165
|
class BooleanExpression < RuleCondition
|
1166
1166
|
end
|
1167
|
-
class
|
1168
|
-
end
|
1169
|
-
class IpExpression < RuleCondition
|
1167
|
+
class StringExpression < RuleCondition
|
1170
1168
|
end
|
1171
1169
|
class NumberExpression < RuleCondition
|
1172
1170
|
end
|
1173
|
-
class
|
1171
|
+
class IpExpression < RuleCondition
|
1174
1172
|
end
|
1175
1173
|
class VerdictExpression < RuleCondition
|
1176
1174
|
end
|
1175
|
+
class DmarcExpression < RuleCondition
|
1176
|
+
end
|
1177
1177
|
class Unknown < RuleCondition
|
1178
1178
|
end
|
1179
1179
|
end
|
@@ -1203,8 +1203,8 @@ module Aws::MailManager
|
|
1203
1203
|
end
|
1204
1204
|
|
1205
1205
|
class RuleIsInAddressList
|
1206
|
-
attr_accessor address_lists: ::Array[::String]
|
1207
1206
|
attr_accessor attribute: ("RECIPIENT" | "MAIL_FROM" | "SENDER" | "FROM" | "TO" | "CC")
|
1207
|
+
attr_accessor address_lists: ::Array[::String]
|
1208
1208
|
SENSITIVE: []
|
1209
1209
|
end
|
1210
1210
|
|
@@ -1227,9 +1227,9 @@ module Aws::MailManager
|
|
1227
1227
|
end
|
1228
1228
|
|
1229
1229
|
class RuleSet
|
1230
|
-
attr_accessor last_modification_date: ::Time
|
1231
1230
|
attr_accessor rule_set_id: ::String
|
1232
1231
|
attr_accessor rule_set_name: ::String
|
1232
|
+
attr_accessor last_modification_date: ::Time
|
1233
1233
|
SENSITIVE: []
|
1234
1234
|
end
|
1235
1235
|
|
@@ -1241,18 +1241,18 @@ module Aws::MailManager
|
|
1241
1241
|
end
|
1242
1242
|
|
1243
1243
|
class RuleStringToEvaluate
|
1244
|
-
attr_accessor analysis: Types::Analysis
|
1245
1244
|
attr_accessor attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")
|
1246
1245
|
attr_accessor mime_header_attribute: ::String
|
1246
|
+
attr_accessor analysis: Types::Analysis
|
1247
1247
|
attr_accessor unknown: untyped
|
1248
1248
|
SENSITIVE: []
|
1249
1249
|
|
1250
|
-
class Analysis < RuleStringToEvaluate
|
1251
|
-
end
|
1252
1250
|
class Attribute < RuleStringToEvaluate
|
1253
1251
|
end
|
1254
1252
|
class MimeHeaderAttribute < RuleStringToEvaluate
|
1255
1253
|
end
|
1254
|
+
class Analysis < RuleStringToEvaluate
|
1255
|
+
end
|
1256
1256
|
class Unknown < RuleStringToEvaluate
|
1257
1257
|
end
|
1258
1258
|
end
|
@@ -1265,15 +1265,15 @@ module Aws::MailManager
|
|
1265
1265
|
end
|
1266
1266
|
|
1267
1267
|
class RuleVerdictToEvaluate
|
1268
|
-
attr_accessor analysis: Types::Analysis
|
1269
1268
|
attr_accessor attribute: ("SPF" | "DKIM")
|
1269
|
+
attr_accessor analysis: Types::Analysis
|
1270
1270
|
attr_accessor unknown: untyped
|
1271
1271
|
SENSITIVE: []
|
1272
1272
|
|
1273
|
-
class Analysis < RuleVerdictToEvaluate
|
1274
|
-
end
|
1275
1273
|
class Attribute < RuleVerdictToEvaluate
|
1276
1274
|
end
|
1275
|
+
class Analysis < RuleVerdictToEvaluate
|
1276
|
+
end
|
1277
1277
|
class Unknown < RuleVerdictToEvaluate
|
1278
1278
|
end
|
1279
1279
|
end
|
@@ -1299,10 +1299,10 @@ module Aws::MailManager
|
|
1299
1299
|
end
|
1300
1300
|
|
1301
1301
|
class SearchStatus
|
1302
|
+
attr_accessor submission_timestamp: ::Time
|
1302
1303
|
attr_accessor completion_timestamp: ::Time
|
1303
|
-
attr_accessor error_message: ::String
|
1304
1304
|
attr_accessor state: ("QUEUED" | "RUNNING" | "COMPLETED" | "FAILED" | "CANCELLED")
|
1305
|
-
attr_accessor
|
1305
|
+
attr_accessor error_message: ::String
|
1306
1306
|
SENSITIVE: []
|
1307
1307
|
end
|
1308
1308
|
|
@@ -1325,10 +1325,10 @@ module Aws::MailManager
|
|
1325
1325
|
|
1326
1326
|
class SnsAction
|
1327
1327
|
attr_accessor action_failure_policy: ("CONTINUE" | "DROP")
|
1328
|
+
attr_accessor topic_arn: ::String
|
1329
|
+
attr_accessor role_arn: ::String
|
1328
1330
|
attr_accessor encoding: ("UTF-8" | "BASE64")
|
1329
1331
|
attr_accessor payload_type: ("HEADERS" | "CONTENT")
|
1330
|
-
attr_accessor role_arn: ::String
|
1331
|
-
attr_accessor topic_arn: ::String
|
1332
1332
|
SENSITIVE: []
|
1333
1333
|
end
|
1334
1334
|
|
@@ -1342,12 +1342,12 @@ module Aws::MailManager
|
|
1342
1342
|
|
1343
1343
|
class StartArchiveExportRequest
|
1344
1344
|
attr_accessor archive_id: ::String
|
1345
|
-
attr_accessor export_destination_configuration: Types::ExportDestinationConfiguration
|
1346
1345
|
attr_accessor filters: Types::ArchiveFilters
|
1347
1346
|
attr_accessor from_timestamp: ::Time
|
1348
|
-
attr_accessor include_metadata: bool
|
1349
|
-
attr_accessor max_results: ::Integer
|
1350
1347
|
attr_accessor to_timestamp: ::Time
|
1348
|
+
attr_accessor max_results: ::Integer
|
1349
|
+
attr_accessor export_destination_configuration: Types::ExportDestinationConfiguration
|
1350
|
+
attr_accessor include_metadata: bool
|
1351
1351
|
SENSITIVE: []
|
1352
1352
|
end
|
1353
1353
|
|
@@ -1360,8 +1360,8 @@ module Aws::MailManager
|
|
1360
1360
|
attr_accessor archive_id: ::String
|
1361
1361
|
attr_accessor filters: Types::ArchiveFilters
|
1362
1362
|
attr_accessor from_timestamp: ::Time
|
1363
|
-
attr_accessor max_results: ::Integer
|
1364
1363
|
attr_accessor to_timestamp: ::Time
|
1364
|
+
attr_accessor max_results: ::Integer
|
1365
1365
|
SENSITIVE: []
|
1366
1366
|
end
|
1367
1367
|
|
@@ -1415,9 +1415,9 @@ module Aws::MailManager
|
|
1415
1415
|
end
|
1416
1416
|
|
1417
1417
|
class TrafficPolicy
|
1418
|
-
attr_accessor default_action: ("ALLOW" | "DENY")
|
1419
|
-
attr_accessor traffic_policy_id: ::String
|
1420
1418
|
attr_accessor traffic_policy_name: ::String
|
1419
|
+
attr_accessor traffic_policy_id: ::String
|
1420
|
+
attr_accessor default_action: ("ALLOW" | "DENY")
|
1421
1421
|
SENSITIVE: []
|
1422
1422
|
end
|
1423
1423
|
|
@@ -1441,12 +1441,12 @@ module Aws::MailManager
|
|
1441
1441
|
end
|
1442
1442
|
|
1443
1443
|
class UpdateIngressPointRequest
|
1444
|
-
attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
|
1445
1444
|
attr_accessor ingress_point_id: ::String
|
1446
1445
|
attr_accessor ingress_point_name: ::String
|
1447
|
-
attr_accessor rule_set_id: ::String
|
1448
1446
|
attr_accessor status_to_update: ("ACTIVE" | "CLOSED")
|
1447
|
+
attr_accessor rule_set_id: ::String
|
1449
1448
|
attr_accessor traffic_policy_id: ::String
|
1449
|
+
attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
|
1450
1450
|
SENSITIVE: []
|
1451
1451
|
end
|
1452
1452
|
|
@@ -1454,11 +1454,11 @@ module Aws::MailManager
|
|
1454
1454
|
end
|
1455
1455
|
|
1456
1456
|
class UpdateRelayRequest
|
1457
|
-
attr_accessor authentication: Types::RelayAuthentication
|
1458
1457
|
attr_accessor relay_id: ::String
|
1459
1458
|
attr_accessor relay_name: ::String
|
1460
1459
|
attr_accessor server_name: ::String
|
1461
1460
|
attr_accessor server_port: ::Integer
|
1461
|
+
attr_accessor authentication: Types::RelayAuthentication
|
1462
1462
|
SENSITIVE: []
|
1463
1463
|
end
|
1464
1464
|
|
@@ -1476,11 +1476,11 @@ module Aws::MailManager
|
|
1476
1476
|
end
|
1477
1477
|
|
1478
1478
|
class UpdateTrafficPolicyRequest
|
1479
|
-
attr_accessor default_action: ("ALLOW" | "DENY")
|
1480
|
-
attr_accessor max_message_size_bytes: ::Integer
|
1481
|
-
attr_accessor policy_statements: ::Array[Types::PolicyStatement]
|
1482
1479
|
attr_accessor traffic_policy_id: ::String
|
1483
1480
|
attr_accessor traffic_policy_name: ::String
|
1481
|
+
attr_accessor policy_statements: ::Array[Types::PolicyStatement]
|
1482
|
+
attr_accessor default_action: ("ALLOW" | "DENY")
|
1483
|
+
attr_accessor max_message_size_bytes: ::Integer
|
1484
1484
|
SENSITIVE: []
|
1485
1485
|
end
|
1486
1486
|
|