aws-sdk-mailmanager 1.26.0 → 1.28.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.
@@ -47,20 +47,20 @@ module Aws::MailManager
47
47
 
48
48
  # An Add On instance represents a specific configuration of an Add On.
49
49
  #
50
- # @!attribute [rw] addon_instance_arn
51
- # The Amazon Resource Name (ARN) of the Add On instance.
52
- # @return [String]
53
- #
54
50
  # @!attribute [rw] addon_instance_id
55
51
  # The unique ID of the Add On instance.
56
52
  # @return [String]
57
53
  #
54
+ # @!attribute [rw] addon_subscription_id
55
+ # The subscription ID for the instance.
56
+ # @return [String]
57
+ #
58
58
  # @!attribute [rw] addon_name
59
59
  # The name of the Add On for the instance.
60
60
  # @return [String]
61
61
  #
62
- # @!attribute [rw] addon_subscription_id
63
- # The subscription ID for the instance.
62
+ # @!attribute [rw] addon_instance_arn
63
+ # The Amazon Resource Name (ARN) of the Add On instance.
64
64
  # @return [String]
65
65
  #
66
66
  # @!attribute [rw] created_timestamp
@@ -70,10 +70,10 @@ module Aws::MailManager
70
70
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/AddonInstance AWS API Documentation
71
71
  #
72
72
  class AddonInstance < Struct.new(
73
- :addon_instance_arn,
74
73
  :addon_instance_id,
75
- :addon_name,
76
74
  :addon_subscription_id,
75
+ :addon_name,
76
+ :addon_instance_arn,
77
77
  :created_timestamp)
78
78
  SENSITIVE = []
79
79
  include Aws::Structure
@@ -82,6 +82,10 @@ module Aws::MailManager
82
82
  # A subscription for an Add On representing the acceptance of its terms
83
83
  # of use and additional pricing.
84
84
  #
85
+ # @!attribute [rw] addon_subscription_id
86
+ # The unique ID of the Add On subscription.
87
+ # @return [String]
88
+ #
85
89
  # @!attribute [rw] addon_name
86
90
  # The name of the Add On.
87
91
  # @return [String]
@@ -90,10 +94,6 @@ module Aws::MailManager
90
94
  # The Amazon Resource Name (ARN) of the Add On subscription.
91
95
  # @return [String]
92
96
  #
93
- # @!attribute [rw] addon_subscription_id
94
- # The unique ID of the Add On subscription.
95
- # @return [String]
96
- #
97
97
  # @!attribute [rw] created_timestamp
98
98
  # The timestamp of when the Add On subscription was created.
99
99
  # @return [Time]
@@ -101,9 +101,9 @@ module Aws::MailManager
101
101
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/AddonSubscription AWS API Documentation
102
102
  #
103
103
  class AddonSubscription < Struct.new(
104
+ :addon_subscription_id,
104
105
  :addon_name,
105
106
  :addon_subscription_arn,
106
- :addon_subscription_id,
107
107
  :created_timestamp)
108
108
  SENSITIVE = []
109
109
  include Aws::Structure
@@ -126,14 +126,14 @@ module Aws::MailManager
126
126
  # An address list contains a list of emails and domains that are used in
127
127
  # MailManager Ingress endpoints and Rules for email management.
128
128
  #
129
- # @!attribute [rw] address_list_arn
130
- # The Amazon Resource Name (ARN) of the address list.
131
- # @return [String]
132
- #
133
129
  # @!attribute [rw] address_list_id
134
130
  # The identifier of the address list.
135
131
  # @return [String]
136
132
  #
133
+ # @!attribute [rw] address_list_arn
134
+ # The Amazon Resource Name (ARN) of the address list.
135
+ # @return [String]
136
+ #
137
137
  # @!attribute [rw] address_list_name
138
138
  # The user-friendly name of the address list.
139
139
  # @return [String]
@@ -149,8 +149,8 @@ module Aws::MailManager
149
149
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/AddressList AWS API Documentation
150
150
  #
151
151
  class AddressList < Struct.new(
152
- :address_list_arn,
153
152
  :address_list_id,
153
+ :address_list_arn,
154
154
  :address_list_name,
155
155
  :created_timestamp,
156
156
  :last_updated_timestamp)
@@ -285,26 +285,26 @@ module Aws::MailManager
285
285
  #
286
286
  # @note ArchiveFilterCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ArchiveFilterCondition corresponding to the set member.
287
287
  #
288
- # @!attribute [rw] boolean_expression
289
- # A boolean expression to evaluate against email attributes.
290
- # @return [Types::ArchiveBooleanExpression]
291
- #
292
288
  # @!attribute [rw] string_expression
293
289
  # A string expression to evaluate against email attributes.
294
290
  # @return [Types::ArchiveStringExpression]
295
291
  #
292
+ # @!attribute [rw] boolean_expression
293
+ # A boolean expression to evaluate against email attributes.
294
+ # @return [Types::ArchiveBooleanExpression]
295
+ #
296
296
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ArchiveFilterCondition AWS API Documentation
297
297
  #
298
298
  class ArchiveFilterCondition < Struct.new(
299
- :boolean_expression,
300
299
  :string_expression,
300
+ :boolean_expression,
301
301
  :unknown)
302
302
  SENSITIVE = []
303
303
  include Aws::Structure
304
304
  include Aws::Structure::Union
305
305
 
306
- class BooleanExpression < ArchiveFilterCondition; end
307
306
  class StringExpression < ArchiveFilterCondition; end
307
+ class BooleanExpression < ArchiveFilterCondition; end
308
308
  class Unknown < ArchiveFilterCondition; end
309
309
  end
310
310
 
@@ -413,12 +413,6 @@ module Aws::MailManager
413
413
  include Aws::Structure
414
414
  end
415
415
 
416
- # @!attribute [rw] addon_subscription_id
417
- # The unique ID of a previously created subscription that an Add On
418
- # instance is created for. You can only have one instance per
419
- # subscription.
420
- # @return [String]
421
- #
422
416
  # @!attribute [rw] client_token
423
417
  # A unique token that Amazon SES uses to recognize subsequent retries
424
418
  # of the same request.
@@ -427,6 +421,12 @@ module Aws::MailManager
427
421
  # not need to pass this option.
428
422
  # @return [String]
429
423
  #
424
+ # @!attribute [rw] addon_subscription_id
425
+ # The unique ID of a previously created subscription that an Add On
426
+ # instance is created for. You can only have one instance per
427
+ # subscription.
428
+ # @return [String]
429
+ #
430
430
  # @!attribute [rw] tags
431
431
  # The tags used to organize, track, or control access for the
432
432
  # resource. For example, \{ "tags": \{"key1":"value1",
@@ -436,8 +436,8 @@ module Aws::MailManager
436
436
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateAddonInstanceRequest AWS API Documentation
437
437
  #
438
438
  class CreateAddonInstanceRequest < Struct.new(
439
- :addon_subscription_id,
440
439
  :client_token,
440
+ :addon_subscription_id,
441
441
  :tags)
442
442
  SENSITIVE = []
443
443
  include Aws::Structure
@@ -455,11 +455,6 @@ module Aws::MailManager
455
455
  include Aws::Structure
456
456
  end
457
457
 
458
- # @!attribute [rw] addon_name
459
- # The name of the Add On to subscribe to. You can only have one
460
- # subscription for each Add On name.
461
- # @return [String]
462
- #
463
458
  # @!attribute [rw] client_token
464
459
  # A unique token that Amazon SES uses to recognize subsequent retries
465
460
  # of the same request.
@@ -468,6 +463,11 @@ module Aws::MailManager
468
463
  # not need to pass this option.
469
464
  # @return [String]
470
465
  #
466
+ # @!attribute [rw] addon_name
467
+ # The name of the Add On to subscribe to. You can only have one
468
+ # subscription for each Add On name.
469
+ # @return [String]
470
+ #
471
471
  # @!attribute [rw] tags
472
472
  # The tags used to organize, track, or control access for the
473
473
  # resource. For example, \{ "tags": \{"key1":"value1",
@@ -477,8 +477,8 @@ module Aws::MailManager
477
477
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateAddonSubscriptionRequest AWS API Documentation
478
478
  #
479
479
  class CreateAddonSubscriptionRequest < Struct.new(
480
- :addon_name,
481
480
  :client_token,
481
+ :addon_name,
482
482
  :tags)
483
483
  SENSITIVE = []
484
484
  include Aws::Structure
@@ -496,11 +496,6 @@ module Aws::MailManager
496
496
  include Aws::Structure
497
497
  end
498
498
 
499
- # @!attribute [rw] address_list_id
500
- # The unique identifier of the address list for importing addresses
501
- # to.
502
- # @return [String]
503
- #
504
499
  # @!attribute [rw] client_token
505
500
  # A unique token that Amazon SES uses to recognize subsequent retries
506
501
  # of the same request.
@@ -509,21 +504,26 @@ module Aws::MailManager
509
504
  # not need to pass this option.
510
505
  # @return [String]
511
506
  #
512
- # @!attribute [rw] import_data_format
513
- # The format of the input for an import job.
514
- # @return [Types::ImportDataFormat]
507
+ # @!attribute [rw] address_list_id
508
+ # The unique identifier of the address list for importing addresses
509
+ # to.
510
+ # @return [String]
515
511
  #
516
512
  # @!attribute [rw] name
517
513
  # A user-friendly name for the import job.
518
514
  # @return [String]
519
515
  #
516
+ # @!attribute [rw] import_data_format
517
+ # The format of the input for an import job.
518
+ # @return [Types::ImportDataFormat]
519
+ #
520
520
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateAddressListImportJobRequest AWS API Documentation
521
521
  #
522
522
  class CreateAddressListImportJobRequest < Struct.new(
523
- :address_list_id,
524
523
  :client_token,
525
- :import_data_format,
526
- :name)
524
+ :address_list_id,
525
+ :name,
526
+ :import_data_format)
527
527
  SENSITIVE = []
528
528
  include Aws::Structure
529
529
  end
@@ -545,10 +545,6 @@ module Aws::MailManager
545
545
  include Aws::Structure
546
546
  end
547
547
 
548
- # @!attribute [rw] address_list_name
549
- # A user-friendly name for the address list.
550
- # @return [String]
551
- #
552
548
  # @!attribute [rw] client_token
553
549
  # A unique token that Amazon SES uses to recognize subsequent retries
554
550
  # of the same request.
@@ -557,6 +553,10 @@ module Aws::MailManager
557
553
  # not need to pass this option.
558
554
  # @return [String]
559
555
  #
556
+ # @!attribute [rw] address_list_name
557
+ # A user-friendly name for the address list.
558
+ # @return [String]
559
+ #
560
560
  # @!attribute [rw] tags
561
561
  # The tags used to organize, track, or control access for the
562
562
  # resource. For example, \{ "tags": \{"key1":"value1",
@@ -566,8 +566,8 @@ module Aws::MailManager
566
566
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateAddressListRequest AWS API Documentation
567
567
  #
568
568
  class CreateAddressListRequest < Struct.new(
569
- :address_list_name,
570
569
  :client_token,
570
+ :address_list_name,
571
571
  :tags)
572
572
  SENSITIVE = []
573
573
  include Aws::Structure
@@ -587,10 +587,6 @@ module Aws::MailManager
587
587
 
588
588
  # The request to create a new email archive.
589
589
  #
590
- # @!attribute [rw] archive_name
591
- # A unique name for the new archive.
592
- # @return [String]
593
- #
594
590
  # @!attribute [rw] client_token
595
591
  # A unique token Amazon SES uses to recognize retries of this request.
596
592
  #
@@ -598,9 +594,8 @@ module Aws::MailManager
598
594
  # not need to pass this option.
599
595
  # @return [String]
600
596
  #
601
- # @!attribute [rw] kms_key_arn
602
- # The Amazon Resource Name (ARN) of the KMS key for encrypting emails
603
- # in the archive.
597
+ # @!attribute [rw] archive_name
598
+ # A unique name for the new archive.
604
599
  # @return [String]
605
600
  #
606
601
  # @!attribute [rw] retention
@@ -608,6 +603,11 @@ module Aws::MailManager
608
603
  # deletion.
609
604
  # @return [Types::ArchiveRetention]
610
605
  #
606
+ # @!attribute [rw] kms_key_arn
607
+ # The Amazon Resource Name (ARN) of the KMS key for encrypting emails
608
+ # in the archive.
609
+ # @return [String]
610
+ #
611
611
  # @!attribute [rw] tags
612
612
  # The tags used to organize, track, or control access for the
613
613
  # resource. For example, \{ "tags": \{"key1":"value1",
@@ -617,10 +617,10 @@ module Aws::MailManager
617
617
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateArchiveRequest AWS API Documentation
618
618
  #
619
619
  class CreateArchiveRequest < Struct.new(
620
- :archive_name,
621
620
  :client_token,
622
- :kms_key_arn,
621
+ :archive_name,
623
622
  :retention,
623
+ :kms_key_arn,
624
624
  :tags)
625
625
  SENSITIVE = []
626
626
  include Aws::Structure
@@ -648,15 +648,29 @@ module Aws::MailManager
648
648
  # not need to pass this option.
649
649
  # @return [String]
650
650
  #
651
+ # @!attribute [rw] ingress_point_name
652
+ # A user friendly name for an ingress endpoint resource.
653
+ # @return [String]
654
+ #
655
+ # @!attribute [rw] type
656
+ # The type of the ingress endpoint to create.
657
+ # @return [String]
658
+ #
659
+ # @!attribute [rw] rule_set_id
660
+ # The identifier of an existing rule set that you attach to an ingress
661
+ # endpoint resource.
662
+ # @return [String]
663
+ #
664
+ # @!attribute [rw] traffic_policy_id
665
+ # The identifier of an existing traffic policy that you attach to an
666
+ # ingress endpoint resource.
667
+ # @return [String]
668
+ #
651
669
  # @!attribute [rw] ingress_point_configuration
652
670
  # If you choose an Authenticated ingress endpoint, you must configure
653
671
  # either an SMTP password or a secret ARN.
654
672
  # @return [Types::IngressPointConfiguration]
655
673
  #
656
- # @!attribute [rw] ingress_point_name
657
- # A user friendly name for an ingress endpoint resource.
658
- # @return [String]
659
- #
660
674
  # @!attribute [rw] network_configuration
661
675
  # Specifies the network configuration for the ingress point. This
662
676
  # allows you to create an IPv4-only, Dual-Stack, or PrivateLink type
@@ -664,37 +678,23 @@ module Aws::MailManager
664
678
  # IPv4-only.
665
679
  # @return [Types::NetworkConfiguration]
666
680
  #
667
- # @!attribute [rw] rule_set_id
668
- # The identifier of an existing rule set that you attach to an ingress
669
- # endpoint resource.
670
- # @return [String]
671
- #
672
681
  # @!attribute [rw] tags
673
682
  # The tags used to organize, track, or control access for the
674
683
  # resource. For example, \{ "tags": \{"key1":"value1",
675
684
  # "key2":"value2"} }.
676
685
  # @return [Array<Types::Tag>]
677
686
  #
678
- # @!attribute [rw] traffic_policy_id
679
- # The identifier of an existing traffic policy that you attach to an
680
- # ingress endpoint resource.
681
- # @return [String]
682
- #
683
- # @!attribute [rw] type
684
- # The type of the ingress endpoint to create.
685
- # @return [String]
686
- #
687
687
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateIngressPointRequest AWS API Documentation
688
688
  #
689
689
  class CreateIngressPointRequest < Struct.new(
690
690
  :client_token,
691
- :ingress_point_configuration,
692
691
  :ingress_point_name,
693
- :network_configuration,
692
+ :type,
694
693
  :rule_set_id,
695
- :tags,
696
694
  :traffic_policy_id,
697
- :type)
695
+ :ingress_point_configuration,
696
+ :network_configuration,
697
+ :tags)
698
698
  SENSITIVE = []
699
699
  include Aws::Structure
700
700
  end
@@ -711,11 +711,6 @@ module Aws::MailManager
711
711
  include Aws::Structure
712
712
  end
713
713
 
714
- # @!attribute [rw] authentication
715
- # Authentication for the relay destination server—specify the
716
- # secretARN where the SMTP credentials are stored.
717
- # @return [Types::RelayAuthentication]
718
- #
719
714
  # @!attribute [rw] client_token
720
715
  # A unique token that Amazon SES uses to recognize subsequent retries
721
716
  # of the same request.
@@ -736,6 +731,11 @@ module Aws::MailManager
736
731
  # The destination relay server port.
737
732
  # @return [Integer]
738
733
  #
734
+ # @!attribute [rw] authentication
735
+ # Authentication for the relay destination server—specify the
736
+ # secretARN where the SMTP credentials are stored.
737
+ # @return [Types::RelayAuthentication]
738
+ #
739
739
  # @!attribute [rw] tags
740
740
  # The tags used to organize, track, or control access for the
741
741
  # resource. For example, \{ "tags": \{"key1":"value1",
@@ -745,11 +745,11 @@ module Aws::MailManager
745
745
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateRelayRequest AWS API Documentation
746
746
  #
747
747
  class CreateRelayRequest < Struct.new(
748
- :authentication,
749
748
  :client_token,
750
749
  :relay_name,
751
750
  :server_name,
752
751
  :server_port,
752
+ :authentication,
753
753
  :tags)
754
754
  SENSITIVE = []
755
755
  include Aws::Structure
@@ -821,6 +821,14 @@ module Aws::MailManager
821
821
  # not need to pass this option.
822
822
  # @return [String]
823
823
  #
824
+ # @!attribute [rw] traffic_policy_name
825
+ # A user-friendly name for the traffic policy resource.
826
+ # @return [String]
827
+ #
828
+ # @!attribute [rw] policy_statements
829
+ # Conditional statements for filtering email traffic.
830
+ # @return [Array<Types::PolicyStatement>]
831
+ #
824
832
  # @!attribute [rw] default_action
825
833
  # Default action instructs the traffic policy to either Allow or Deny
826
834
  # (block) messages that fall outside of (or not addressed by) the
@@ -832,29 +840,21 @@ module Aws::MailManager
832
840
  # this traffic policy—anything larger will be blocked.
833
841
  # @return [Integer]
834
842
  #
835
- # @!attribute [rw] policy_statements
836
- # Conditional statements for filtering email traffic.
837
- # @return [Array<Types::PolicyStatement>]
838
- #
839
843
  # @!attribute [rw] tags
840
844
  # The tags used to organize, track, or control access for the
841
845
  # resource. For example, \{ "tags": \{"key1":"value1",
842
846
  # "key2":"value2"} }.
843
847
  # @return [Array<Types::Tag>]
844
848
  #
845
- # @!attribute [rw] traffic_policy_name
846
- # A user-friendly name for the traffic policy resource.
847
- # @return [String]
848
- #
849
849
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/CreateTrafficPolicyRequest AWS API Documentation
850
850
  #
851
851
  class CreateTrafficPolicyRequest < Struct.new(
852
852
  :client_token,
853
+ :traffic_policy_name,
854
+ :policy_statements,
853
855
  :default_action,
854
856
  :max_message_size_bytes,
855
- :policy_statements,
856
- :tags,
857
- :traffic_policy_name)
857
+ :tags)
858
858
  SENSITIVE = []
859
859
  include Aws::Structure
860
860
  end
@@ -1076,20 +1076,20 @@ module Aws::MailManager
1076
1076
  include Aws::Structure
1077
1077
  end
1078
1078
 
1079
- # @!attribute [rw] address
1080
- # The address to be removed from the address list.
1081
- # @return [String]
1082
- #
1083
1079
  # @!attribute [rw] address_list_id
1084
1080
  # The unique identifier of the address list to remove the address
1085
1081
  # from.
1086
1082
  # @return [String]
1087
1083
  #
1084
+ # @!attribute [rw] address
1085
+ # The address to be removed from the address list.
1086
+ # @return [String]
1087
+ #
1088
1088
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/DeregisterMemberFromAddressListRequest AWS API Documentation
1089
1089
  #
1090
1090
  class DeregisterMemberFromAddressListRequest < Struct.new(
1091
- :address,
1092
- :address_list_id)
1091
+ :address_list_id,
1092
+ :address)
1093
1093
  SENSITIVE = [:address]
1094
1094
  include Aws::Structure
1095
1095
  end
@@ -1110,14 +1110,14 @@ module Aws::MailManager
1110
1110
 
1111
1111
  # The SMTP envelope information of the email.
1112
1112
  #
1113
- # @!attribute [rw] from
1114
- # The RCPT FROM given by the host from which the email was received.
1115
- # @return [String]
1116
- #
1117
1113
  # @!attribute [rw] helo
1118
1114
  # The HELO used by the host from which the email was received.
1119
1115
  # @return [String]
1120
1116
  #
1117
+ # @!attribute [rw] from
1118
+ # The RCPT FROM given by the host from which the email was received.
1119
+ # @return [String]
1120
+ #
1121
1121
  # @!attribute [rw] to
1122
1122
  # All SMTP TO entries given by the host from which the email was
1123
1123
  # received.
@@ -1126,8 +1126,8 @@ module Aws::MailManager
1126
1126
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/Envelope AWS API Documentation
1127
1127
  #
1128
1128
  class Envelope < Struct.new(
1129
- :from,
1130
1129
  :helo,
1130
+ :from,
1131
1131
  :to)
1132
1132
  SENSITIVE = []
1133
1133
  include Aws::Structure
@@ -1158,29 +1158,29 @@ module Aws::MailManager
1158
1158
 
1159
1159
  # The current status of an archive export job.
1160
1160
  #
1161
+ # @!attribute [rw] submission_timestamp
1162
+ # The timestamp of when the export job was submitted.
1163
+ # @return [Time]
1164
+ #
1161
1165
  # @!attribute [rw] completion_timestamp
1162
1166
  # The timestamp of when the export job completed (if finished).
1163
1167
  # @return [Time]
1164
1168
  #
1165
- # @!attribute [rw] error_message
1166
- # An error message if the export job failed.
1167
- # @return [String]
1168
- #
1169
1169
  # @!attribute [rw] state
1170
1170
  # The current state of the export job.
1171
1171
  # @return [String]
1172
1172
  #
1173
- # @!attribute [rw] submission_timestamp
1174
- # The timestamp of when the export job was submitted.
1175
- # @return [Time]
1173
+ # @!attribute [rw] error_message
1174
+ # An error message if the export job failed.
1175
+ # @return [String]
1176
1176
  #
1177
1177
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ExportStatus AWS API Documentation
1178
1178
  #
1179
1179
  class ExportStatus < Struct.new(
1180
+ :submission_timestamp,
1180
1181
  :completion_timestamp,
1181
- :error_message,
1182
1182
  :state,
1183
- :submission_timestamp)
1183
+ :error_message)
1184
1184
  SENSITIVE = []
1185
1185
  include Aws::Structure
1186
1186
  end
@@ -1216,8 +1216,8 @@ module Aws::MailManager
1216
1216
  include Aws::Structure
1217
1217
  end
1218
1218
 
1219
- # @!attribute [rw] addon_instance_arn
1220
- # The Amazon Resource Name (ARN) of the Add On instance.
1219
+ # @!attribute [rw] addon_subscription_id
1220
+ # The subscription ID associated to the instance.
1221
1221
  # @return [String]
1222
1222
  #
1223
1223
  # @!attribute [rw] addon_name
@@ -1225,8 +1225,8 @@ module Aws::MailManager
1225
1225
  # the instance.
1226
1226
  # @return [String]
1227
1227
  #
1228
- # @!attribute [rw] addon_subscription_id
1229
- # The subscription ID associated to the instance.
1228
+ # @!attribute [rw] addon_instance_arn
1229
+ # The Amazon Resource Name (ARN) of the Add On instance.
1230
1230
  # @return [String]
1231
1231
  #
1232
1232
  # @!attribute [rw] created_timestamp
@@ -1236,9 +1236,9 @@ module Aws::MailManager
1236
1236
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetAddonInstanceResponse AWS API Documentation
1237
1237
  #
1238
1238
  class GetAddonInstanceResponse < Struct.new(
1239
- :addon_instance_arn,
1240
- :addon_name,
1241
1239
  :addon_subscription_id,
1240
+ :addon_name,
1241
+ :addon_instance_arn,
1242
1242
  :created_timestamp)
1243
1243
  SENSITIVE = []
1244
1244
  include Aws::Structure
@@ -1290,23 +1290,27 @@ module Aws::MailManager
1290
1290
  include Aws::Structure
1291
1291
  end
1292
1292
 
1293
- # @!attribute [rw] address_list_id
1294
- # The unique identifier of the address list the import job was created
1295
- # for.
1293
+ # @!attribute [rw] job_id
1294
+ # The identifier of the import job.
1296
1295
  # @return [String]
1297
1296
  #
1298
- # @!attribute [rw] completed_timestamp
1299
- # The timestamp of when the import job was completed.
1300
- # @return [Time]
1301
- #
1302
- # @!attribute [rw] created_timestamp
1303
- # The timestamp of when the import job was created.
1304
- # @return [Time]
1297
+ # @!attribute [rw] name
1298
+ # A user-friendly name for the import job.
1299
+ # @return [String]
1305
1300
  #
1306
- # @!attribute [rw] error
1307
- # The reason for failure of an import job.
1301
+ # @!attribute [rw] status
1302
+ # The status of the import job.
1303
+ # @return [String]
1304
+ #
1305
+ # @!attribute [rw] pre_signed_url
1306
+ # The pre-signed URL target for uploading the input file.
1308
1307
  # @return [String]
1309
1308
  #
1309
+ # @!attribute [rw] imported_items_count
1310
+ # The number of input addresses successfully imported into the address
1311
+ # list.
1312
+ # @return [Integer]
1313
+ #
1310
1314
  # @!attribute [rw] failed_items_count
1311
1315
  # The number of input addresses that failed to be imported into the
1312
1316
  # address list.
@@ -1316,46 +1320,42 @@ module Aws::MailManager
1316
1320
  # The format of the input for an import job.
1317
1321
  # @return [Types::ImportDataFormat]
1318
1322
  #
1319
- # @!attribute [rw] imported_items_count
1320
- # The number of input addresses successfully imported into the address
1321
- # list.
1322
- # @return [Integer]
1323
- #
1324
- # @!attribute [rw] job_id
1325
- # The identifier of the import job.
1326
- # @return [String]
1327
- #
1328
- # @!attribute [rw] name
1329
- # A user-friendly name for the import job.
1323
+ # @!attribute [rw] address_list_id
1324
+ # The unique identifier of the address list the import job was created
1325
+ # for.
1330
1326
  # @return [String]
1331
1327
  #
1332
- # @!attribute [rw] pre_signed_url
1333
- # The pre-signed URL target for uploading the input file.
1334
- # @return [String]
1328
+ # @!attribute [rw] created_timestamp
1329
+ # The timestamp of when the import job was created.
1330
+ # @return [Time]
1335
1331
  #
1336
1332
  # @!attribute [rw] start_timestamp
1337
1333
  # The timestamp of when the import job was started.
1338
1334
  # @return [Time]
1339
1335
  #
1340
- # @!attribute [rw] status
1341
- # The status of the import job.
1336
+ # @!attribute [rw] completed_timestamp
1337
+ # The timestamp of when the import job was completed.
1338
+ # @return [Time]
1339
+ #
1340
+ # @!attribute [rw] error
1341
+ # The reason for failure of an import job.
1342
1342
  # @return [String]
1343
1343
  #
1344
1344
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetAddressListImportJobResponse AWS API Documentation
1345
1345
  #
1346
1346
  class GetAddressListImportJobResponse < Struct.new(
1347
- :address_list_id,
1348
- :completed_timestamp,
1349
- :created_timestamp,
1350
- :error,
1351
- :failed_items_count,
1352
- :import_data_format,
1353
- :imported_items_count,
1354
1347
  :job_id,
1355
1348
  :name,
1349
+ :status,
1356
1350
  :pre_signed_url,
1351
+ :imported_items_count,
1352
+ :failed_items_count,
1353
+ :import_data_format,
1354
+ :address_list_id,
1355
+ :created_timestamp,
1357
1356
  :start_timestamp,
1358
- :status)
1357
+ :completed_timestamp,
1358
+ :error)
1359
1359
  SENSITIVE = [:pre_signed_url]
1360
1360
  include Aws::Structure
1361
1361
  end
@@ -1372,14 +1372,14 @@ module Aws::MailManager
1372
1372
  include Aws::Structure
1373
1373
  end
1374
1374
 
1375
- # @!attribute [rw] address_list_arn
1376
- # The Amazon Resource Name (ARN) of the address list resource.
1377
- # @return [String]
1378
- #
1379
1375
  # @!attribute [rw] address_list_id
1380
1376
  # The identifier of the address list resource.
1381
1377
  # @return [String]
1382
1378
  #
1379
+ # @!attribute [rw] address_list_arn
1380
+ # The Amazon Resource Name (ARN) of the address list resource.
1381
+ # @return [String]
1382
+ #
1383
1383
  # @!attribute [rw] address_list_name
1384
1384
  # A user-friendly name for the address list resource.
1385
1385
  # @return [String]
@@ -1395,8 +1395,8 @@ module Aws::MailManager
1395
1395
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetAddressListResponse AWS API Documentation
1396
1396
  #
1397
1397
  class GetAddressListResponse < Struct.new(
1398
- :address_list_arn,
1399
1398
  :address_list_id,
1399
+ :address_list_arn,
1400
1400
  :address_list_name,
1401
1401
  :created_timestamp,
1402
1402
  :last_updated_timestamp)
@@ -1424,10 +1424,6 @@ module Aws::MailManager
1424
1424
  # The identifier of the archive the email export was performed from.
1425
1425
  # @return [String]
1426
1426
  #
1427
- # @!attribute [rw] export_destination_configuration
1428
- # Where the exported emails are being delivered.
1429
- # @return [Types::ExportDestinationConfiguration]
1430
- #
1431
1427
  # @!attribute [rw] filters
1432
1428
  # The criteria used to filter emails included in the export.
1433
1429
  # @return [Types::ArchiveFilters]
@@ -1436,28 +1432,32 @@ module Aws::MailManager
1436
1432
  # The start of the timestamp range the exported emails cover.
1437
1433
  # @return [Time]
1438
1434
  #
1435
+ # @!attribute [rw] to_timestamp
1436
+ # The end of the date range the exported emails cover.
1437
+ # @return [Time]
1438
+ #
1439
1439
  # @!attribute [rw] max_results
1440
1440
  # The maximum number of email items included in the export.
1441
1441
  # @return [Integer]
1442
1442
  #
1443
+ # @!attribute [rw] export_destination_configuration
1444
+ # Where the exported emails are being delivered.
1445
+ # @return [Types::ExportDestinationConfiguration]
1446
+ #
1443
1447
  # @!attribute [rw] status
1444
1448
  # The current status of the export job.
1445
1449
  # @return [Types::ExportStatus]
1446
1450
  #
1447
- # @!attribute [rw] to_timestamp
1448
- # The end of the date range the exported emails cover.
1449
- # @return [Time]
1450
- #
1451
1451
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetArchiveExportResponse AWS API Documentation
1452
1452
  #
1453
1453
  class GetArchiveExportResponse < Struct.new(
1454
1454
  :archive_id,
1455
- :export_destination_configuration,
1456
1455
  :filters,
1457
1456
  :from_timestamp,
1457
+ :to_timestamp,
1458
1458
  :max_results,
1459
- :status,
1460
- :to_timestamp)
1459
+ :export_destination_configuration,
1460
+ :status)
1461
1461
  SENSITIVE = []
1462
1462
  include Aws::Structure
1463
1463
  end
@@ -1510,10 +1510,6 @@ module Aws::MailManager
1510
1510
  # The response containing details about the requested archived email
1511
1511
  # message.
1512
1512
  #
1513
- # @!attribute [rw] envelope
1514
- # The SMTP envelope information of the email.
1515
- # @return [Types::Envelope]
1516
- #
1517
1513
  # @!attribute [rw] message_download_link
1518
1514
  # A pre-signed URL to temporarily download the full message content.
1519
1515
  # @return [String]
@@ -1522,12 +1518,16 @@ module Aws::MailManager
1522
1518
  # The metadata about the email.
1523
1519
  # @return [Types::Metadata]
1524
1520
  #
1521
+ # @!attribute [rw] envelope
1522
+ # The SMTP envelope information of the email.
1523
+ # @return [Types::Envelope]
1524
+ #
1525
1525
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetArchiveMessageResponse AWS API Documentation
1526
1526
  #
1527
1527
  class GetArchiveMessageResponse < Struct.new(
1528
- :envelope,
1529
1528
  :message_download_link,
1530
- :metadata)
1529
+ :metadata,
1530
+ :envelope)
1531
1531
  SENSITIVE = []
1532
1532
  include Aws::Structure
1533
1533
  end
@@ -1548,10 +1548,6 @@ module Aws::MailManager
1548
1548
 
1549
1549
  # The response containing details of the requested archive.
1550
1550
  #
1551
- # @!attribute [rw] archive_arn
1552
- # The Amazon Resource Name (ARN) of the archive.
1553
- # @return [String]
1554
- #
1555
1551
  # @!attribute [rw] archive_id
1556
1552
  # The unique identifier of the archive.
1557
1553
  # @return [String]
@@ -1560,6 +1556,10 @@ module Aws::MailManager
1560
1556
  # The unique name assigned to the archive.
1561
1557
  # @return [String]
1562
1558
  #
1559
+ # @!attribute [rw] archive_arn
1560
+ # The Amazon Resource Name (ARN) of the archive.
1561
+ # @return [String]
1562
+ #
1563
1563
  # @!attribute [rw] archive_state
1564
1564
  # The current state of the archive:
1565
1565
  #
@@ -1570,34 +1570,34 @@ module Aws::MailManager
1570
1570
  # can be made in this state.
1571
1571
  # @return [String]
1572
1572
  #
1573
+ # @!attribute [rw] retention
1574
+ # The retention period for emails in this archive.
1575
+ # @return [Types::ArchiveRetention]
1576
+ #
1573
1577
  # @!attribute [rw] created_timestamp
1574
1578
  # The timestamp of when the archive was created.
1575
1579
  # @return [Time]
1576
1580
  #
1577
- # @!attribute [rw] kms_key_arn
1578
- # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
1579
- # archive.
1580
- # @return [String]
1581
- #
1582
1581
  # @!attribute [rw] last_updated_timestamp
1583
1582
  # The timestamp of when the archive was modified.
1584
1583
  # @return [Time]
1585
1584
  #
1586
- # @!attribute [rw] retention
1587
- # The retention period for emails in this archive.
1588
- # @return [Types::ArchiveRetention]
1585
+ # @!attribute [rw] kms_key_arn
1586
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
1587
+ # archive.
1588
+ # @return [String]
1589
1589
  #
1590
1590
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetArchiveResponse AWS API Documentation
1591
1591
  #
1592
1592
  class GetArchiveResponse < Struct.new(
1593
- :archive_arn,
1594
1593
  :archive_id,
1595
1594
  :archive_name,
1595
+ :archive_arn,
1596
1596
  :archive_state,
1597
+ :retention,
1597
1598
  :created_timestamp,
1598
- :kms_key_arn,
1599
1599
  :last_updated_timestamp,
1600
- :retention)
1600
+ :kms_key_arn)
1601
1601
  SENSITIVE = []
1602
1602
  include Aws::Structure
1603
1603
  end
@@ -1630,6 +1630,10 @@ module Aws::MailManager
1630
1630
  # The start timestamp of the range the searched emails cover.
1631
1631
  # @return [Time]
1632
1632
  #
1633
+ # @!attribute [rw] to_timestamp
1634
+ # The end timestamp of the range the searched emails cover.
1635
+ # @return [Time]
1636
+ #
1633
1637
  # @!attribute [rw] max_results
1634
1638
  # The maximum number of search results to return.
1635
1639
  # @return [Integer]
@@ -1638,19 +1642,15 @@ module Aws::MailManager
1638
1642
  # The current status of the search job.
1639
1643
  # @return [Types::SearchStatus]
1640
1644
  #
1641
- # @!attribute [rw] to_timestamp
1642
- # The end timestamp of the range the searched emails cover.
1643
- # @return [Time]
1644
- #
1645
1645
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetArchiveSearchResponse AWS API Documentation
1646
1646
  #
1647
1647
  class GetArchiveSearchResponse < Struct.new(
1648
1648
  :archive_id,
1649
1649
  :filters,
1650
1650
  :from_timestamp,
1651
+ :to_timestamp,
1651
1652
  :max_results,
1652
- :status,
1653
- :to_timestamp)
1653
+ :status)
1654
1654
  SENSITIVE = []
1655
1655
  include Aws::Structure
1656
1656
  end
@@ -1696,91 +1696,91 @@ module Aws::MailManager
1696
1696
  include Aws::Structure
1697
1697
  end
1698
1698
 
1699
- # @!attribute [rw] a_record
1700
- # The DNS A Record that identifies your ingress endpoint. Configure
1701
- # your DNS Mail Exchange (MX) record with this value to route emails
1702
- # to Mail Manager.
1699
+ # @!attribute [rw] ingress_point_id
1700
+ # The identifier of an ingress endpoint resource.
1703
1701
  # @return [String]
1704
1702
  #
1705
- # @!attribute [rw] created_timestamp
1706
- # The timestamp of when the ingress endpoint was created.
1707
- # @return [Time]
1703
+ # @!attribute [rw] ingress_point_name
1704
+ # A user friendly name for the ingress endpoint.
1705
+ # @return [String]
1708
1706
  #
1709
1707
  # @!attribute [rw] ingress_point_arn
1710
1708
  # The Amazon Resource Name (ARN) of the ingress endpoint resource.
1711
1709
  # @return [String]
1712
1710
  #
1713
- # @!attribute [rw] ingress_point_auth_configuration
1714
- # The authentication configuration of the ingress endpoint resource.
1715
- # @return [Types::IngressPointAuthConfiguration]
1716
- #
1717
- # @!attribute [rw] ingress_point_id
1718
- # The identifier of an ingress endpoint resource.
1711
+ # @!attribute [rw] status
1712
+ # The status of the ingress endpoint resource.
1719
1713
  # @return [String]
1720
1714
  #
1721
- # @!attribute [rw] ingress_point_name
1722
- # A user friendly name for the ingress endpoint.
1715
+ # @!attribute [rw] type
1716
+ # The type of ingress endpoint.
1723
1717
  # @return [String]
1724
1718
  #
1725
- # @!attribute [rw] last_updated_timestamp
1726
- # The timestamp of when the ingress endpoint was last updated.
1727
- # @return [Time]
1728
- #
1729
- # @!attribute [rw] network_configuration
1730
- # The network configuration for the ingress point.
1731
- # @return [Types::NetworkConfiguration]
1719
+ # @!attribute [rw] a_record
1720
+ # The DNS A Record that identifies your ingress endpoint. Configure
1721
+ # your DNS Mail Exchange (MX) record with this value to route emails
1722
+ # to Mail Manager.
1723
+ # @return [String]
1732
1724
  #
1733
1725
  # @!attribute [rw] rule_set_id
1734
1726
  # The identifier of a rule set resource associated with the ingress
1735
1727
  # endpoint.
1736
1728
  # @return [String]
1737
1729
  #
1738
- # @!attribute [rw] status
1739
- # The status of the ingress endpoint resource.
1740
- # @return [String]
1741
- #
1742
1730
  # @!attribute [rw] traffic_policy_id
1743
1731
  # The identifier of the traffic policy resource associated with the
1744
1732
  # ingress endpoint.
1745
1733
  # @return [String]
1746
1734
  #
1747
- # @!attribute [rw] type
1748
- # The type of ingress endpoint.
1749
- # @return [String]
1735
+ # @!attribute [rw] ingress_point_auth_configuration
1736
+ # The authentication configuration of the ingress endpoint resource.
1737
+ # @return [Types::IngressPointAuthConfiguration]
1738
+ #
1739
+ # @!attribute [rw] network_configuration
1740
+ # The network configuration for the ingress point.
1741
+ # @return [Types::NetworkConfiguration]
1742
+ #
1743
+ # @!attribute [rw] created_timestamp
1744
+ # The timestamp of when the ingress endpoint was created.
1745
+ # @return [Time]
1746
+ #
1747
+ # @!attribute [rw] last_updated_timestamp
1748
+ # The timestamp of when the ingress endpoint was last updated.
1749
+ # @return [Time]
1750
1750
  #
1751
1751
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetIngressPointResponse AWS API Documentation
1752
1752
  #
1753
1753
  class GetIngressPointResponse < Struct.new(
1754
- :a_record,
1755
- :created_timestamp,
1756
- :ingress_point_arn,
1757
- :ingress_point_auth_configuration,
1758
1754
  :ingress_point_id,
1759
1755
  :ingress_point_name,
1760
- :last_updated_timestamp,
1761
- :network_configuration,
1762
- :rule_set_id,
1756
+ :ingress_point_arn,
1763
1757
  :status,
1758
+ :type,
1759
+ :a_record,
1760
+ :rule_set_id,
1764
1761
  :traffic_policy_id,
1765
- :type)
1762
+ :ingress_point_auth_configuration,
1763
+ :network_configuration,
1764
+ :created_timestamp,
1765
+ :last_updated_timestamp)
1766
1766
  SENSITIVE = []
1767
1767
  include Aws::Structure
1768
1768
  end
1769
1769
 
1770
- # @!attribute [rw] address
1771
- # The address to be retrieved from the address list.
1772
- # @return [String]
1773
- #
1774
1770
  # @!attribute [rw] address_list_id
1775
1771
  # The unique identifier of the address list to retrieve the address
1776
1772
  # from.
1777
1773
  # @return [String]
1778
1774
  #
1775
+ # @!attribute [rw] address
1776
+ # The address to be retrieved from the address list.
1777
+ # @return [String]
1778
+ #
1779
1779
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetMemberOfAddressListRequest AWS API Documentation
1780
1780
  #
1781
1781
  class GetMemberOfAddressListRequest < Struct.new(
1782
- :address,
1783
- :address_list_id)
1782
+ :address_list_id,
1783
+ :address)
1784
1784
  SENSITIVE = [:address]
1785
1785
  include Aws::Structure
1786
1786
  end
@@ -1814,27 +1814,14 @@ module Aws::MailManager
1814
1814
  include Aws::Structure
1815
1815
  end
1816
1816
 
1817
- # @!attribute [rw] authentication
1818
- # The authentication attribute—contains the secret ARN where the
1819
- # customer relay server credentials are stored.
1820
- # @return [Types::RelayAuthentication]
1821
- #
1822
- # @!attribute [rw] created_timestamp
1823
- # The timestamp of when the relay was created.
1824
- # @return [Time]
1825
- #
1826
- # @!attribute [rw] last_modified_timestamp
1827
- # The timestamp of when relay was last updated.
1828
- # @return [Time]
1817
+ # @!attribute [rw] relay_id
1818
+ # The unique relay identifier.
1819
+ # @return [String]
1829
1820
  #
1830
1821
  # @!attribute [rw] relay_arn
1831
1822
  # The Amazon Resource Name (ARN) of the relay.
1832
1823
  # @return [String]
1833
1824
  #
1834
- # @!attribute [rw] relay_id
1835
- # The unique relay identifier.
1836
- # @return [String]
1837
- #
1838
1825
  # @!attribute [rw] relay_name
1839
1826
  # The unique name of the relay.
1840
1827
  # @return [String]
@@ -1847,17 +1834,30 @@ module Aws::MailManager
1847
1834
  # The destination relay server port.
1848
1835
  # @return [Integer]
1849
1836
  #
1837
+ # @!attribute [rw] authentication
1838
+ # The authentication attribute—contains the secret ARN where the
1839
+ # customer relay server credentials are stored.
1840
+ # @return [Types::RelayAuthentication]
1841
+ #
1842
+ # @!attribute [rw] created_timestamp
1843
+ # The timestamp of when the relay was created.
1844
+ # @return [Time]
1845
+ #
1846
+ # @!attribute [rw] last_modified_timestamp
1847
+ # The timestamp of when relay was last updated.
1848
+ # @return [Time]
1849
+ #
1850
1850
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetRelayResponse AWS API Documentation
1851
1851
  #
1852
1852
  class GetRelayResponse < Struct.new(
1853
- :authentication,
1854
- :created_timestamp,
1855
- :last_modified_timestamp,
1856
- :relay_arn,
1857
1853
  :relay_id,
1854
+ :relay_arn,
1858
1855
  :relay_name,
1859
1856
  :server_name,
1860
- :server_port)
1857
+ :server_port,
1858
+ :authentication,
1859
+ :created_timestamp,
1860
+ :last_modified_timestamp)
1861
1861
  SENSITIVE = []
1862
1862
  include Aws::Structure
1863
1863
  end
@@ -1874,26 +1874,26 @@ module Aws::MailManager
1874
1874
  include Aws::Structure
1875
1875
  end
1876
1876
 
1877
- # @!attribute [rw] created_date
1878
- # The date of when then rule set was created.
1879
- # @return [Time]
1880
- #
1881
- # @!attribute [rw] last_modification_date
1882
- # The date of when the rule set was last modified.
1883
- # @return [Time]
1877
+ # @!attribute [rw] rule_set_id
1878
+ # The identifier of the rule set resource.
1879
+ # @return [String]
1884
1880
  #
1885
1881
  # @!attribute [rw] rule_set_arn
1886
1882
  # The Amazon Resource Name (ARN) of the rule set resource.
1887
1883
  # @return [String]
1888
1884
  #
1889
- # @!attribute [rw] rule_set_id
1890
- # The identifier of the rule set resource.
1891
- # @return [String]
1892
- #
1893
1885
  # @!attribute [rw] rule_set_name
1894
1886
  # A user-friendly name for the rule set resource.
1895
1887
  # @return [String]
1896
1888
  #
1889
+ # @!attribute [rw] created_date
1890
+ # The date of when then rule set was created.
1891
+ # @return [Time]
1892
+ #
1893
+ # @!attribute [rw] last_modification_date
1894
+ # The date of when the rule set was last modified.
1895
+ # @return [Time]
1896
+ #
1897
1897
  # @!attribute [rw] rules
1898
1898
  # The rules contained in the rule set.
1899
1899
  # @return [Array<Types::Rule>]
@@ -1901,11 +1901,11 @@ module Aws::MailManager
1901
1901
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetRuleSetResponse AWS API Documentation
1902
1902
  #
1903
1903
  class GetRuleSetResponse < Struct.new(
1904
- :created_date,
1905
- :last_modification_date,
1906
- :rule_set_arn,
1907
1904
  :rule_set_id,
1905
+ :rule_set_arn,
1908
1906
  :rule_set_name,
1907
+ :created_date,
1908
+ :last_modification_date,
1909
1909
  :rules)
1910
1910
  SENSITIVE = []
1911
1911
  include Aws::Structure
@@ -1923,50 +1923,50 @@ module Aws::MailManager
1923
1923
  include Aws::Structure
1924
1924
  end
1925
1925
 
1926
- # @!attribute [rw] created_timestamp
1927
- # The timestamp of when the traffic policy was created.
1928
- # @return [Time]
1926
+ # @!attribute [rw] traffic_policy_name
1927
+ # A user-friendly name for the traffic policy resource.
1928
+ # @return [String]
1929
1929
  #
1930
- # @!attribute [rw] default_action
1931
- # The default action of the traffic policy.
1930
+ # @!attribute [rw] traffic_policy_id
1931
+ # The identifier of the traffic policy resource.
1932
1932
  # @return [String]
1933
1933
  #
1934
- # @!attribute [rw] last_updated_timestamp
1935
- # The timestamp of when the traffic policy was last updated.
1936
- # @return [Time]
1934
+ # @!attribute [rw] traffic_policy_arn
1935
+ # The Amazon Resource Name (ARN) of the traffic policy resource.
1936
+ # @return [String]
1937
+ #
1938
+ # @!attribute [rw] policy_statements
1939
+ # The list of conditions which are in the traffic policy resource.
1940
+ # @return [Array<Types::PolicyStatement>]
1937
1941
  #
1938
1942
  # @!attribute [rw] max_message_size_bytes
1939
1943
  # The maximum message size in bytes of email which is allowed in by
1940
1944
  # this traffic policy—anything larger will be blocked.
1941
1945
  # @return [Integer]
1942
1946
  #
1943
- # @!attribute [rw] policy_statements
1944
- # The list of conditions which are in the traffic policy resource.
1945
- # @return [Array<Types::PolicyStatement>]
1946
- #
1947
- # @!attribute [rw] traffic_policy_arn
1948
- # The Amazon Resource Name (ARN) of the traffic policy resource.
1947
+ # @!attribute [rw] default_action
1948
+ # The default action of the traffic policy.
1949
1949
  # @return [String]
1950
1950
  #
1951
- # @!attribute [rw] traffic_policy_id
1952
- # The identifier of the traffic policy resource.
1953
- # @return [String]
1951
+ # @!attribute [rw] created_timestamp
1952
+ # The timestamp of when the traffic policy was created.
1953
+ # @return [Time]
1954
1954
  #
1955
- # @!attribute [rw] traffic_policy_name
1956
- # A user-friendly name for the traffic policy resource.
1957
- # @return [String]
1955
+ # @!attribute [rw] last_updated_timestamp
1956
+ # The timestamp of when the traffic policy was last updated.
1957
+ # @return [Time]
1958
1958
  #
1959
1959
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetTrafficPolicyResponse AWS API Documentation
1960
1960
  #
1961
1961
  class GetTrafficPolicyResponse < Struct.new(
1962
- :created_timestamp,
1963
- :default_action,
1964
- :last_updated_timestamp,
1965
- :max_message_size_bytes,
1966
- :policy_statements,
1967
- :traffic_policy_arn,
1962
+ :traffic_policy_name,
1968
1963
  :traffic_policy_id,
1969
- :traffic_policy_name)
1964
+ :traffic_policy_arn,
1965
+ :policy_statements,
1966
+ :max_message_size_bytes,
1967
+ :default_action,
1968
+ :created_timestamp,
1969
+ :last_updated_timestamp)
1970
1970
  SENSITIVE = []
1971
1971
  include Aws::Structure
1972
1972
  end
@@ -1989,23 +1989,27 @@ module Aws::MailManager
1989
1989
 
1990
1990
  # Details about an import job.
1991
1991
  #
1992
- # @!attribute [rw] address_list_id
1993
- # The unique identifier of the address list the import job was created
1994
- # for.
1992
+ # @!attribute [rw] job_id
1993
+ # The identifier of the import job.
1995
1994
  # @return [String]
1996
1995
  #
1997
- # @!attribute [rw] completed_timestamp
1998
- # The timestamp of when the import job was completed.
1999
- # @return [Time]
1996
+ # @!attribute [rw] name
1997
+ # A user-friendly name for the import job.
1998
+ # @return [String]
2000
1999
  #
2001
- # @!attribute [rw] created_timestamp
2002
- # The timestamp of when the import job was created.
2003
- # @return [Time]
2000
+ # @!attribute [rw] status
2001
+ # The status of the import job.
2002
+ # @return [String]
2004
2003
  #
2005
- # @!attribute [rw] error
2006
- # The reason for failure of an import job.
2004
+ # @!attribute [rw] pre_signed_url
2005
+ # The pre-signed URL target for uploading the input file.
2007
2006
  # @return [String]
2008
2007
  #
2008
+ # @!attribute [rw] imported_items_count
2009
+ # The number of addresses in the input that were successfully imported
2010
+ # into the address list.
2011
+ # @return [Integer]
2012
+ #
2009
2013
  # @!attribute [rw] failed_items_count
2010
2014
  # The number of addresses in the input that failed to get imported
2011
2015
  # into address list.
@@ -2015,46 +2019,42 @@ module Aws::MailManager
2015
2019
  # The format of the input for the import job.
2016
2020
  # @return [Types::ImportDataFormat]
2017
2021
  #
2018
- # @!attribute [rw] imported_items_count
2019
- # The number of addresses in the input that were successfully imported
2020
- # into the address list.
2021
- # @return [Integer]
2022
- #
2023
- # @!attribute [rw] job_id
2024
- # The identifier of the import job.
2025
- # @return [String]
2026
- #
2027
- # @!attribute [rw] name
2028
- # A user-friendly name for the import job.
2022
+ # @!attribute [rw] address_list_id
2023
+ # The unique identifier of the address list the import job was created
2024
+ # for.
2029
2025
  # @return [String]
2030
2026
  #
2031
- # @!attribute [rw] pre_signed_url
2032
- # The pre-signed URL target for uploading the input file.
2033
- # @return [String]
2027
+ # @!attribute [rw] created_timestamp
2028
+ # The timestamp of when the import job was created.
2029
+ # @return [Time]
2034
2030
  #
2035
2031
  # @!attribute [rw] start_timestamp
2036
2032
  # The timestamp of when the import job was started.
2037
2033
  # @return [Time]
2038
2034
  #
2039
- # @!attribute [rw] status
2040
- # The status of the import job.
2035
+ # @!attribute [rw] completed_timestamp
2036
+ # The timestamp of when the import job was completed.
2037
+ # @return [Time]
2038
+ #
2039
+ # @!attribute [rw] error
2040
+ # The reason for failure of an import job.
2041
2041
  # @return [String]
2042
2042
  #
2043
2043
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ImportJob AWS API Documentation
2044
2044
  #
2045
2045
  class ImportJob < Struct.new(
2046
- :address_list_id,
2047
- :completed_timestamp,
2048
- :created_timestamp,
2049
- :error,
2050
- :failed_items_count,
2051
- :import_data_format,
2052
- :imported_items_count,
2053
2046
  :job_id,
2054
2047
  :name,
2048
+ :status,
2055
2049
  :pre_signed_url,
2050
+ :imported_items_count,
2051
+ :failed_items_count,
2052
+ :import_data_format,
2053
+ :address_list_id,
2054
+ :created_timestamp,
2056
2055
  :start_timestamp,
2057
- :status)
2056
+ :completed_timestamp,
2057
+ :error)
2058
2058
  SENSITIVE = [:pre_signed_url]
2059
2059
  include Aws::Structure
2060
2060
  end
@@ -2234,40 +2234,34 @@ module Aws::MailManager
2234
2234
  # evaluated in a policy statement's conditional expression to either
2235
2235
  # deny or block the incoming email.
2236
2236
  #
2237
- # @!attribute [rw] address_lists
2238
- # The address lists that will be used for evaluation.
2239
- # @return [Array<String>]
2240
- #
2241
2237
  # @!attribute [rw] attribute
2242
2238
  # The email attribute that needs to be evaluated against the address
2243
2239
  # list.
2244
2240
  # @return [String]
2245
2241
  #
2242
+ # @!attribute [rw] address_lists
2243
+ # The address lists that will be used for evaluation.
2244
+ # @return [Array<String>]
2245
+ #
2246
2246
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressIsInAddressList AWS API Documentation
2247
2247
  #
2248
2248
  class IngressIsInAddressList < Struct.new(
2249
- :address_lists,
2250
- :attribute)
2249
+ :attribute,
2250
+ :address_lists)
2251
2251
  SENSITIVE = []
2252
2252
  include Aws::Structure
2253
2253
  end
2254
2254
 
2255
2255
  # The structure of an ingress endpoint resource.
2256
2256
  #
2257
- # @!attribute [rw] a_record
2258
- # The DNS A Record that identifies your ingress endpoint. Configure
2259
- # your DNS Mail Exchange (MX) record with this value to route emails
2260
- # to Mail Manager.
2257
+ # @!attribute [rw] ingress_point_name
2258
+ # A user friendly name for the ingress endpoint resource.
2261
2259
  # @return [String]
2262
2260
  #
2263
2261
  # @!attribute [rw] ingress_point_id
2264
2262
  # The identifier of the ingress endpoint resource.
2265
2263
  # @return [String]
2266
2264
  #
2267
- # @!attribute [rw] ingress_point_name
2268
- # A user friendly name for the ingress endpoint resource.
2269
- # @return [String]
2270
- #
2271
2265
  # @!attribute [rw] status
2272
2266
  # The status of the ingress endpoint resource.
2273
2267
  # @return [String]
@@ -2276,14 +2270,20 @@ module Aws::MailManager
2276
2270
  # The type of ingress endpoint resource.
2277
2271
  # @return [String]
2278
2272
  #
2273
+ # @!attribute [rw] a_record
2274
+ # The DNS A Record that identifies your ingress endpoint. Configure
2275
+ # your DNS Mail Exchange (MX) record with this value to route emails
2276
+ # to Mail Manager.
2277
+ # @return [String]
2278
+ #
2279
2279
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressPoint AWS API Documentation
2280
2280
  #
2281
2281
  class IngressPoint < Struct.new(
2282
- :a_record,
2283
- :ingress_point_id,
2284
2282
  :ingress_point_name,
2283
+ :ingress_point_id,
2285
2284
  :status,
2286
- :type)
2285
+ :type,
2286
+ :a_record)
2287
2287
  SENSITIVE = []
2288
2288
  include Aws::Structure
2289
2289
  end
@@ -2313,51 +2313,51 @@ module Aws::MailManager
2313
2313
  #
2314
2314
  # @note IngressPointConfiguration is a union - when making an API calls you must set exactly one of the members.
2315
2315
  #
2316
- # @!attribute [rw] secret_arn
2317
- # The SecretsManager::Secret ARN of the ingress endpoint resource.
2318
- # @return [String]
2319
- #
2320
2316
  # @!attribute [rw] smtp_password
2321
2317
  # The password of the ingress endpoint resource.
2322
2318
  # @return [String]
2323
2319
  #
2320
+ # @!attribute [rw] secret_arn
2321
+ # The SecretsManager::Secret ARN of the ingress endpoint resource.
2322
+ # @return [String]
2323
+ #
2324
2324
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressPointConfiguration AWS API Documentation
2325
2325
  #
2326
2326
  class IngressPointConfiguration < Struct.new(
2327
- :secret_arn,
2328
2327
  :smtp_password,
2328
+ :secret_arn,
2329
2329
  :unknown)
2330
2330
  SENSITIVE = [:smtp_password]
2331
2331
  include Aws::Structure
2332
2332
  include Aws::Structure::Union
2333
2333
 
2334
- class SecretArn < IngressPointConfiguration; end
2335
2334
  class SmtpPassword < IngressPointConfiguration; end
2335
+ class SecretArn < IngressPointConfiguration; end
2336
2336
  class Unknown < IngressPointConfiguration; end
2337
2337
  end
2338
2338
 
2339
2339
  # The password configuration of the ingress endpoint resource.
2340
2340
  #
2341
- # @!attribute [rw] previous_smtp_password_expiry_timestamp
2342
- # The previous password expiry timestamp of the ingress endpoint
2341
+ # @!attribute [rw] smtp_password_version
2342
+ # The current password expiry timestamp of the ingress endpoint
2343
2343
  # resource.
2344
- # @return [Time]
2344
+ # @return [String]
2345
2345
  #
2346
2346
  # @!attribute [rw] previous_smtp_password_version
2347
2347
  # The previous password version of the ingress endpoint resource.
2348
2348
  # @return [String]
2349
2349
  #
2350
- # @!attribute [rw] smtp_password_version
2351
- # The current password expiry timestamp of the ingress endpoint
2350
+ # @!attribute [rw] previous_smtp_password_expiry_timestamp
2351
+ # The previous password expiry timestamp of the ingress endpoint
2352
2352
  # resource.
2353
- # @return [String]
2353
+ # @return [Time]
2354
2354
  #
2355
2355
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressPointPasswordConfiguration AWS API Documentation
2356
2356
  #
2357
2357
  class IngressPointPasswordConfiguration < Struct.new(
2358
- :previous_smtp_password_expiry_timestamp,
2358
+ :smtp_password_version,
2359
2359
  :previous_smtp_password_version,
2360
- :smtp_password_version)
2360
+ :previous_smtp_password_expiry_timestamp)
2361
2361
  SENSITIVE = []
2362
2362
  include Aws::Structure
2363
2363
  end
@@ -2394,28 +2394,28 @@ module Aws::MailManager
2394
2394
  #
2395
2395
  # @note IngressStringToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IngressStringToEvaluate corresponding to the set member.
2396
2396
  #
2397
- # @!attribute [rw] analysis
2398
- # The structure type for a string condition stating the Add On ARN and
2399
- # its returned value.
2400
- # @return [Types::IngressAnalysis]
2401
- #
2402
2397
  # @!attribute [rw] attribute
2403
2398
  # The enum type representing the allowed attribute types for a string
2404
2399
  # condition.
2405
2400
  # @return [String]
2406
2401
  #
2402
+ # @!attribute [rw] analysis
2403
+ # The structure type for a string condition stating the Add On ARN and
2404
+ # its returned value.
2405
+ # @return [Types::IngressAnalysis]
2406
+ #
2407
2407
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressStringToEvaluate AWS API Documentation
2408
2408
  #
2409
2409
  class IngressStringToEvaluate < Struct.new(
2410
- :analysis,
2411
2410
  :attribute,
2411
+ :analysis,
2412
2412
  :unknown)
2413
2413
  SENSITIVE = []
2414
2414
  include Aws::Structure
2415
2415
  include Aws::Structure::Union
2416
2416
 
2417
- class Analysis < IngressStringToEvaluate; end
2418
2417
  class Attribute < IngressStringToEvaluate; end
2418
+ class Analysis < IngressStringToEvaluate; end
2419
2419
  class Unknown < IngressStringToEvaluate; end
2420
2420
  end
2421
2421
 
@@ -2708,19 +2708,19 @@ module Aws::MailManager
2708
2708
  # The response containing a list of archive search jobs and their
2709
2709
  # statuses.
2710
2710
  #
2711
- # @!attribute [rw] next_token
2712
- # If present, use to retrieve the next page of results.
2713
- # @return [String]
2714
- #
2715
2711
  # @!attribute [rw] searches
2716
2712
  # The list of search job identifiers and statuses.
2717
2713
  # @return [Array<Types::SearchSummary>]
2718
2714
  #
2715
+ # @!attribute [rw] next_token
2716
+ # If present, use to retrieve the next page of results.
2717
+ # @return [String]
2718
+ #
2719
2719
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListArchiveSearchesResponse AWS API Documentation
2720
2720
  #
2721
2721
  class ListArchiveSearchesResponse < Struct.new(
2722
- :next_token,
2723
- :searches)
2722
+ :searches,
2723
+ :next_token)
2724
2724
  SENSITIVE = []
2725
2725
  include Aws::Structure
2726
2726
  end
@@ -2766,22 +2766,22 @@ module Aws::MailManager
2766
2766
  include Aws::Structure
2767
2767
  end
2768
2768
 
2769
+ # @!attribute [rw] page_size
2770
+ # The maximum number of ingress endpoint resources that are returned
2771
+ # per call. You can use NextToken to obtain further ingress endpoints.
2772
+ # @return [Integer]
2773
+ #
2769
2774
  # @!attribute [rw] next_token
2770
2775
  # If you received a pagination token from a previous call to this API,
2771
2776
  # you can provide it here to continue paginating through the next page
2772
2777
  # of results.
2773
2778
  # @return [String]
2774
2779
  #
2775
- # @!attribute [rw] page_size
2776
- # The maximum number of ingress endpoint resources that are returned
2777
- # per call. You can use NextToken to obtain further ingress endpoints.
2778
- # @return [Integer]
2779
- #
2780
2780
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListIngressPointsRequest AWS API Documentation
2781
2781
  #
2782
2782
  class ListIngressPointsRequest < Struct.new(
2783
- :next_token,
2784
- :page_size)
2783
+ :page_size,
2784
+ :next_token)
2785
2785
  SENSITIVE = []
2786
2786
  include Aws::Structure
2787
2787
  end
@@ -2855,40 +2855,40 @@ module Aws::MailManager
2855
2855
  include Aws::Structure
2856
2856
  end
2857
2857
 
2858
+ # @!attribute [rw] page_size
2859
+ # The number of relays to be returned in one request.
2860
+ # @return [Integer]
2861
+ #
2858
2862
  # @!attribute [rw] next_token
2859
2863
  # If you received a pagination token from a previous call to this API,
2860
2864
  # you can provide it here to continue paginating through the next page
2861
2865
  # of results.
2862
2866
  # @return [String]
2863
2867
  #
2864
- # @!attribute [rw] page_size
2865
- # The number of relays to be returned in one request.
2866
- # @return [Integer]
2867
- #
2868
2868
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListRelaysRequest AWS API Documentation
2869
2869
  #
2870
2870
  class ListRelaysRequest < Struct.new(
2871
- :next_token,
2872
- :page_size)
2871
+ :page_size,
2872
+ :next_token)
2873
2873
  SENSITIVE = []
2874
2874
  include Aws::Structure
2875
2875
  end
2876
2876
 
2877
+ # @!attribute [rw] relays
2878
+ # The list of returned relays.
2879
+ # @return [Array<Types::Relay>]
2880
+ #
2877
2881
  # @!attribute [rw] next_token
2878
2882
  # If NextToken is returned, there are more results available. The
2879
2883
  # value of NextToken is a unique pagination token for each page. Make
2880
2884
  # the call again using the returned token to retrieve the next page.
2881
2885
  # @return [String]
2882
2886
  #
2883
- # @!attribute [rw] relays
2884
- # The list of returned relays.
2885
- # @return [Array<Types::Relay>]
2886
- #
2887
2887
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListRelaysResponse AWS API Documentation
2888
2888
  #
2889
2889
  class ListRelaysResponse < Struct.new(
2890
- :next_token,
2891
- :relays)
2890
+ :relays,
2891
+ :next_token)
2892
2892
  SENSITIVE = []
2893
2893
  include Aws::Structure
2894
2894
  end
@@ -2913,21 +2913,21 @@ module Aws::MailManager
2913
2913
  include Aws::Structure
2914
2914
  end
2915
2915
 
2916
+ # @!attribute [rw] rule_sets
2917
+ # The list of rule sets.
2918
+ # @return [Array<Types::RuleSet>]
2919
+ #
2916
2920
  # @!attribute [rw] next_token
2917
2921
  # If NextToken is returned, there are more results available. The
2918
2922
  # value of NextToken is a unique pagination token for each page. Make
2919
2923
  # the call again using the returned token to retrieve the next page.
2920
2924
  # @return [String]
2921
2925
  #
2922
- # @!attribute [rw] rule_sets
2923
- # The list of rule sets.
2924
- # @return [Array<Types::RuleSet>]
2925
- #
2926
2926
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListRuleSetsResponse AWS API Documentation
2927
2927
  #
2928
2928
  class ListRuleSetsResponse < Struct.new(
2929
- :next_token,
2930
- :rule_sets)
2929
+ :rule_sets,
2930
+ :next_token)
2931
2931
  SENSITIVE = []
2932
2932
  include Aws::Structure
2933
2933
  end
@@ -2959,47 +2959,51 @@ module Aws::MailManager
2959
2959
  include Aws::Structure
2960
2960
  end
2961
2961
 
2962
+ # @!attribute [rw] page_size
2963
+ # The maximum number of traffic policy resources that are returned per
2964
+ # call. You can use NextToken to obtain further traffic policies.
2965
+ # @return [Integer]
2966
+ #
2962
2967
  # @!attribute [rw] next_token
2963
2968
  # If you received a pagination token from a previous call to this API,
2964
2969
  # you can provide it here to continue paginating through the next page
2965
2970
  # of results.
2966
2971
  # @return [String]
2967
2972
  #
2968
- # @!attribute [rw] page_size
2969
- # The maximum number of traffic policy resources that are returned per
2970
- # call. You can use NextToken to obtain further traffic policies.
2971
- # @return [Integer]
2972
- #
2973
2973
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListTrafficPoliciesRequest AWS API Documentation
2974
2974
  #
2975
2975
  class ListTrafficPoliciesRequest < Struct.new(
2976
- :next_token,
2977
- :page_size)
2976
+ :page_size,
2977
+ :next_token)
2978
2978
  SENSITIVE = []
2979
2979
  include Aws::Structure
2980
2980
  end
2981
2981
 
2982
+ # @!attribute [rw] traffic_policies
2983
+ # The list of traffic policies.
2984
+ # @return [Array<Types::TrafficPolicy>]
2985
+ #
2982
2986
  # @!attribute [rw] next_token
2983
2987
  # If NextToken is returned, there are more results available. The
2984
2988
  # value of NextToken is a unique pagination token for each page. Make
2985
2989
  # the call again using the returned token to retrieve the next page.
2986
2990
  # @return [String]
2987
2991
  #
2988
- # @!attribute [rw] traffic_policies
2989
- # The list of traffic policies.
2990
- # @return [Array<Types::TrafficPolicy>]
2991
- #
2992
2992
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListTrafficPoliciesResponse AWS API Documentation
2993
2993
  #
2994
2994
  class ListTrafficPoliciesResponse < Struct.new(
2995
- :next_token,
2996
- :traffic_policies)
2995
+ :traffic_policies,
2996
+ :next_token)
2997
2997
  SENSITIVE = []
2998
2998
  include Aws::Structure
2999
2999
  end
3000
3000
 
3001
3001
  # The textual body content of an email message.
3002
3002
  #
3003
+ # @!attribute [rw] text
3004
+ # The plain text body content of the message.
3005
+ # @return [String]
3006
+ #
3003
3007
  # @!attribute [rw] html
3004
3008
  # The HTML body content of the message.
3005
3009
  # @return [String]
@@ -3008,31 +3012,31 @@ module Aws::MailManager
3008
3012
  # A flag indicating if the email was malformed.
3009
3013
  # @return [Boolean]
3010
3014
  #
3011
- # @!attribute [rw] text
3012
- # The plain text body content of the message.
3013
- # @return [String]
3014
- #
3015
3015
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/MessageBody AWS API Documentation
3016
3016
  #
3017
3017
  class MessageBody < Struct.new(
3018
+ :text,
3018
3019
  :html,
3019
- :message_malformed,
3020
- :text)
3020
+ :message_malformed)
3021
3021
  SENSITIVE = []
3022
3022
  include Aws::Structure
3023
3023
  end
3024
3024
 
3025
3025
  # The metadata about the email.
3026
3026
  #
3027
- # @!attribute [rw] configuration_set
3028
- # The name of the configuration set used when sent through a
3029
- # configuration set with archiving enabled.
3030
- # @return [String]
3027
+ # @!attribute [rw] timestamp
3028
+ # The timestamp of when the email was received.
3029
+ # @return [Time]
3031
3030
  #
3032
3031
  # @!attribute [rw] ingress_point_id
3033
3032
  # The ID of the ingress endpoint through which the email was received.
3034
3033
  # @return [String]
3035
3034
  #
3035
+ # @!attribute [rw] traffic_policy_id
3036
+ # The ID of the traffic policy that was in effect when the email was
3037
+ # received.
3038
+ # @return [String]
3039
+ #
3036
3040
  # @!attribute [rw] rule_set_id
3037
3041
  # The ID of the rule set that processed the email.
3038
3042
  # @return [String]
@@ -3045,20 +3049,19 @@ module Aws::MailManager
3045
3049
  # The IP address of the host from which the email was received.
3046
3050
  # @return [String]
3047
3051
  #
3048
- # @!attribute [rw] sending_method
3049
- # The name of the API call used when sent through a configuration set
3050
- # with archiving enabled.
3052
+ # @!attribute [rw] tls_cipher_suite
3053
+ # The TLS cipher suite used to communicate with the host from which
3054
+ # the email was received.
3051
3055
  # @return [String]
3052
3056
  #
3053
- # @!attribute [rw] sending_pool
3054
- # The name of the dedicated IP pool used when sent through a
3055
- # configuration set with archiving enabled.
3057
+ # @!attribute [rw] tls_protocol
3058
+ # The TLS protocol used to communicate with the host from which the
3059
+ # email was received.
3056
3060
  # @return [String]
3057
3061
  #
3058
- # @!attribute [rw] source_arn
3059
- # Specifies the archived email source, identified by either a Rule
3060
- # Set's ARN with an Archive action, or a Configuration Set's Archive
3061
- # ARN.
3062
+ # @!attribute [rw] sending_method
3063
+ # The name of the API call used when sent through a configuration set
3064
+ # with archiving enabled.
3062
3065
  # @return [String]
3063
3066
  #
3064
3067
  # @!attribute [rw] source_identity
@@ -3066,41 +3069,38 @@ module Aws::MailManager
3066
3069
  # through a configuration set with archiving enabled.
3067
3070
  # @return [String]
3068
3071
  #
3069
- # @!attribute [rw] timestamp
3070
- # The timestamp of when the email was received.
3071
- # @return [Time]
3072
- #
3073
- # @!attribute [rw] tls_cipher_suite
3074
- # The TLS cipher suite used to communicate with the host from which
3075
- # the email was received.
3072
+ # @!attribute [rw] sending_pool
3073
+ # The name of the dedicated IP pool used when sent through a
3074
+ # configuration set with archiving enabled.
3076
3075
  # @return [String]
3077
3076
  #
3078
- # @!attribute [rw] tls_protocol
3079
- # The TLS protocol used to communicate with the host from which the
3080
- # email was received.
3077
+ # @!attribute [rw] configuration_set
3078
+ # The name of the configuration set used when sent through a
3079
+ # configuration set with archiving enabled.
3081
3080
  # @return [String]
3082
3081
  #
3083
- # @!attribute [rw] traffic_policy_id
3084
- # The ID of the traffic policy that was in effect when the email was
3085
- # received.
3082
+ # @!attribute [rw] source_arn
3083
+ # Specifies the archived email source, identified by either a Rule
3084
+ # Set's ARN with an Archive action, or a Configuration Set's Archive
3085
+ # ARN.
3086
3086
  # @return [String]
3087
3087
  #
3088
3088
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/Metadata AWS API Documentation
3089
3089
  #
3090
3090
  class Metadata < Struct.new(
3091
- :configuration_set,
3091
+ :timestamp,
3092
3092
  :ingress_point_id,
3093
+ :traffic_policy_id,
3093
3094
  :rule_set_id,
3094
3095
  :sender_hostname,
3095
3096
  :sender_ip_address,
3096
- :sending_method,
3097
- :sending_pool,
3098
- :source_arn,
3099
- :source_identity,
3100
- :timestamp,
3101
3097
  :tls_cipher_suite,
3102
3098
  :tls_protocol,
3103
- :traffic_policy_id)
3099
+ :sending_method,
3100
+ :source_identity,
3101
+ :sending_pool,
3102
+ :configuration_set,
3103
+ :source_arn)
3104
3104
  SENSITIVE = [:sender_ip_address]
3105
3105
  include Aws::Structure
3106
3106
  end
@@ -3112,26 +3112,26 @@ module Aws::MailManager
3112
3112
  #
3113
3113
  # @note NetworkConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of NetworkConfiguration corresponding to the set member.
3114
3114
  #
3115
- # @!attribute [rw] private_network_configuration
3116
- # Specifies the network configuration for the private ingress point.
3117
- # @return [Types::PrivateNetworkConfiguration]
3118
- #
3119
3115
  # @!attribute [rw] public_network_configuration
3120
3116
  # Specifies the network configuration for the public ingress point.
3121
3117
  # @return [Types::PublicNetworkConfiguration]
3122
3118
  #
3119
+ # @!attribute [rw] private_network_configuration
3120
+ # Specifies the network configuration for the private ingress point.
3121
+ # @return [Types::PrivateNetworkConfiguration]
3122
+ #
3123
3123
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/NetworkConfiguration AWS API Documentation
3124
3124
  #
3125
3125
  class NetworkConfiguration < Struct.new(
3126
- :private_network_configuration,
3127
3126
  :public_network_configuration,
3127
+ :private_network_configuration,
3128
3128
  :unknown)
3129
3129
  SENSITIVE = []
3130
3130
  include Aws::Structure
3131
3131
  include Aws::Structure::Union
3132
3132
 
3133
- class PrivateNetworkConfiguration < NetworkConfiguration; end
3134
3133
  class PublicNetworkConfiguration < NetworkConfiguration; end
3134
+ class PrivateNetworkConfiguration < NetworkConfiguration; end
3135
3135
  class Unknown < NetworkConfiguration; end
3136
3136
  end
3137
3137
 
@@ -3151,11 +3151,11 @@ module Aws::MailManager
3151
3151
  #
3152
3152
  # @note PolicyCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PolicyCondition corresponding to the set member.
3153
3153
  #
3154
- # @!attribute [rw] boolean_expression
3155
- # This represents a boolean type condition matching on the incoming
3156
- # mail. It performs the boolean operation configured in 'Operator'
3154
+ # @!attribute [rw] string_expression
3155
+ # This represents a string based condition matching on the incoming
3156
+ # mail. It performs the string operation configured in 'Operator'
3157
3157
  # and evaluates the 'Protocol' object against the 'Value'.
3158
- # @return [Types::IngressBooleanExpression]
3158
+ # @return [Types::IngressStringExpression]
3159
3159
  #
3160
3160
  # @!attribute [rw] ip_expression
3161
3161
  # This represents an IP based condition matching on the incoming mail.
@@ -3169,56 +3169,56 @@ module Aws::MailManager
3169
3169
  # evaluates the 'Protocol' object against the 'Value'.
3170
3170
  # @return [Types::IngressIpv6Expression]
3171
3171
  #
3172
- # @!attribute [rw] string_expression
3173
- # This represents a string based condition matching on the incoming
3174
- # mail. It performs the string operation configured in 'Operator'
3175
- # and evaluates the 'Protocol' object against the 'Value'.
3176
- # @return [Types::IngressStringExpression]
3177
- #
3178
3172
  # @!attribute [rw] tls_expression
3179
3173
  # This represents a TLS based condition matching on the incoming mail.
3180
3174
  # It performs the operation configured in 'Operator' and evaluates
3181
3175
  # the 'Protocol' object against the 'Value'.
3182
3176
  # @return [Types::IngressTlsProtocolExpression]
3183
3177
  #
3178
+ # @!attribute [rw] boolean_expression
3179
+ # This represents a boolean type condition matching on the incoming
3180
+ # mail. It performs the boolean operation configured in 'Operator'
3181
+ # and evaluates the 'Protocol' object against the 'Value'.
3182
+ # @return [Types::IngressBooleanExpression]
3183
+ #
3184
3184
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/PolicyCondition AWS API Documentation
3185
3185
  #
3186
3186
  class PolicyCondition < Struct.new(
3187
- :boolean_expression,
3187
+ :string_expression,
3188
3188
  :ip_expression,
3189
3189
  :ipv_6_expression,
3190
- :string_expression,
3191
3190
  :tls_expression,
3191
+ :boolean_expression,
3192
3192
  :unknown)
3193
3193
  SENSITIVE = []
3194
3194
  include Aws::Structure
3195
3195
  include Aws::Structure::Union
3196
3196
 
3197
- class BooleanExpression < PolicyCondition; end
3197
+ class StringExpression < PolicyCondition; end
3198
3198
  class IpExpression < PolicyCondition; end
3199
3199
  class Ipv6Expression < PolicyCondition; end
3200
- class StringExpression < PolicyCondition; end
3201
3200
  class TlsExpression < PolicyCondition; end
3201
+ class BooleanExpression < PolicyCondition; end
3202
3202
  class Unknown < PolicyCondition; end
3203
3203
  end
3204
3204
 
3205
3205
  # The structure containing traffic policy conditions and actions.
3206
3206
  #
3207
- # @!attribute [rw] action
3208
- # The action that informs a traffic policy resource to either allow or
3209
- # block the email if it matches a condition in the policy statement.
3210
- # @return [String]
3211
- #
3212
3207
  # @!attribute [rw] conditions
3213
3208
  # The list of conditions to apply to incoming messages for filtering
3214
3209
  # email traffic.
3215
3210
  # @return [Array<Types::PolicyCondition>]
3216
3211
  #
3212
+ # @!attribute [rw] action
3213
+ # The action that informs a traffic policy resource to either allow or
3214
+ # block the email if it matches a condition in the policy statement.
3215
+ # @return [String]
3216
+ #
3217
3217
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/PolicyStatement AWS API Documentation
3218
3218
  #
3219
3219
  class PolicyStatement < Struct.new(
3220
- :action,
3221
- :conditions)
3220
+ :conditions,
3221
+ :action)
3222
3222
  SENSITIVE = []
3223
3223
  include Aws::Structure
3224
3224
  end
@@ -3253,20 +3253,20 @@ module Aws::MailManager
3253
3253
  include Aws::Structure
3254
3254
  end
3255
3255
 
3256
- # @!attribute [rw] address
3257
- # The address to be added to the address list.
3258
- # @return [String]
3259
- #
3260
3256
  # @!attribute [rw] address_list_id
3261
3257
  # The unique identifier of the address list where the address should
3262
3258
  # be added.
3263
3259
  # @return [String]
3264
3260
  #
3261
+ # @!attribute [rw] address
3262
+ # The address to be added to the address list.
3263
+ # @return [String]
3264
+ #
3265
3265
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RegisterMemberToAddressListRequest AWS API Documentation
3266
3266
  #
3267
3267
  class RegisterMemberToAddressListRequest < Struct.new(
3268
- :address,
3269
- :address_list_id)
3268
+ :address_list_id,
3269
+ :address)
3270
3270
  SENSITIVE = [:address]
3271
3271
  include Aws::Structure
3272
3272
  end
@@ -3278,10 +3278,6 @@ module Aws::MailManager
3278
3278
  # The relay resource that can be used as a rule to relay receiving
3279
3279
  # emails to the destination relay server.
3280
3280
  #
3281
- # @!attribute [rw] last_modified_timestamp
3282
- # The timestamp of when the relay was last modified.
3283
- # @return [Time]
3284
- #
3285
3281
  # @!attribute [rw] relay_id
3286
3282
  # The unique relay identifier.
3287
3283
  # @return [String]
@@ -3290,12 +3286,16 @@ module Aws::MailManager
3290
3286
  # The unique relay name.
3291
3287
  # @return [String]
3292
3288
  #
3289
+ # @!attribute [rw] last_modified_timestamp
3290
+ # The timestamp of when the relay was last modified.
3291
+ # @return [Time]
3292
+ #
3293
3293
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/Relay AWS API Documentation
3294
3294
  #
3295
3295
  class Relay < Struct.new(
3296
- :last_modified_timestamp,
3297
3296
  :relay_id,
3298
- :relay_name)
3297
+ :relay_name,
3298
+ :last_modified_timestamp)
3299
3299
  SENSITIVE = []
3300
3300
  include Aws::Structure
3301
3301
  end
@@ -3308,22 +3308,22 @@ module Aws::MailManager
3308
3308
  # specified relay has been deleted.
3309
3309
  # @return [String]
3310
3310
  #
3311
- # @!attribute [rw] mail_from
3312
- # This action specifies whether to preserve or replace original mail
3313
- # from address while relaying received emails to a destination server.
3314
- # @return [String]
3315
- #
3316
3311
  # @!attribute [rw] relay
3317
3312
  # The identifier of the relay resource to be used when relaying an
3318
3313
  # email.
3319
3314
  # @return [String]
3320
3315
  #
3316
+ # @!attribute [rw] mail_from
3317
+ # This action specifies whether to preserve or replace original mail
3318
+ # from address while relaying received emails to a destination server.
3319
+ # @return [String]
3320
+ #
3321
3321
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RelayAction AWS API Documentation
3322
3322
  #
3323
3323
  class RelayAction < Struct.new(
3324
3324
  :action_failure_policy,
3325
- :mail_from,
3326
- :relay)
3325
+ :relay,
3326
+ :mail_from)
3327
3327
  SENSITIVE = []
3328
3328
  include Aws::Structure
3329
3329
  end
@@ -3337,28 +3337,28 @@ module Aws::MailManager
3337
3337
  #
3338
3338
  # @note RelayAuthentication is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RelayAuthentication corresponding to the set member.
3339
3339
  #
3340
- # @!attribute [rw] no_authentication
3341
- # Keep an empty structure if the relay destination server does not
3342
- # require SMTP credential authentication.
3343
- # @return [Types::NoAuthentication]
3344
- #
3345
3340
  # @!attribute [rw] secret_arn
3346
3341
  # The ARN of the secret created in secrets manager where the relay
3347
3342
  # server's SMTP credentials are stored.
3348
3343
  # @return [String]
3349
3344
  #
3345
+ # @!attribute [rw] no_authentication
3346
+ # Keep an empty structure if the relay destination server does not
3347
+ # require SMTP credential authentication.
3348
+ # @return [Types::NoAuthentication]
3349
+ #
3350
3350
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RelayAuthentication AWS API Documentation
3351
3351
  #
3352
3352
  class RelayAuthentication < Struct.new(
3353
- :no_authentication,
3354
3353
  :secret_arn,
3354
+ :no_authentication,
3355
3355
  :unknown)
3356
3356
  SENSITIVE = []
3357
3357
  include Aws::Structure
3358
3358
  include Aws::Structure::Union
3359
3359
 
3360
- class NoAuthentication < RelayAuthentication; end
3361
3360
  class SecretArn < RelayAuthentication; end
3361
+ class NoAuthentication < RelayAuthentication; end
3362
3362
  class Unknown < RelayAuthentication; end
3363
3363
  end
3364
3364
 
@@ -3401,45 +3401,61 @@ module Aws::MailManager
3401
3401
  # The unique identifier of the archived message.
3402
3402
  # @return [String]
3403
3403
  #
3404
- # @!attribute [rw] cc
3405
- # The email addresses in the CC header.
3406
- # @return [String]
3404
+ # @!attribute [rw] received_timestamp
3405
+ # The timestamp of when the email was received.
3406
+ # @return [Time]
3407
3407
  #
3408
3408
  # @!attribute [rw] date
3409
3409
  # The date the email was sent.
3410
3410
  # @return [String]
3411
3411
  #
3412
- # @!attribute [rw] envelope
3413
- # The SMTP envelope information of the email.
3414
- # @return [Types::Envelope]
3412
+ # @!attribute [rw] to
3413
+ # The email addresses in the To header.
3414
+ # @return [String]
3415
3415
  #
3416
3416
  # @!attribute [rw] from
3417
3417
  # The email address of the sender.
3418
3418
  # @return [String]
3419
3419
  #
3420
+ # @!attribute [rw] cc
3421
+ # The email addresses in the CC header.
3422
+ # @return [String]
3423
+ #
3424
+ # @!attribute [rw] subject
3425
+ # The subject header value of the email.
3426
+ # @return [String]
3427
+ #
3428
+ # @!attribute [rw] message_id
3429
+ # The unique message ID of the email.
3430
+ # @return [String]
3431
+ #
3420
3432
  # @!attribute [rw] has_attachments
3421
3433
  # A flag indicating if the email has attachments.
3422
3434
  # @return [Boolean]
3423
3435
  #
3436
+ # @!attribute [rw] received_headers
3437
+ # The received headers from the email delivery path.
3438
+ # @return [Array<String>]
3439
+ #
3424
3440
  # @!attribute [rw] in_reply_to
3425
3441
  # The email message ID this is a reply to.
3426
3442
  # @return [String]
3427
3443
  #
3428
- # @!attribute [rw] ingress_point_id
3429
- # The ID of the ingress endpoint through which the email was received.
3444
+ # @!attribute [rw] x_mailer
3445
+ # The user agent that sent the email.
3430
3446
  # @return [String]
3431
3447
  #
3432
- # @!attribute [rw] message_id
3433
- # The unique message ID of the email.
3448
+ # @!attribute [rw] x_original_mailer
3449
+ # The original user agent that sent the email.
3434
3450
  # @return [String]
3435
3451
  #
3436
- # @!attribute [rw] received_headers
3437
- # The received headers from the email delivery path.
3438
- # @return [Array<String>]
3452
+ # @!attribute [rw] x_priority
3453
+ # The priority level of the email.
3454
+ # @return [String]
3439
3455
  #
3440
- # @!attribute [rw] received_timestamp
3441
- # The timestamp of when the email was received.
3442
- # @return [Time]
3456
+ # @!attribute [rw] ingress_point_id
3457
+ # The ID of the ingress endpoint through which the email was received.
3458
+ # @return [String]
3443
3459
  #
3444
3460
  # @!attribute [rw] sender_hostname
3445
3461
  # The name of the host from which the email was received.
@@ -3454,54 +3470,38 @@ module Aws::MailManager
3454
3470
  # call.
3455
3471
  # @return [String]
3456
3472
  #
3473
+ # @!attribute [rw] envelope
3474
+ # The SMTP envelope information of the email.
3475
+ # @return [Types::Envelope]
3476
+ #
3457
3477
  # @!attribute [rw] source_arn
3458
3478
  # Specifies the archived email source, identified by either a Rule
3459
3479
  # Set's ARN with an Archive action, or a Configuration Set's Archive
3460
3480
  # ARN.
3461
3481
  # @return [String]
3462
3482
  #
3463
- # @!attribute [rw] subject
3464
- # The subject header value of the email.
3465
- # @return [String]
3466
- #
3467
- # @!attribute [rw] to
3468
- # The email addresses in the To header.
3469
- # @return [String]
3470
- #
3471
- # @!attribute [rw] x_mailer
3472
- # The user agent that sent the email.
3473
- # @return [String]
3474
- #
3475
- # @!attribute [rw] x_original_mailer
3476
- # The original user agent that sent the email.
3477
- # @return [String]
3478
- #
3479
- # @!attribute [rw] x_priority
3480
- # The priority level of the email.
3481
- # @return [String]
3482
- #
3483
3483
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/Row AWS API Documentation
3484
3484
  #
3485
3485
  class Row < Struct.new(
3486
3486
  :archived_message_id,
3487
- :cc,
3487
+ :received_timestamp,
3488
3488
  :date,
3489
- :envelope,
3489
+ :to,
3490
3490
  :from,
3491
+ :cc,
3492
+ :subject,
3493
+ :message_id,
3491
3494
  :has_attachments,
3495
+ :received_headers,
3492
3496
  :in_reply_to,
3497
+ :x_mailer,
3498
+ :x_original_mailer,
3499
+ :x_priority,
3493
3500
  :ingress_point_id,
3494
- :message_id,
3495
- :received_headers,
3496
- :received_timestamp,
3497
3501
  :sender_hostname,
3498
3502
  :sender_ip_address,
3499
- :source_arn,
3500
- :subject,
3501
- :to,
3502
- :x_mailer,
3503
- :x_original_mailer,
3504
- :x_priority)
3503
+ :envelope,
3504
+ :source_arn)
3505
3505
  SENSITIVE = [:sender_ip_address]
3506
3506
  include Aws::Structure
3507
3507
  end
@@ -3514,10 +3514,9 @@ module Aws::MailManager
3514
3514
  # conditions" are provided, the rule applies if the email does not
3515
3515
  # match the evaluation of the "unless conditions".
3516
3516
  #
3517
- # @!attribute [rw] actions
3518
- # The list of actions to execute when the conditions match the
3519
- # incoming email, and none of the "unless conditions" match.
3520
- # @return [Array<Types::RuleAction>]
3517
+ # @!attribute [rw] name
3518
+ # The user-friendly name of the rule.
3519
+ # @return [String]
3521
3520
  #
3522
3521
  # @!attribute [rw] conditions
3523
3522
  # The conditions of this rule. All conditions must match the email for
@@ -3525,23 +3524,24 @@ module Aws::MailManager
3525
3524
  # all emails match, but are still subject to any "unless conditions"
3526
3525
  # @return [Array<Types::RuleCondition>]
3527
3526
  #
3528
- # @!attribute [rw] name
3529
- # The user-friendly name of the rule.
3530
- # @return [String]
3531
- #
3532
3527
  # @!attribute [rw] unless
3533
3528
  # The "unless conditions" of this rule. None of the conditions can
3534
3529
  # match the email for the actions to be executed. If any of these
3535
3530
  # conditions do match the email, then the actions are not executed.
3536
3531
  # @return [Array<Types::RuleCondition>]
3537
3532
  #
3533
+ # @!attribute [rw] actions
3534
+ # The list of actions to execute when the conditions match the
3535
+ # incoming email, and none of the "unless conditions" match.
3536
+ # @return [Array<Types::RuleAction>]
3537
+ #
3538
3538
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/Rule AWS API Documentation
3539
3539
  #
3540
3540
  class Rule < Struct.new(
3541
- :actions,
3542
- :conditions,
3543
3541
  :name,
3544
- :unless)
3542
+ :conditions,
3543
+ :unless,
3544
+ :actions)
3545
3545
  SENSITIVE = []
3546
3546
  include Aws::Structure
3547
3547
  end
@@ -3553,16 +3553,37 @@ module Aws::MailManager
3553
3553
  #
3554
3554
  # @note RuleAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleAction corresponding to the set member.
3555
3555
  #
3556
- # @!attribute [rw] add_header
3557
- # This action adds a header. This can be used to add arbitrary email
3558
- # headers.
3559
- # @return [Types::AddHeaderAction]
3556
+ # @!attribute [rw] drop
3557
+ # This action terminates the evaluation of rules in the rule set.
3558
+ # @return [Types::DropAction]
3559
+ #
3560
+ # @!attribute [rw] relay
3561
+ # This action relays the email to another SMTP server.
3562
+ # @return [Types::RelayAction]
3560
3563
  #
3561
3564
  # @!attribute [rw] archive
3562
3565
  # This action archives the email. This can be used to deliver an email
3563
3566
  # to an archive.
3564
3567
  # @return [Types::ArchiveAction]
3565
3568
  #
3569
+ # @!attribute [rw] write_to_s3
3570
+ # This action writes the MIME content of the email to an S3 bucket.
3571
+ # @return [Types::S3Action]
3572
+ #
3573
+ # @!attribute [rw] send
3574
+ # This action sends the email to the internet.
3575
+ # @return [Types::SendAction]
3576
+ #
3577
+ # @!attribute [rw] add_header
3578
+ # This action adds a header. This can be used to add arbitrary email
3579
+ # headers.
3580
+ # @return [Types::AddHeaderAction]
3581
+ #
3582
+ # @!attribute [rw] replace_recipient
3583
+ # The action replaces certain or all recipients with a different set
3584
+ # of recipients.
3585
+ # @return [Types::ReplaceRecipientAction]
3586
+ #
3566
3587
  # @!attribute [rw] deliver_to_mailbox
3567
3588
  # This action delivers an email to a WorkMail mailbox.
3568
3589
  # @return [Types::DeliverToMailboxAction]
@@ -3572,59 +3593,38 @@ module Aws::MailManager
3572
3593
  # for ingestion into its knowledge base.
3573
3594
  # @return [Types::DeliverToQBusinessAction]
3574
3595
  #
3575
- # @!attribute [rw] drop
3576
- # This action terminates the evaluation of rules in the rule set.
3577
- # @return [Types::DropAction]
3578
- #
3579
3596
  # @!attribute [rw] publish_to_sns
3580
3597
  # This action publishes the email content to an Amazon SNS topic.
3581
3598
  # @return [Types::SnsAction]
3582
3599
  #
3583
- # @!attribute [rw] relay
3584
- # This action relays the email to another SMTP server.
3585
- # @return [Types::RelayAction]
3586
- #
3587
- # @!attribute [rw] replace_recipient
3588
- # The action replaces certain or all recipients with a different set
3589
- # of recipients.
3590
- # @return [Types::ReplaceRecipientAction]
3591
- #
3592
- # @!attribute [rw] send
3593
- # This action sends the email to the internet.
3594
- # @return [Types::SendAction]
3595
- #
3596
- # @!attribute [rw] write_to_s3
3597
- # This action writes the MIME content of the email to an S3 bucket.
3598
- # @return [Types::S3Action]
3599
- #
3600
3600
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleAction AWS API Documentation
3601
3601
  #
3602
3602
  class RuleAction < Struct.new(
3603
- :add_header,
3603
+ :drop,
3604
+ :relay,
3604
3605
  :archive,
3606
+ :write_to_s3,
3607
+ :send,
3608
+ :add_header,
3609
+ :replace_recipient,
3605
3610
  :deliver_to_mailbox,
3606
3611
  :deliver_to_q_business,
3607
- :drop,
3608
3612
  :publish_to_sns,
3609
- :relay,
3610
- :replace_recipient,
3611
- :send,
3612
- :write_to_s3,
3613
3613
  :unknown)
3614
3614
  SENSITIVE = []
3615
3615
  include Aws::Structure
3616
3616
  include Aws::Structure::Union
3617
3617
 
3618
- class AddHeader < RuleAction; end
3618
+ class Drop < RuleAction; end
3619
+ class Relay < RuleAction; end
3619
3620
  class Archive < RuleAction; end
3621
+ class WriteToS3 < RuleAction; end
3622
+ class Send < RuleAction; end
3623
+ class AddHeader < RuleAction; end
3624
+ class ReplaceRecipient < RuleAction; end
3620
3625
  class DeliverToMailbox < RuleAction; end
3621
3626
  class DeliverToQBusiness < RuleAction; end
3622
- class Drop < RuleAction; end
3623
3627
  class PublishToSns < RuleAction; end
3624
- class Relay < RuleAction; end
3625
- class ReplaceRecipient < RuleAction; end
3626
- class Send < RuleAction; end
3627
- class WriteToS3 < RuleAction; end
3628
3628
  class Unknown < RuleAction; end
3629
3629
  end
3630
3630
 
@@ -3654,16 +3654,16 @@ module Aws::MailManager
3654
3654
  #
3655
3655
  # @note RuleBooleanToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleBooleanToEvaluate corresponding to the set member.
3656
3656
  #
3657
- # @!attribute [rw] analysis
3658
- # The Add On ARN and its returned value to evaluate in a boolean
3659
- # condition expression.
3660
- # @return [Types::Analysis]
3661
- #
3662
3657
  # @!attribute [rw] attribute
3663
3658
  # The boolean type representing the allowed attribute types for an
3664
3659
  # email.
3665
3660
  # @return [String]
3666
3661
  #
3662
+ # @!attribute [rw] analysis
3663
+ # The Add On ARN and its returned value to evaluate in a boolean
3664
+ # condition expression.
3665
+ # @return [Types::Analysis]
3666
+ #
3667
3667
  # @!attribute [rw] is_in_address_list
3668
3668
  # The structure representing the address lists and address list
3669
3669
  # attribute that will be used in evaluation of boolean expression.
@@ -3672,16 +3672,16 @@ module Aws::MailManager
3672
3672
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleBooleanToEvaluate AWS API Documentation
3673
3673
  #
3674
3674
  class RuleBooleanToEvaluate < Struct.new(
3675
- :analysis,
3676
3675
  :attribute,
3676
+ :analysis,
3677
3677
  :is_in_address_list,
3678
3678
  :unknown)
3679
3679
  SENSITIVE = []
3680
3680
  include Aws::Structure
3681
3681
  include Aws::Structure::Union
3682
3682
 
3683
- class Analysis < RuleBooleanToEvaluate; end
3684
3683
  class Attribute < RuleBooleanToEvaluate; end
3684
+ class Analysis < RuleBooleanToEvaluate; end
3685
3685
  class IsInAddressList < RuleBooleanToEvaluate; end
3686
3686
  class Unknown < RuleBooleanToEvaluate; end
3687
3687
  end
@@ -3697,48 +3697,48 @@ module Aws::MailManager
3697
3697
  # The condition applies to a boolean expression passed in this field.
3698
3698
  # @return [Types::RuleBooleanExpression]
3699
3699
  #
3700
- # @!attribute [rw] dmarc_expression
3701
- # The condition applies to a DMARC policy expression passed in this
3702
- # field.
3703
- # @return [Types::RuleDmarcExpression]
3704
- #
3705
- # @!attribute [rw] ip_expression
3706
- # The condition applies to an IP address expression passed in this
3707
- # field.
3708
- # @return [Types::RuleIpExpression]
3700
+ # @!attribute [rw] string_expression
3701
+ # The condition applies to a string expression passed in this field.
3702
+ # @return [Types::RuleStringExpression]
3709
3703
  #
3710
3704
  # @!attribute [rw] number_expression
3711
3705
  # The condition applies to a number expression passed in this field.
3712
3706
  # @return [Types::RuleNumberExpression]
3713
3707
  #
3714
- # @!attribute [rw] string_expression
3715
- # The condition applies to a string expression passed in this field.
3716
- # @return [Types::RuleStringExpression]
3708
+ # @!attribute [rw] ip_expression
3709
+ # The condition applies to an IP address expression passed in this
3710
+ # field.
3711
+ # @return [Types::RuleIpExpression]
3717
3712
  #
3718
3713
  # @!attribute [rw] verdict_expression
3719
3714
  # The condition applies to a verdict expression passed in this field.
3720
3715
  # @return [Types::RuleVerdictExpression]
3721
3716
  #
3717
+ # @!attribute [rw] dmarc_expression
3718
+ # The condition applies to a DMARC policy expression passed in this
3719
+ # field.
3720
+ # @return [Types::RuleDmarcExpression]
3721
+ #
3722
3722
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleCondition AWS API Documentation
3723
3723
  #
3724
3724
  class RuleCondition < Struct.new(
3725
3725
  :boolean_expression,
3726
- :dmarc_expression,
3727
- :ip_expression,
3728
- :number_expression,
3729
3726
  :string_expression,
3727
+ :number_expression,
3728
+ :ip_expression,
3730
3729
  :verdict_expression,
3730
+ :dmarc_expression,
3731
3731
  :unknown)
3732
3732
  SENSITIVE = []
3733
3733
  include Aws::Structure
3734
3734
  include Aws::Structure::Union
3735
3735
 
3736
3736
  class BooleanExpression < RuleCondition; end
3737
- class DmarcExpression < RuleCondition; end
3738
- class IpExpression < RuleCondition; end
3739
- class NumberExpression < RuleCondition; end
3740
3737
  class StringExpression < RuleCondition; end
3738
+ class NumberExpression < RuleCondition; end
3739
+ class IpExpression < RuleCondition; end
3741
3740
  class VerdictExpression < RuleCondition; end
3741
+ class DmarcExpression < RuleCondition; end
3742
3742
  class Unknown < RuleCondition; end
3743
3743
  end
3744
3744
 
@@ -3825,20 +3825,20 @@ module Aws::MailManager
3825
3825
  # The structure type for a boolean condition that provides the address
3826
3826
  # lists and address list attribute to evaluate.
3827
3827
  #
3828
- # @!attribute [rw] address_lists
3829
- # The address lists that will be used for evaluation.
3830
- # @return [Array<String>]
3831
- #
3832
3828
  # @!attribute [rw] attribute
3833
3829
  # The email attribute that needs to be evaluated against the address
3834
3830
  # list.
3835
3831
  # @return [String]
3836
3832
  #
3833
+ # @!attribute [rw] address_lists
3834
+ # The address lists that will be used for evaluation.
3835
+ # @return [Array<String>]
3836
+ #
3837
3837
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleIsInAddressList AWS API Documentation
3838
3838
  #
3839
3839
  class RuleIsInAddressList < Struct.new(
3840
- :address_lists,
3841
- :attribute)
3840
+ :attribute,
3841
+ :address_lists)
3842
3842
  SENSITIVE = []
3843
3843
  include Aws::Structure
3844
3844
  end
@@ -3894,10 +3894,6 @@ module Aws::MailManager
3894
3894
  # A rule set contains a list of rules that are evaluated in order. Each
3895
3895
  # rule is evaluated sequentially for each email.
3896
3896
  #
3897
- # @!attribute [rw] last_modification_date
3898
- # The last modification date of the rule set.
3899
- # @return [Time]
3900
- #
3901
3897
  # @!attribute [rw] rule_set_id
3902
3898
  # The identifier of the rule set.
3903
3899
  # @return [String]
@@ -3906,12 +3902,16 @@ module Aws::MailManager
3906
3902
  # A user-friendly name for the rule set.
3907
3903
  # @return [String]
3908
3904
  #
3905
+ # @!attribute [rw] last_modification_date
3906
+ # The last modification date of the rule set.
3907
+ # @return [Time]
3908
+ #
3909
3909
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleSet AWS API Documentation
3910
3910
  #
3911
3911
  class RuleSet < Struct.new(
3912
- :last_modification_date,
3913
3912
  :rule_set_id,
3914
- :rule_set_name)
3913
+ :rule_set_name,
3914
+ :last_modification_date)
3915
3915
  SENSITIVE = []
3916
3916
  include Aws::Structure
3917
3917
  end
@@ -3953,11 +3953,6 @@ module Aws::MailManager
3953
3953
  #
3954
3954
  # @note RuleStringToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleStringToEvaluate corresponding to the set member.
3955
3955
  #
3956
- # @!attribute [rw] analysis
3957
- # The Add On ARN and its returned value to evaluate in a string
3958
- # condition expression.
3959
- # @return [Types::Analysis]
3960
- #
3961
3956
  # @!attribute [rw] attribute
3962
3957
  # The email attribute to evaluate in a string condition expression.
3963
3958
  # @return [String]
@@ -3967,20 +3962,25 @@ module Aws::MailManager
3967
3962
  # expression.
3968
3963
  # @return [String]
3969
3964
  #
3965
+ # @!attribute [rw] analysis
3966
+ # The Add On ARN and its returned value to evaluate in a string
3967
+ # condition expression.
3968
+ # @return [Types::Analysis]
3969
+ #
3970
3970
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleStringToEvaluate AWS API Documentation
3971
3971
  #
3972
3972
  class RuleStringToEvaluate < Struct.new(
3973
- :analysis,
3974
3973
  :attribute,
3975
3974
  :mime_header_attribute,
3975
+ :analysis,
3976
3976
  :unknown)
3977
3977
  SENSITIVE = []
3978
3978
  include Aws::Structure
3979
3979
  include Aws::Structure::Union
3980
3980
 
3981
- class Analysis < RuleStringToEvaluate; end
3982
3981
  class Attribute < RuleStringToEvaluate; end
3983
3982
  class MimeHeaderAttribute < RuleStringToEvaluate; end
3983
+ class Analysis < RuleStringToEvaluate; end
3984
3984
  class Unknown < RuleStringToEvaluate; end
3985
3985
  end
3986
3986
 
@@ -4019,28 +4019,28 @@ module Aws::MailManager
4019
4019
  #
4020
4020
  # @note RuleVerdictToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleVerdictToEvaluate corresponding to the set member.
4021
4021
  #
4022
- # @!attribute [rw] analysis
4023
- # The Add On ARN and its returned value to evaluate in a verdict
4024
- # condition expression.
4025
- # @return [Types::Analysis]
4026
- #
4027
4022
  # @!attribute [rw] attribute
4028
4023
  # The email verdict attribute to evaluate in a string verdict
4029
4024
  # expression.
4030
4025
  # @return [String]
4031
4026
  #
4027
+ # @!attribute [rw] analysis
4028
+ # The Add On ARN and its returned value to evaluate in a verdict
4029
+ # condition expression.
4030
+ # @return [Types::Analysis]
4031
+ #
4032
4032
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleVerdictToEvaluate AWS API Documentation
4033
4033
  #
4034
4034
  class RuleVerdictToEvaluate < Struct.new(
4035
- :analysis,
4036
4035
  :attribute,
4036
+ :analysis,
4037
4037
  :unknown)
4038
4038
  SENSITIVE = []
4039
4039
  include Aws::Structure
4040
4040
  include Aws::Structure::Union
4041
4041
 
4042
- class Analysis < RuleVerdictToEvaluate; end
4043
4042
  class Attribute < RuleVerdictToEvaluate; end
4043
+ class Analysis < RuleVerdictToEvaluate; end
4044
4044
  class Unknown < RuleVerdictToEvaluate; end
4045
4045
  end
4046
4046
 
@@ -4117,29 +4117,29 @@ module Aws::MailManager
4117
4117
 
4118
4118
  # The current status of an archive search job.
4119
4119
  #
4120
+ # @!attribute [rw] submission_timestamp
4121
+ # The timestamp of when the search was submitted.
4122
+ # @return [Time]
4123
+ #
4120
4124
  # @!attribute [rw] completion_timestamp
4121
4125
  # The timestamp of when the search completed (if finished).
4122
4126
  # @return [Time]
4123
4127
  #
4124
- # @!attribute [rw] error_message
4125
- # An error message if the search failed.
4126
- # @return [String]
4127
- #
4128
4128
  # @!attribute [rw] state
4129
4129
  # The current state of the search job.
4130
4130
  # @return [String]
4131
4131
  #
4132
- # @!attribute [rw] submission_timestamp
4133
- # The timestamp of when the search was submitted.
4134
- # @return [Time]
4132
+ # @!attribute [rw] error_message
4133
+ # An error message if the search failed.
4134
+ # @return [String]
4135
4135
  #
4136
4136
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/SearchStatus AWS API Documentation
4137
4137
  #
4138
4138
  class SearchStatus < Struct.new(
4139
+ :submission_timestamp,
4139
4140
  :completion_timestamp,
4140
- :error_message,
4141
4141
  :state,
4142
- :submission_timestamp)
4142
+ :error_message)
4143
4143
  SENSITIVE = []
4144
4144
  include Aws::Structure
4145
4145
  end
@@ -4209,6 +4209,17 @@ module Aws::MailManager
4209
4209
  # to call the `sns:Publish` API.
4210
4210
  # @return [String]
4211
4211
  #
4212
+ # @!attribute [rw] topic_arn
4213
+ # The Amazon Resource Name (ARN) of the Amazon SNS Topic to which
4214
+ # notification for the email received will be published.
4215
+ # @return [String]
4216
+ #
4217
+ # @!attribute [rw] role_arn
4218
+ # The Amazon Resource Name (ARN) of the IAM Role to use while writing
4219
+ # to Amazon SNS. This role must have access to the `sns:Publish` API
4220
+ # for the given topic.
4221
+ # @return [String]
4222
+ #
4212
4223
  # @!attribute [rw] encoding
4213
4224
  # The encoding to use for the email within the Amazon SNS
4214
4225
  # notification. The default value is `UTF-8`. Use `BASE64` if you need
@@ -4224,25 +4235,14 @@ module Aws::MailManager
4224
4235
  # the notification. The default value is `CONTENT`.
4225
4236
  # @return [String]
4226
4237
  #
4227
- # @!attribute [rw] role_arn
4228
- # The Amazon Resource Name (ARN) of the IAM Role to use while writing
4229
- # to Amazon SNS. This role must have access to the `sns:Publish` API
4230
- # for the given topic.
4231
- # @return [String]
4232
- #
4233
- # @!attribute [rw] topic_arn
4234
- # The Amazon Resource Name (ARN) of the Amazon SNS Topic to which
4235
- # notification for the email received will be published.
4236
- # @return [String]
4237
- #
4238
4238
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/SnsAction AWS API Documentation
4239
4239
  #
4240
4240
  class SnsAction < Struct.new(
4241
4241
  :action_failure_policy,
4242
- :encoding,
4243
- :payload_type,
4242
+ :topic_arn,
4244
4243
  :role_arn,
4245
- :topic_arn)
4244
+ :encoding,
4245
+ :payload_type)
4246
4246
  SENSITIVE = []
4247
4247
  include Aws::Structure
4248
4248
  end
@@ -4269,10 +4269,6 @@ module Aws::MailManager
4269
4269
  # The identifier of the archive to export emails from.
4270
4270
  # @return [String]
4271
4271
  #
4272
- # @!attribute [rw] export_destination_configuration
4273
- # Details on where to deliver the exported email data.
4274
- # @return [Types::ExportDestinationConfiguration]
4275
- #
4276
4272
  # @!attribute [rw] filters
4277
4273
  # Criteria to filter which emails are included in the export.
4278
4274
  # @return [Types::ArchiveFilters]
@@ -4281,28 +4277,32 @@ module Aws::MailManager
4281
4277
  # The start of the timestamp range to include emails from.
4282
4278
  # @return [Time]
4283
4279
  #
4284
- # @!attribute [rw] include_metadata
4285
- # Whether to include message metadata as JSON files in the export.
4286
- # @return [Boolean]
4280
+ # @!attribute [rw] to_timestamp
4281
+ # The end of the timestamp range to include emails from.
4282
+ # @return [Time]
4287
4283
  #
4288
4284
  # @!attribute [rw] max_results
4289
4285
  # The maximum number of email items to include in the export.
4290
4286
  # @return [Integer]
4291
4287
  #
4292
- # @!attribute [rw] to_timestamp
4293
- # The end of the timestamp range to include emails from.
4294
- # @return [Time]
4288
+ # @!attribute [rw] export_destination_configuration
4289
+ # Details on where to deliver the exported email data.
4290
+ # @return [Types::ExportDestinationConfiguration]
4291
+ #
4292
+ # @!attribute [rw] include_metadata
4293
+ # Whether to include message metadata as JSON files in the export.
4294
+ # @return [Boolean]
4295
4295
  #
4296
4296
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/StartArchiveExportRequest AWS API Documentation
4297
4297
  #
4298
4298
  class StartArchiveExportRequest < Struct.new(
4299
4299
  :archive_id,
4300
- :export_destination_configuration,
4301
4300
  :filters,
4302
4301
  :from_timestamp,
4303
- :include_metadata,
4302
+ :to_timestamp,
4304
4303
  :max_results,
4305
- :to_timestamp)
4304
+ :export_destination_configuration,
4305
+ :include_metadata)
4306
4306
  SENSITIVE = []
4307
4307
  include Aws::Structure
4308
4308
  end
@@ -4335,22 +4335,22 @@ module Aws::MailManager
4335
4335
  # The start timestamp of the range to search emails from.
4336
4336
  # @return [Time]
4337
4337
  #
4338
- # @!attribute [rw] max_results
4339
- # The maximum number of search results to return.
4340
- # @return [Integer]
4341
- #
4342
4338
  # @!attribute [rw] to_timestamp
4343
4339
  # The end timestamp of the range to search emails from.
4344
4340
  # @return [Time]
4345
4341
  #
4342
+ # @!attribute [rw] max_results
4343
+ # The maximum number of search results to return.
4344
+ # @return [Integer]
4345
+ #
4346
4346
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/StartArchiveSearchRequest AWS API Documentation
4347
4347
  #
4348
4348
  class StartArchiveSearchRequest < Struct.new(
4349
4349
  :archive_id,
4350
4350
  :filters,
4351
4351
  :from_timestamp,
4352
- :max_results,
4353
- :to_timestamp)
4352
+ :to_timestamp,
4353
+ :max_results)
4354
4354
  SENSITIVE = []
4355
4355
  include Aws::Structure
4356
4356
  end
@@ -4493,26 +4493,26 @@ module Aws::MailManager
4493
4493
  # The structure of a traffic policy resource which is a container for
4494
4494
  # policy statements.
4495
4495
  #
4496
- # @!attribute [rw] default_action
4497
- # Default action instructs the traffic policy to either Allow or Deny
4498
- # (block) messages that fall outside of (or not addressed by) the
4499
- # conditions of your policy statements
4496
+ # @!attribute [rw] traffic_policy_name
4497
+ # A user-friendly name of the traffic policy resource.
4500
4498
  # @return [String]
4501
4499
  #
4502
4500
  # @!attribute [rw] traffic_policy_id
4503
4501
  # The identifier of the traffic policy resource.
4504
4502
  # @return [String]
4505
4503
  #
4506
- # @!attribute [rw] traffic_policy_name
4507
- # A user-friendly name of the traffic policy resource.
4504
+ # @!attribute [rw] default_action
4505
+ # Default action instructs the traffic policy to either Allow or Deny
4506
+ # (block) messages that fall outside of (or not addressed by) the
4507
+ # conditions of your policy statements
4508
4508
  # @return [String]
4509
4509
  #
4510
4510
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/TrafficPolicy AWS API Documentation
4511
4511
  #
4512
4512
  class TrafficPolicy < Struct.new(
4513
- :default_action,
4513
+ :traffic_policy_name,
4514
4514
  :traffic_policy_id,
4515
- :traffic_policy_name)
4515
+ :default_action)
4516
4516
  SENSITIVE = []
4517
4517
  include Aws::Structure
4518
4518
  end
@@ -4573,11 +4573,6 @@ module Aws::MailManager
4573
4573
  #
4574
4574
  class UpdateArchiveResponse < Aws::EmptyStructure; end
4575
4575
 
4576
- # @!attribute [rw] ingress_point_configuration
4577
- # If you choose an Authenticated ingress endpoint, you must configure
4578
- # either an SMTP password or a secret ARN.
4579
- # @return [Types::IngressPointConfiguration]
4580
- #
4581
4576
  # @!attribute [rw] ingress_point_id
4582
4577
  # The identifier for the ingress endpoint you want to update.
4583
4578
  # @return [String]
@@ -4586,29 +4581,34 @@ module Aws::MailManager
4586
4581
  # A user friendly name for the ingress endpoint resource.
4587
4582
  # @return [String]
4588
4583
  #
4584
+ # @!attribute [rw] status_to_update
4585
+ # The update status of an ingress endpoint.
4586
+ # @return [String]
4587
+ #
4589
4588
  # @!attribute [rw] rule_set_id
4590
4589
  # The identifier of an existing rule set that you attach to an ingress
4591
4590
  # endpoint resource.
4592
4591
  # @return [String]
4593
4592
  #
4594
- # @!attribute [rw] status_to_update
4595
- # The update status of an ingress endpoint.
4596
- # @return [String]
4597
- #
4598
4593
  # @!attribute [rw] traffic_policy_id
4599
4594
  # The identifier of an existing traffic policy that you attach to an
4600
4595
  # ingress endpoint resource.
4601
4596
  # @return [String]
4602
4597
  #
4598
+ # @!attribute [rw] ingress_point_configuration
4599
+ # If you choose an Authenticated ingress endpoint, you must configure
4600
+ # either an SMTP password or a secret ARN.
4601
+ # @return [Types::IngressPointConfiguration]
4602
+ #
4603
4603
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/UpdateIngressPointRequest AWS API Documentation
4604
4604
  #
4605
4605
  class UpdateIngressPointRequest < Struct.new(
4606
- :ingress_point_configuration,
4607
4606
  :ingress_point_id,
4608
4607
  :ingress_point_name,
4609
- :rule_set_id,
4610
4608
  :status_to_update,
4611
- :traffic_policy_id)
4609
+ :rule_set_id,
4610
+ :traffic_policy_id,
4611
+ :ingress_point_configuration)
4612
4612
  SENSITIVE = []
4613
4613
  include Aws::Structure
4614
4614
  end
@@ -4617,11 +4617,6 @@ module Aws::MailManager
4617
4617
  #
4618
4618
  class UpdateIngressPointResponse < Aws::EmptyStructure; end
4619
4619
 
4620
- # @!attribute [rw] authentication
4621
- # Authentication for the relay destination server—specify the
4622
- # secretARN where the SMTP credentials are stored.
4623
- # @return [Types::RelayAuthentication]
4624
- #
4625
4620
  # @!attribute [rw] relay_id
4626
4621
  # The unique relay identifier.
4627
4622
  # @return [String]
@@ -4638,14 +4633,19 @@ module Aws::MailManager
4638
4633
  # The destination relay server port.
4639
4634
  # @return [Integer]
4640
4635
  #
4636
+ # @!attribute [rw] authentication
4637
+ # Authentication for the relay destination server—specify the
4638
+ # secretARN where the SMTP credentials are stored.
4639
+ # @return [Types::RelayAuthentication]
4640
+ #
4641
4641
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/UpdateRelayRequest AWS API Documentation
4642
4642
  #
4643
4643
  class UpdateRelayRequest < Struct.new(
4644
- :authentication,
4645
4644
  :relay_id,
4646
4645
  :relay_name,
4647
4646
  :server_name,
4648
- :server_port)
4647
+ :server_port,
4648
+ :authentication)
4649
4649
  SENSITIVE = []
4650
4650
  include Aws::Structure
4651
4651
  end
@@ -4681,6 +4681,18 @@ module Aws::MailManager
4681
4681
  #
4682
4682
  class UpdateRuleSetResponse < Aws::EmptyStructure; end
4683
4683
 
4684
+ # @!attribute [rw] traffic_policy_id
4685
+ # The identifier of the traffic policy that you want to update.
4686
+ # @return [String]
4687
+ #
4688
+ # @!attribute [rw] traffic_policy_name
4689
+ # A user-friendly name for the traffic policy resource.
4690
+ # @return [String]
4691
+ #
4692
+ # @!attribute [rw] policy_statements
4693
+ # The list of conditions to be updated for filtering email traffic.
4694
+ # @return [Array<Types::PolicyStatement>]
4695
+ #
4684
4696
  # @!attribute [rw] default_action
4685
4697
  # Default action instructs the traffic policy to either Allow or Deny
4686
4698
  # (block) messages that fall outside of (or not addressed by) the
@@ -4692,26 +4704,14 @@ module Aws::MailManager
4692
4704
  # this traffic policy—anything larger will be blocked.
4693
4705
  # @return [Integer]
4694
4706
  #
4695
- # @!attribute [rw] policy_statements
4696
- # The list of conditions to be updated for filtering email traffic.
4697
- # @return [Array<Types::PolicyStatement>]
4698
- #
4699
- # @!attribute [rw] traffic_policy_id
4700
- # The identifier of the traffic policy that you want to update.
4701
- # @return [String]
4702
- #
4703
- # @!attribute [rw] traffic_policy_name
4704
- # A user-friendly name for the traffic policy resource.
4705
- # @return [String]
4706
- #
4707
4707
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/UpdateTrafficPolicyRequest AWS API Documentation
4708
4708
  #
4709
4709
  class UpdateTrafficPolicyRequest < Struct.new(
4710
- :default_action,
4711
- :max_message_size_bytes,
4712
- :policy_statements,
4713
4710
  :traffic_policy_id,
4714
- :traffic_policy_name)
4711
+ :traffic_policy_name,
4712
+ :policy_statements,
4713
+ :default_action,
4714
+ :max_message_size_bytes)
4715
4715
  SENSITIVE = []
4716
4716
  include Aws::Structure
4717
4717
  end