aws-sdk-mailmanager 1.20.0 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mailmanager/client.rb +57 -1
- data/lib/aws-sdk-mailmanager/client_api.rb +12 -0
- data/lib/aws-sdk-mailmanager/types.rb +65 -1
- data/lib/aws-sdk-mailmanager.rb +1 -1
- data/sig/client.rbs +40 -0
- data/sig/types.rbs +15 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11663b377dc2310408f591deab3e2f9dbaa09024104d558d07a1ec032c01334d
|
4
|
+
data.tar.gz: a2566a7bd0c46aefafb52d5d2e39ca23587b6247fdf618f86c35a4a4c694dd63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a67f4885d75b320d293e054a99e463b01263b336014785b1a722a28bb2ed95f6d15c0814af4217b655e7e17e42588fa1e6562f5e277172e755be7be34571977
|
7
|
+
data.tar.gz: 6f6f9d7e181f841c5c7933d5bdad7310598ddf7003fcbbd3f0a23516a7e8e5bc2309bd2eeb36c3586dc32afe3e6ba7e6d103af3e253e1975924bc2f9acdfcff2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.22.0 (2025-03-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon SES Mail Manager. Extended rule string and boolean expressions to support analysis in condition evaluation. Extended ingress point string expression to support analysis in condition evaluation
|
8
|
+
|
9
|
+
1.21.0 (2025-02-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds additional metadata fields in Mail Manager archive searches to show email source and details about emails that were archived when being sent with SES.
|
13
|
+
|
4
14
|
1.20.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.22.0
|
@@ -944,6 +944,10 @@ module Aws::MailManager
|
|
944
944
|
# {
|
945
945
|
# boolean_expression: {
|
946
946
|
# evaluate: { # required
|
947
|
+
# analysis: {
|
948
|
+
# analyzer: "AnalyzerArn", # required
|
949
|
+
# result_field: "ResultField", # required
|
950
|
+
# },
|
947
951
|
# attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
|
948
952
|
# is_in_address_list: {
|
949
953
|
# address_lists: ["AddressListArn"], # required
|
@@ -972,6 +976,10 @@ module Aws::MailManager
|
|
972
976
|
# },
|
973
977
|
# string_expression: {
|
974
978
|
# evaluate: { # required
|
979
|
+
# analysis: {
|
980
|
+
# analyzer: "AnalyzerArn", # required
|
981
|
+
# result_field: "ResultField", # required
|
982
|
+
# },
|
975
983
|
# attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
|
976
984
|
# mime_header_attribute: "MimeHeaderAttribute",
|
977
985
|
# },
|
@@ -996,6 +1004,10 @@ module Aws::MailManager
|
|
996
1004
|
# {
|
997
1005
|
# boolean_expression: {
|
998
1006
|
# evaluate: { # required
|
1007
|
+
# analysis: {
|
1008
|
+
# analyzer: "AnalyzerArn", # required
|
1009
|
+
# result_field: "ResultField", # required
|
1010
|
+
# },
|
999
1011
|
# attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
|
1000
1012
|
# is_in_address_list: {
|
1001
1013
|
# address_lists: ["AddressListArn"], # required
|
@@ -1024,6 +1036,10 @@ module Aws::MailManager
|
|
1024
1036
|
# },
|
1025
1037
|
# string_expression: {
|
1026
1038
|
# evaluate: { # required
|
1039
|
+
# analysis: {
|
1040
|
+
# analyzer: "AnalyzerArn", # required
|
1041
|
+
# result_field: "ResultField", # required
|
1042
|
+
# },
|
1027
1043
|
# attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
|
1028
1044
|
# mime_header_attribute: "MimeHeaderAttribute",
|
1029
1045
|
# },
|
@@ -1132,6 +1148,10 @@ module Aws::MailManager
|
|
1132
1148
|
# },
|
1133
1149
|
# string_expression: {
|
1134
1150
|
# evaluate: { # required
|
1151
|
+
# analysis: {
|
1152
|
+
# analyzer: "AnalyzerArn", # required
|
1153
|
+
# result_field: "ResultField", # required
|
1154
|
+
# },
|
1135
1155
|
# attribute: "RECIPIENT", # accepts RECIPIENT
|
1136
1156
|
# },
|
1137
1157
|
# operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
|
@@ -1655,10 +1675,15 @@ module Aws::MailManager
|
|
1655
1675
|
# resp.envelope.to #=> Array
|
1656
1676
|
# resp.envelope.to[0] #=> String
|
1657
1677
|
# resp.message_download_link #=> String
|
1678
|
+
# resp.metadata.configuration_set #=> String
|
1658
1679
|
# resp.metadata.ingress_point_id #=> String
|
1659
1680
|
# resp.metadata.rule_set_id #=> String
|
1660
1681
|
# resp.metadata.sender_hostname #=> String
|
1661
1682
|
# resp.metadata.sender_ip_address #=> String
|
1683
|
+
# resp.metadata.sending_method #=> String
|
1684
|
+
# resp.metadata.sending_pool #=> String
|
1685
|
+
# resp.metadata.source_arn #=> String
|
1686
|
+
# resp.metadata.source_identity #=> String
|
1662
1687
|
# resp.metadata.timestamp #=> Time
|
1663
1688
|
# resp.metadata.tls_cipher_suite #=> String
|
1664
1689
|
# resp.metadata.tls_protocol #=> String
|
@@ -1794,6 +1819,7 @@ module Aws::MailManager
|
|
1794
1819
|
# resp.rows[0].received_timestamp #=> Time
|
1795
1820
|
# resp.rows[0].sender_hostname #=> String
|
1796
1821
|
# resp.rows[0].sender_ip_address #=> String
|
1822
|
+
# resp.rows[0].source_arn #=> String
|
1797
1823
|
# resp.rows[0].subject #=> String
|
1798
1824
|
# resp.rows[0].to #=> String
|
1799
1825
|
# resp.rows[0].x_mailer #=> String
|
@@ -1990,6 +2016,8 @@ module Aws::MailManager
|
|
1990
2016
|
# resp.rules[0].actions[0].write_to_s3.s3_prefix #=> String
|
1991
2017
|
# resp.rules[0].actions[0].write_to_s3.s3_sse_kms_key_id #=> String
|
1992
2018
|
# resp.rules[0].conditions #=> Array
|
2019
|
+
# resp.rules[0].conditions[0].boolean_expression.evaluate.analysis.analyzer #=> String
|
2020
|
+
# resp.rules[0].conditions[0].boolean_expression.evaluate.analysis.result_field #=> String
|
1993
2021
|
# resp.rules[0].conditions[0].boolean_expression.evaluate.attribute #=> String, one of "READ_RECEIPT_REQUESTED", "TLS", "TLS_WRAPPED"
|
1994
2022
|
# resp.rules[0].conditions[0].boolean_expression.evaluate.is_in_address_list.address_lists #=> Array
|
1995
2023
|
# resp.rules[0].conditions[0].boolean_expression.evaluate.is_in_address_list.address_lists[0] #=> String
|
@@ -2005,6 +2033,8 @@ module Aws::MailManager
|
|
2005
2033
|
# resp.rules[0].conditions[0].number_expression.evaluate.attribute #=> String, one of "MESSAGE_SIZE"
|
2006
2034
|
# resp.rules[0].conditions[0].number_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "LESS_THAN", "GREATER_THAN", "LESS_THAN_OR_EQUAL", "GREATER_THAN_OR_EQUAL"
|
2007
2035
|
# resp.rules[0].conditions[0].number_expression.value #=> Float
|
2036
|
+
# resp.rules[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
|
2037
|
+
# resp.rules[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
|
2008
2038
|
# resp.rules[0].conditions[0].string_expression.evaluate.attribute #=> String, one of "MAIL_FROM", "HELO", "RECIPIENT", "SENDER", "FROM", "SUBJECT", "TO", "CC"
|
2009
2039
|
# resp.rules[0].conditions[0].string_expression.evaluate.mime_header_attribute #=> String
|
2010
2040
|
# resp.rules[0].conditions[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
|
@@ -2018,6 +2048,8 @@ module Aws::MailManager
|
|
2018
2048
|
# resp.rules[0].conditions[0].verdict_expression.values[0] #=> String, one of "PASS", "FAIL", "GRAY", "PROCESSING_FAILED"
|
2019
2049
|
# resp.rules[0].name #=> String
|
2020
2050
|
# resp.rules[0].unless #=> Array
|
2051
|
+
# resp.rules[0].unless[0].boolean_expression.evaluate.analysis.analyzer #=> String
|
2052
|
+
# resp.rules[0].unless[0].boolean_expression.evaluate.analysis.result_field #=> String
|
2021
2053
|
# resp.rules[0].unless[0].boolean_expression.evaluate.attribute #=> String, one of "READ_RECEIPT_REQUESTED", "TLS", "TLS_WRAPPED"
|
2022
2054
|
# resp.rules[0].unless[0].boolean_expression.evaluate.is_in_address_list.address_lists #=> Array
|
2023
2055
|
# resp.rules[0].unless[0].boolean_expression.evaluate.is_in_address_list.address_lists[0] #=> String
|
@@ -2033,6 +2065,8 @@ module Aws::MailManager
|
|
2033
2065
|
# resp.rules[0].unless[0].number_expression.evaluate.attribute #=> String, one of "MESSAGE_SIZE"
|
2034
2066
|
# resp.rules[0].unless[0].number_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "LESS_THAN", "GREATER_THAN", "LESS_THAN_OR_EQUAL", "GREATER_THAN_OR_EQUAL"
|
2035
2067
|
# resp.rules[0].unless[0].number_expression.value #=> Float
|
2068
|
+
# resp.rules[0].unless[0].string_expression.evaluate.analysis.analyzer #=> String
|
2069
|
+
# resp.rules[0].unless[0].string_expression.evaluate.analysis.result_field #=> String
|
2036
2070
|
# resp.rules[0].unless[0].string_expression.evaluate.attribute #=> String, one of "MAIL_FROM", "HELO", "RECIPIENT", "SENDER", "FROM", "SUBJECT", "TO", "CC"
|
2037
2071
|
# resp.rules[0].unless[0].string_expression.evaluate.mime_header_attribute #=> String
|
2038
2072
|
# resp.rules[0].unless[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
|
@@ -2095,6 +2129,8 @@ module Aws::MailManager
|
|
2095
2129
|
# resp.policy_statements[0].conditions[0].ip_expression.operator #=> String, one of "CIDR_MATCHES", "NOT_CIDR_MATCHES"
|
2096
2130
|
# resp.policy_statements[0].conditions[0].ip_expression.values #=> Array
|
2097
2131
|
# resp.policy_statements[0].conditions[0].ip_expression.values[0] #=> String
|
2132
|
+
# resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
|
2133
|
+
# resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
|
2098
2134
|
# resp.policy_statements[0].conditions[0].string_expression.evaluate.attribute #=> String, one of "RECIPIENT"
|
2099
2135
|
# resp.policy_statements[0].conditions[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
|
2100
2136
|
# resp.policy_statements[0].conditions[0].string_expression.values #=> Array
|
@@ -3228,6 +3264,10 @@ module Aws::MailManager
|
|
3228
3264
|
# {
|
3229
3265
|
# boolean_expression: {
|
3230
3266
|
# evaluate: { # required
|
3267
|
+
# analysis: {
|
3268
|
+
# analyzer: "AnalyzerArn", # required
|
3269
|
+
# result_field: "ResultField", # required
|
3270
|
+
# },
|
3231
3271
|
# attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
|
3232
3272
|
# is_in_address_list: {
|
3233
3273
|
# address_lists: ["AddressListArn"], # required
|
@@ -3256,6 +3296,10 @@ module Aws::MailManager
|
|
3256
3296
|
# },
|
3257
3297
|
# string_expression: {
|
3258
3298
|
# evaluate: { # required
|
3299
|
+
# analysis: {
|
3300
|
+
# analyzer: "AnalyzerArn", # required
|
3301
|
+
# result_field: "ResultField", # required
|
3302
|
+
# },
|
3259
3303
|
# attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
|
3260
3304
|
# mime_header_attribute: "MimeHeaderAttribute",
|
3261
3305
|
# },
|
@@ -3280,6 +3324,10 @@ module Aws::MailManager
|
|
3280
3324
|
# {
|
3281
3325
|
# boolean_expression: {
|
3282
3326
|
# evaluate: { # required
|
3327
|
+
# analysis: {
|
3328
|
+
# analyzer: "AnalyzerArn", # required
|
3329
|
+
# result_field: "ResultField", # required
|
3330
|
+
# },
|
3283
3331
|
# attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
|
3284
3332
|
# is_in_address_list: {
|
3285
3333
|
# address_lists: ["AddressListArn"], # required
|
@@ -3308,6 +3356,10 @@ module Aws::MailManager
|
|
3308
3356
|
# },
|
3309
3357
|
# string_expression: {
|
3310
3358
|
# evaluate: { # required
|
3359
|
+
# analysis: {
|
3360
|
+
# analyzer: "AnalyzerArn", # required
|
3361
|
+
# result_field: "ResultField", # required
|
3362
|
+
# },
|
3311
3363
|
# attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
|
3312
3364
|
# mime_header_attribute: "MimeHeaderAttribute",
|
3313
3365
|
# },
|
@@ -3394,6 +3446,10 @@ module Aws::MailManager
|
|
3394
3446
|
# },
|
3395
3447
|
# string_expression: {
|
3396
3448
|
# evaluate: { # required
|
3449
|
+
# analysis: {
|
3450
|
+
# analyzer: "AnalyzerArn", # required
|
3451
|
+
# result_field: "ResultField", # required
|
3452
|
+
# },
|
3397
3453
|
# attribute: "RECIPIENT", # accepts RECIPIENT
|
3398
3454
|
# },
|
3399
3455
|
# operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
|
@@ -3441,7 +3497,7 @@ module Aws::MailManager
|
|
3441
3497
|
tracer: tracer
|
3442
3498
|
)
|
3443
3499
|
context[:gem_name] = 'aws-sdk-mailmanager'
|
3444
|
-
context[:gem_version] = '1.
|
3500
|
+
context[:gem_version] = '1.22.0'
|
3445
3501
|
Seahorse::Client::Request.new(handlers, context)
|
3446
3502
|
end
|
3447
3503
|
|
@@ -872,8 +872,10 @@ module Aws::MailManager
|
|
872
872
|
IngressStringExpression.add_member(:values, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "Values"))
|
873
873
|
IngressStringExpression.struct_class = Types::IngressStringExpression
|
874
874
|
|
875
|
+
IngressStringToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: IngressAnalysis, location_name: "Analysis"))
|
875
876
|
IngressStringToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: IngressStringEmailAttribute, location_name: "Attribute"))
|
876
877
|
IngressStringToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
878
|
+
IngressStringToEvaluate.add_member_subclass(:analysis, Types::IngressStringToEvaluate::Analysis)
|
877
879
|
IngressStringToEvaluate.add_member_subclass(:attribute, Types::IngressStringToEvaluate::Attribute)
|
878
880
|
IngressStringToEvaluate.add_member_subclass(:unknown, Types::IngressStringToEvaluate::Unknown)
|
879
881
|
IngressStringToEvaluate.struct_class = Types::IngressStringToEvaluate
|
@@ -1003,10 +1005,15 @@ module Aws::MailManager
|
|
1003
1005
|
MessageBody.add_member(:text, Shapes::ShapeRef.new(shape: String, location_name: "Text"))
|
1004
1006
|
MessageBody.struct_class = Types::MessageBody
|
1005
1007
|
|
1008
|
+
Metadata.add_member(:configuration_set, Shapes::ShapeRef.new(shape: String, location_name: "ConfigurationSet"))
|
1006
1009
|
Metadata.add_member(:ingress_point_id, Shapes::ShapeRef.new(shape: IngressPointId, location_name: "IngressPointId"))
|
1007
1010
|
Metadata.add_member(:rule_set_id, Shapes::ShapeRef.new(shape: RuleSetId, location_name: "RuleSetId"))
|
1008
1011
|
Metadata.add_member(:sender_hostname, Shapes::ShapeRef.new(shape: String, location_name: "SenderHostname"))
|
1009
1012
|
Metadata.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: SenderIpAddress, location_name: "SenderIpAddress"))
|
1013
|
+
Metadata.add_member(:sending_method, Shapes::ShapeRef.new(shape: String, location_name: "SendingMethod"))
|
1014
|
+
Metadata.add_member(:sending_pool, Shapes::ShapeRef.new(shape: String, location_name: "SendingPool"))
|
1015
|
+
Metadata.add_member(:source_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceArn"))
|
1016
|
+
Metadata.add_member(:source_identity, Shapes::ShapeRef.new(shape: String, location_name: "SourceIdentity"))
|
1010
1017
|
Metadata.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Timestamp"))
|
1011
1018
|
Metadata.add_member(:tls_cipher_suite, Shapes::ShapeRef.new(shape: String, location_name: "TlsCipherSuite"))
|
1012
1019
|
Metadata.add_member(:tls_protocol, Shapes::ShapeRef.new(shape: String, location_name: "TlsProtocol"))
|
@@ -1082,6 +1089,7 @@ module Aws::MailManager
|
|
1082
1089
|
Row.add_member(:received_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ReceivedTimestamp"))
|
1083
1090
|
Row.add_member(:sender_hostname, Shapes::ShapeRef.new(shape: String, location_name: "SenderHostname"))
|
1084
1091
|
Row.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: SenderIpAddress, location_name: "SenderIpAddress"))
|
1092
|
+
Row.add_member(:source_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceArn"))
|
1085
1093
|
Row.add_member(:subject, Shapes::ShapeRef.new(shape: String, location_name: "Subject"))
|
1086
1094
|
Row.add_member(:to, Shapes::ShapeRef.new(shape: String, location_name: "To"))
|
1087
1095
|
Row.add_member(:x_mailer, Shapes::ShapeRef.new(shape: String, location_name: "XMailer"))
|
@@ -1127,9 +1135,11 @@ module Aws::MailManager
|
|
1127
1135
|
RuleBooleanExpression.add_member(:operator, Shapes::ShapeRef.new(shape: RuleBooleanOperator, required: true, location_name: "Operator"))
|
1128
1136
|
RuleBooleanExpression.struct_class = Types::RuleBooleanExpression
|
1129
1137
|
|
1138
|
+
RuleBooleanToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: Analysis, location_name: "Analysis"))
|
1130
1139
|
RuleBooleanToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: RuleBooleanEmailAttribute, location_name: "Attribute"))
|
1131
1140
|
RuleBooleanToEvaluate.add_member(:is_in_address_list, Shapes::ShapeRef.new(shape: RuleIsInAddressList, location_name: "IsInAddressList"))
|
1132
1141
|
RuleBooleanToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1142
|
+
RuleBooleanToEvaluate.add_member_subclass(:analysis, Types::RuleBooleanToEvaluate::Analysis)
|
1133
1143
|
RuleBooleanToEvaluate.add_member_subclass(:attribute, Types::RuleBooleanToEvaluate::Attribute)
|
1134
1144
|
RuleBooleanToEvaluate.add_member_subclass(:is_in_address_list, Types::RuleBooleanToEvaluate::IsInAddressList)
|
1135
1145
|
RuleBooleanToEvaluate.add_member_subclass(:unknown, Types::RuleBooleanToEvaluate::Unknown)
|
@@ -1201,9 +1211,11 @@ module Aws::MailManager
|
|
1201
1211
|
|
1202
1212
|
RuleStringList.member = Shapes::ShapeRef.new(shape: RuleStringValue)
|
1203
1213
|
|
1214
|
+
RuleStringToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: Analysis, location_name: "Analysis"))
|
1204
1215
|
RuleStringToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: RuleStringEmailAttribute, location_name: "Attribute"))
|
1205
1216
|
RuleStringToEvaluate.add_member(:mime_header_attribute, Shapes::ShapeRef.new(shape: MimeHeaderAttribute, location_name: "MimeHeaderAttribute"))
|
1206
1217
|
RuleStringToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1218
|
+
RuleStringToEvaluate.add_member_subclass(:analysis, Types::RuleStringToEvaluate::Analysis)
|
1207
1219
|
RuleStringToEvaluate.add_member_subclass(:attribute, Types::RuleStringToEvaluate::Attribute)
|
1208
1220
|
RuleStringToEvaluate.add_member_subclass(:mime_header_attribute, Types::RuleStringToEvaluate::MimeHeaderAttribute)
|
1209
1221
|
RuleStringToEvaluate.add_member_subclass(:unknown, Types::RuleStringToEvaluate::Unknown)
|
@@ -2330,6 +2330,11 @@ module Aws::MailManager
|
|
2330
2330
|
#
|
2331
2331
|
# @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.
|
2332
2332
|
#
|
2333
|
+
# @!attribute [rw] analysis
|
2334
|
+
# The structure type for a string condition stating the Add On ARN and
|
2335
|
+
# its returned value.
|
2336
|
+
# @return [Types::IngressAnalysis]
|
2337
|
+
#
|
2333
2338
|
# @!attribute [rw] attribute
|
2334
2339
|
# The enum type representing the allowed attribute types for a string
|
2335
2340
|
# condition.
|
@@ -2338,12 +2343,14 @@ module Aws::MailManager
|
|
2338
2343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressStringToEvaluate AWS API Documentation
|
2339
2344
|
#
|
2340
2345
|
class IngressStringToEvaluate < Struct.new(
|
2346
|
+
:analysis,
|
2341
2347
|
:attribute,
|
2342
2348
|
:unknown)
|
2343
2349
|
SENSITIVE = []
|
2344
2350
|
include Aws::Structure
|
2345
2351
|
include Aws::Structure::Union
|
2346
2352
|
|
2353
|
+
class Analysis < IngressStringToEvaluate; end
|
2347
2354
|
class Attribute < IngressStringToEvaluate; end
|
2348
2355
|
class Unknown < IngressStringToEvaluate; end
|
2349
2356
|
end
|
@@ -2953,6 +2960,11 @@ module Aws::MailManager
|
|
2953
2960
|
|
2954
2961
|
# The metadata about the email.
|
2955
2962
|
#
|
2963
|
+
# @!attribute [rw] configuration_set
|
2964
|
+
# The name of the configuration set used when sent through a
|
2965
|
+
# configuration set with archiving enabled.
|
2966
|
+
# @return [String]
|
2967
|
+
#
|
2956
2968
|
# @!attribute [rw] ingress_point_id
|
2957
2969
|
# The ID of the ingress endpoint through which the email was received.
|
2958
2970
|
# @return [String]
|
@@ -2969,6 +2981,27 @@ module Aws::MailManager
|
|
2969
2981
|
# The IP address of the host from which the email was received.
|
2970
2982
|
# @return [String]
|
2971
2983
|
#
|
2984
|
+
# @!attribute [rw] sending_method
|
2985
|
+
# The name of the API call used when sent through a configuration set
|
2986
|
+
# with archiving enabled.
|
2987
|
+
# @return [String]
|
2988
|
+
#
|
2989
|
+
# @!attribute [rw] sending_pool
|
2990
|
+
# The name of the dedicated IP pool used when sent through a
|
2991
|
+
# configuration set with archiving enabled.
|
2992
|
+
# @return [String]
|
2993
|
+
#
|
2994
|
+
# @!attribute [rw] source_arn
|
2995
|
+
# Specifies the archived email source, identified by either a Rule
|
2996
|
+
# Set's ARN with an Archive action, or a Configuration Set's Archive
|
2997
|
+
# ARN.
|
2998
|
+
# @return [String]
|
2999
|
+
#
|
3000
|
+
# @!attribute [rw] source_identity
|
3001
|
+
# The identity name used to authorize the sending action when sent
|
3002
|
+
# through a configuration set with archiving enabled.
|
3003
|
+
# @return [String]
|
3004
|
+
#
|
2972
3005
|
# @!attribute [rw] timestamp
|
2973
3006
|
# The timestamp of when the email was received.
|
2974
3007
|
# @return [Time]
|
@@ -2991,10 +3024,15 @@ module Aws::MailManager
|
|
2991
3024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/Metadata AWS API Documentation
|
2992
3025
|
#
|
2993
3026
|
class Metadata < Struct.new(
|
3027
|
+
:configuration_set,
|
2994
3028
|
:ingress_point_id,
|
2995
3029
|
:rule_set_id,
|
2996
3030
|
:sender_hostname,
|
2997
3031
|
:sender_ip_address,
|
3032
|
+
:sending_method,
|
3033
|
+
:sending_pool,
|
3034
|
+
:source_arn,
|
3035
|
+
:source_identity,
|
2998
3036
|
:timestamp,
|
2999
3037
|
:tls_cipher_suite,
|
3000
3038
|
:tls_protocol,
|
@@ -3276,7 +3314,18 @@ module Aws::MailManager
|
|
3276
3314
|
# @return [String]
|
3277
3315
|
#
|
3278
3316
|
# @!attribute [rw] sender_ip_address
|
3279
|
-
# The IP address of the
|
3317
|
+
# * Mail archived with Mail Manager: The IP address of the client that
|
3318
|
+
# connects to the ingress endpoint.
|
3319
|
+
#
|
3320
|
+
# * Mail sent through a configuration set with the archiving option
|
3321
|
+
# enabled: The IP address of the client that makes the SendEmail API
|
3322
|
+
# call.
|
3323
|
+
# @return [String]
|
3324
|
+
#
|
3325
|
+
# @!attribute [rw] source_arn
|
3326
|
+
# Specifies the archived email source, identified by either a Rule
|
3327
|
+
# Set's ARN with an Archive action, or a Configuration Set's Archive
|
3328
|
+
# ARN.
|
3280
3329
|
# @return [String]
|
3281
3330
|
#
|
3282
3331
|
# @!attribute [rw] subject
|
@@ -3315,6 +3364,7 @@ module Aws::MailManager
|
|
3315
3364
|
:received_timestamp,
|
3316
3365
|
:sender_hostname,
|
3317
3366
|
:sender_ip_address,
|
3367
|
+
:source_arn,
|
3318
3368
|
:subject,
|
3319
3369
|
:to,
|
3320
3370
|
:x_mailer,
|
@@ -3466,6 +3516,11 @@ module Aws::MailManager
|
|
3466
3516
|
#
|
3467
3517
|
# @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.
|
3468
3518
|
#
|
3519
|
+
# @!attribute [rw] analysis
|
3520
|
+
# The Add On ARN and its returned value to evaluate in a boolean
|
3521
|
+
# condition expression.
|
3522
|
+
# @return [Types::Analysis]
|
3523
|
+
#
|
3469
3524
|
# @!attribute [rw] attribute
|
3470
3525
|
# The boolean type representing the allowed attribute types for an
|
3471
3526
|
# email.
|
@@ -3479,6 +3534,7 @@ module Aws::MailManager
|
|
3479
3534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleBooleanToEvaluate AWS API Documentation
|
3480
3535
|
#
|
3481
3536
|
class RuleBooleanToEvaluate < Struct.new(
|
3537
|
+
:analysis,
|
3482
3538
|
:attribute,
|
3483
3539
|
:is_in_address_list,
|
3484
3540
|
:unknown)
|
@@ -3486,6 +3542,7 @@ module Aws::MailManager
|
|
3486
3542
|
include Aws::Structure
|
3487
3543
|
include Aws::Structure::Union
|
3488
3544
|
|
3545
|
+
class Analysis < RuleBooleanToEvaluate; end
|
3489
3546
|
class Attribute < RuleBooleanToEvaluate; end
|
3490
3547
|
class IsInAddressList < RuleBooleanToEvaluate; end
|
3491
3548
|
class Unknown < RuleBooleanToEvaluate; end
|
@@ -3758,6 +3815,11 @@ module Aws::MailManager
|
|
3758
3815
|
#
|
3759
3816
|
# @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.
|
3760
3817
|
#
|
3818
|
+
# @!attribute [rw] analysis
|
3819
|
+
# The Add On ARN and its returned value to evaluate in a string
|
3820
|
+
# condition expression.
|
3821
|
+
# @return [Types::Analysis]
|
3822
|
+
#
|
3761
3823
|
# @!attribute [rw] attribute
|
3762
3824
|
# The email attribute to evaluate in a string condition expression.
|
3763
3825
|
# @return [String]
|
@@ -3770,6 +3832,7 @@ module Aws::MailManager
|
|
3770
3832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleStringToEvaluate AWS API Documentation
|
3771
3833
|
#
|
3772
3834
|
class RuleStringToEvaluate < Struct.new(
|
3835
|
+
:analysis,
|
3773
3836
|
:attribute,
|
3774
3837
|
:mime_header_attribute,
|
3775
3838
|
:unknown)
|
@@ -3777,6 +3840,7 @@ module Aws::MailManager
|
|
3777
3840
|
include Aws::Structure
|
3778
3841
|
include Aws::Structure::Union
|
3779
3842
|
|
3843
|
+
class Analysis < RuleStringToEvaluate; end
|
3780
3844
|
class Attribute < RuleStringToEvaluate; end
|
3781
3845
|
class MimeHeaderAttribute < RuleStringToEvaluate; end
|
3782
3846
|
class Unknown < RuleStringToEvaluate; end
|
data/lib/aws-sdk-mailmanager.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -272,6 +272,10 @@ module Aws
|
|
272
272
|
{
|
273
273
|
boolean_expression: {
|
274
274
|
evaluate: {
|
275
|
+
analysis: {
|
276
|
+
analyzer: ::String,
|
277
|
+
result_field: ::String
|
278
|
+
}?,
|
275
279
|
attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
|
276
280
|
is_in_address_list: {
|
277
281
|
address_lists: Array[::String],
|
@@ -300,6 +304,10 @@ module Aws
|
|
300
304
|
}?,
|
301
305
|
string_expression: {
|
302
306
|
evaluate: {
|
307
|
+
analysis: {
|
308
|
+
analyzer: ::String,
|
309
|
+
result_field: ::String
|
310
|
+
}?,
|
303
311
|
attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
|
304
312
|
mime_header_attribute: ::String?
|
305
313
|
},
|
@@ -324,6 +332,10 @@ module Aws
|
|
324
332
|
{
|
325
333
|
boolean_expression: {
|
326
334
|
evaluate: {
|
335
|
+
analysis: {
|
336
|
+
analyzer: ::String,
|
337
|
+
result_field: ::String
|
338
|
+
}?,
|
327
339
|
attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
|
328
340
|
is_in_address_list: {
|
329
341
|
address_lists: Array[::String],
|
@@ -352,6 +364,10 @@ module Aws
|
|
352
364
|
}?,
|
353
365
|
string_expression: {
|
354
366
|
evaluate: {
|
367
|
+
analysis: {
|
368
|
+
analyzer: ::String,
|
369
|
+
result_field: ::String
|
370
|
+
}?,
|
355
371
|
attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
|
356
372
|
mime_header_attribute: ::String?
|
357
373
|
},
|
@@ -418,6 +434,10 @@ module Aws
|
|
418
434
|
}?,
|
419
435
|
string_expression: {
|
420
436
|
evaluate: {
|
437
|
+
analysis: {
|
438
|
+
analyzer: ::String,
|
439
|
+
result_field: ::String
|
440
|
+
}?,
|
421
441
|
attribute: ("RECIPIENT")?
|
422
442
|
},
|
423
443
|
operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
|
@@ -1186,6 +1206,10 @@ module Aws
|
|
1186
1206
|
{
|
1187
1207
|
boolean_expression: {
|
1188
1208
|
evaluate: {
|
1209
|
+
analysis: {
|
1210
|
+
analyzer: ::String,
|
1211
|
+
result_field: ::String
|
1212
|
+
}?,
|
1189
1213
|
attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
|
1190
1214
|
is_in_address_list: {
|
1191
1215
|
address_lists: Array[::String],
|
@@ -1214,6 +1238,10 @@ module Aws
|
|
1214
1238
|
}?,
|
1215
1239
|
string_expression: {
|
1216
1240
|
evaluate: {
|
1241
|
+
analysis: {
|
1242
|
+
analyzer: ::String,
|
1243
|
+
result_field: ::String
|
1244
|
+
}?,
|
1217
1245
|
attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
|
1218
1246
|
mime_header_attribute: ::String?
|
1219
1247
|
},
|
@@ -1238,6 +1266,10 @@ module Aws
|
|
1238
1266
|
{
|
1239
1267
|
boolean_expression: {
|
1240
1268
|
evaluate: {
|
1269
|
+
analysis: {
|
1270
|
+
analyzer: ::String,
|
1271
|
+
result_field: ::String
|
1272
|
+
}?,
|
1241
1273
|
attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
|
1242
1274
|
is_in_address_list: {
|
1243
1275
|
address_lists: Array[::String],
|
@@ -1266,6 +1298,10 @@ module Aws
|
|
1266
1298
|
}?,
|
1267
1299
|
string_expression: {
|
1268
1300
|
evaluate: {
|
1301
|
+
analysis: {
|
1302
|
+
analyzer: ::String,
|
1303
|
+
result_field: ::String
|
1304
|
+
}?,
|
1269
1305
|
attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
|
1270
1306
|
mime_header_attribute: ::String?
|
1271
1307
|
},
|
@@ -1324,6 +1360,10 @@ module Aws
|
|
1324
1360
|
}?,
|
1325
1361
|
string_expression: {
|
1326
1362
|
evaluate: {
|
1363
|
+
analysis: {
|
1364
|
+
analyzer: ::String,
|
1365
|
+
result_field: ::String
|
1366
|
+
}?,
|
1327
1367
|
attribute: ("RECIPIENT")?
|
1328
1368
|
},
|
1329
1369
|
operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
|
data/sig/types.rbs
CHANGED
@@ -723,10 +723,13 @@ module Aws::MailManager
|
|
723
723
|
end
|
724
724
|
|
725
725
|
class IngressStringToEvaluate
|
726
|
+
attr_accessor analysis: Types::IngressAnalysis
|
726
727
|
attr_accessor attribute: ("RECIPIENT")
|
727
728
|
attr_accessor unknown: untyped
|
728
729
|
SENSITIVE: []
|
729
730
|
|
731
|
+
class Analysis < IngressStringToEvaluate
|
732
|
+
end
|
730
733
|
class Attribute < IngressStringToEvaluate
|
731
734
|
end
|
732
735
|
class Unknown < IngressStringToEvaluate
|
@@ -918,10 +921,15 @@ module Aws::MailManager
|
|
918
921
|
end
|
919
922
|
|
920
923
|
class Metadata
|
924
|
+
attr_accessor configuration_set: ::String
|
921
925
|
attr_accessor ingress_point_id: ::String
|
922
926
|
attr_accessor rule_set_id: ::String
|
923
927
|
attr_accessor sender_hostname: ::String
|
924
928
|
attr_accessor sender_ip_address: ::String
|
929
|
+
attr_accessor sending_method: ::String
|
930
|
+
attr_accessor sending_pool: ::String
|
931
|
+
attr_accessor source_arn: ::String
|
932
|
+
attr_accessor source_identity: ::String
|
925
933
|
attr_accessor timestamp: ::Time
|
926
934
|
attr_accessor tls_cipher_suite: ::String
|
927
935
|
attr_accessor tls_protocol: ::String
|
@@ -1019,6 +1027,7 @@ module Aws::MailManager
|
|
1019
1027
|
attr_accessor received_timestamp: ::Time
|
1020
1028
|
attr_accessor sender_hostname: ::String
|
1021
1029
|
attr_accessor sender_ip_address: ::String
|
1030
|
+
attr_accessor source_arn: ::String
|
1022
1031
|
attr_accessor subject: ::String
|
1023
1032
|
attr_accessor to: ::String
|
1024
1033
|
attr_accessor x_mailer: ::String
|
@@ -1077,11 +1086,14 @@ module Aws::MailManager
|
|
1077
1086
|
end
|
1078
1087
|
|
1079
1088
|
class RuleBooleanToEvaluate
|
1089
|
+
attr_accessor analysis: Types::Analysis
|
1080
1090
|
attr_accessor attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")
|
1081
1091
|
attr_accessor is_in_address_list: Types::RuleIsInAddressList
|
1082
1092
|
attr_accessor unknown: untyped
|
1083
1093
|
SENSITIVE: []
|
1084
1094
|
|
1095
|
+
class Analysis < RuleBooleanToEvaluate
|
1096
|
+
end
|
1085
1097
|
class Attribute < RuleBooleanToEvaluate
|
1086
1098
|
end
|
1087
1099
|
class IsInAddressList < RuleBooleanToEvaluate
|
@@ -1179,11 +1191,14 @@ module Aws::MailManager
|
|
1179
1191
|
end
|
1180
1192
|
|
1181
1193
|
class RuleStringToEvaluate
|
1194
|
+
attr_accessor analysis: Types::Analysis
|
1182
1195
|
attr_accessor attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")
|
1183
1196
|
attr_accessor mime_header_attribute: ::String
|
1184
1197
|
attr_accessor unknown: untyped
|
1185
1198
|
SENSITIVE: []
|
1186
1199
|
|
1200
|
+
class Analysis < RuleStringToEvaluate
|
1201
|
+
end
|
1187
1202
|
class Attribute < RuleStringToEvaluate
|
1188
1203
|
end
|
1189
1204
|
class MimeHeaderAttribute < RuleStringToEvaluate
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mailmanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|