aws-sdk-mailmanager 1.21.0 → 1.23.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88157e4d4ebfe89fce281637d8a444d36d1fe1bf7075bdcb304e965705aab23d
4
- data.tar.gz: cb96e887b56fe49cfec859289b582d26b511ae16094cb39de1ab88729699f0b8
3
+ metadata.gz: 86c0ea7c9a97c17b79cec8fa8426ae7be7c6f09352577d63f0f0b8fc8b2f235b
4
+ data.tar.gz: f0a2c6b7cde7b923b43f39a9e374be6c291377a4f55f5fc72cf16d40674ee382
5
5
  SHA512:
6
- metadata.gz: 7f53de559fdcf7176ad3718d013fe640943ca8fd10e04751703f2fce458a6e2f77db80ac3ba2624befff93a8e3b03899fa17b0ee5e471f4a5cbfff1bea0801a6
7
- data.tar.gz: ea33186ca25b49db54722ab38964037fc3c869001ac5c2170459378fa953c3c2cb52ab09b5ae7cfe2b89fdfb2c2f30fc034b9de6c8ccb933d1e76975f7009383
6
+ metadata.gz: 4aa3b203aa2bf190912b15b9d0dd754ce428068dc6a93c4ba48e405575762f20067c1c7002f34c7ab297f3c90a172a6b4f0562445934965e19f3ece0604a8ad7
7
+ data.tar.gz: 94655f3fa769574a69bce3f8e1b02a3bb89a7ef50b1296ff48881827acd0e8bfe0f657879d861324527ed7b99d071b42789b4df76de1b040b8fa4945ab03a273
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2025-04-03)
5
+ ------------------
6
+
7
+ * Feature - Add support for Dual_Stack and PrivateLink types of IngressPoint. For configuration requests, SES Mail Manager will now accept both IPv4/IPv6 dual-stack endpoints and AWS PrivateLink VPC endpoints for email receiving.
8
+
9
+ 1.22.0 (2025-03-20)
10
+ ------------------
11
+
12
+ * 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
13
+
4
14
  1.21.0 (2025-02-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.23.0
@@ -747,6 +747,11 @@ module Aws::MailManager
747
747
  # @option params [required, String] :ingress_point_name
748
748
  # A user friendly name for an ingress endpoint resource.
749
749
  #
750
+ # @option params [Types::NetworkConfiguration] :network_configuration
751
+ # Specifies the network configuration for the ingress point. This allows
752
+ # you to create an IPv4-only, Dual-Stack, or PrivateLink type of ingress
753
+ # point. If not specified, the default network type is IPv4-only.
754
+ #
750
755
  # @option params [required, String] :rule_set_id
751
756
  # The identifier of an existing rule set that you attach to an ingress
752
757
  # endpoint resource.
@@ -776,6 +781,14 @@ module Aws::MailManager
776
781
  # smtp_password: "SmtpPassword",
777
782
  # },
778
783
  # ingress_point_name: "IngressPointName", # required
784
+ # network_configuration: {
785
+ # private_network_configuration: {
786
+ # vpc_endpoint_id: "VpcEndpointId", # required
787
+ # },
788
+ # public_network_configuration: {
789
+ # ip_type: "IPV4", # required, accepts IPV4, DUAL_STACK
790
+ # },
791
+ # },
779
792
  # rule_set_id: "RuleSetId", # required
780
793
  # tags: [
781
794
  # {
@@ -944,6 +957,10 @@ module Aws::MailManager
944
957
  # {
945
958
  # boolean_expression: {
946
959
  # evaluate: { # required
960
+ # analysis: {
961
+ # analyzer: "AnalyzerArn", # required
962
+ # result_field: "ResultField", # required
963
+ # },
947
964
  # attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
948
965
  # is_in_address_list: {
949
966
  # address_lists: ["AddressListArn"], # required
@@ -972,6 +989,10 @@ module Aws::MailManager
972
989
  # },
973
990
  # string_expression: {
974
991
  # evaluate: { # required
992
+ # analysis: {
993
+ # analyzer: "AnalyzerArn", # required
994
+ # result_field: "ResultField", # required
995
+ # },
975
996
  # attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
976
997
  # mime_header_attribute: "MimeHeaderAttribute",
977
998
  # },
@@ -996,6 +1017,10 @@ module Aws::MailManager
996
1017
  # {
997
1018
  # boolean_expression: {
998
1019
  # evaluate: { # required
1020
+ # analysis: {
1021
+ # analyzer: "AnalyzerArn", # required
1022
+ # result_field: "ResultField", # required
1023
+ # },
999
1024
  # attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
1000
1025
  # is_in_address_list: {
1001
1026
  # address_lists: ["AddressListArn"], # required
@@ -1024,6 +1049,10 @@ module Aws::MailManager
1024
1049
  # },
1025
1050
  # string_expression: {
1026
1051
  # evaluate: { # required
1052
+ # analysis: {
1053
+ # analyzer: "AnalyzerArn", # required
1054
+ # result_field: "ResultField", # required
1055
+ # },
1027
1056
  # attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
1028
1057
  # mime_header_attribute: "MimeHeaderAttribute",
1029
1058
  # },
@@ -1130,8 +1159,19 @@ module Aws::MailManager
1130
1159
  # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
1131
1160
  # values: ["Ipv4Cidr"], # required
1132
1161
  # },
1162
+ # ipv_6_expression: {
1163
+ # evaluate: { # required
1164
+ # attribute: "SENDER_IPV6", # accepts SENDER_IPV6
1165
+ # },
1166
+ # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
1167
+ # values: ["Ipv6Cidr"], # required
1168
+ # },
1133
1169
  # string_expression: {
1134
1170
  # evaluate: { # required
1171
+ # analysis: {
1172
+ # analyzer: "AnalyzerArn", # required
1173
+ # result_field: "ResultField", # required
1174
+ # },
1135
1175
  # attribute: "RECIPIENT", # accepts RECIPIENT
1136
1176
  # },
1137
1177
  # operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
@@ -1829,6 +1869,7 @@ module Aws::MailManager
1829
1869
  # * {Types::GetIngressPointResponse#ingress_point_id #ingress_point_id} => String
1830
1870
  # * {Types::GetIngressPointResponse#ingress_point_name #ingress_point_name} => String
1831
1871
  # * {Types::GetIngressPointResponse#last_updated_timestamp #last_updated_timestamp} => Time
1872
+ # * {Types::GetIngressPointResponse#network_configuration #network_configuration} => Types::NetworkConfiguration
1832
1873
  # * {Types::GetIngressPointResponse#rule_set_id #rule_set_id} => String
1833
1874
  # * {Types::GetIngressPointResponse#status #status} => String
1834
1875
  # * {Types::GetIngressPointResponse#traffic_policy_id #traffic_policy_id} => String
@@ -1852,6 +1893,8 @@ module Aws::MailManager
1852
1893
  # resp.ingress_point_id #=> String
1853
1894
  # resp.ingress_point_name #=> String
1854
1895
  # resp.last_updated_timestamp #=> Time
1896
+ # resp.network_configuration.private_network_configuration.vpc_endpoint_id #=> String
1897
+ # resp.network_configuration.public_network_configuration.ip_type #=> String, one of "IPV4", "DUAL_STACK"
1855
1898
  # resp.rule_set_id #=> String
1856
1899
  # resp.status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED"
1857
1900
  # resp.traffic_policy_id #=> String
@@ -1996,6 +2039,8 @@ module Aws::MailManager
1996
2039
  # resp.rules[0].actions[0].write_to_s3.s3_prefix #=> String
1997
2040
  # resp.rules[0].actions[0].write_to_s3.s3_sse_kms_key_id #=> String
1998
2041
  # resp.rules[0].conditions #=> Array
2042
+ # resp.rules[0].conditions[0].boolean_expression.evaluate.analysis.analyzer #=> String
2043
+ # resp.rules[0].conditions[0].boolean_expression.evaluate.analysis.result_field #=> String
1999
2044
  # resp.rules[0].conditions[0].boolean_expression.evaluate.attribute #=> String, one of "READ_RECEIPT_REQUESTED", "TLS", "TLS_WRAPPED"
2000
2045
  # resp.rules[0].conditions[0].boolean_expression.evaluate.is_in_address_list.address_lists #=> Array
2001
2046
  # resp.rules[0].conditions[0].boolean_expression.evaluate.is_in_address_list.address_lists[0] #=> String
@@ -2011,6 +2056,8 @@ module Aws::MailManager
2011
2056
  # resp.rules[0].conditions[0].number_expression.evaluate.attribute #=> String, one of "MESSAGE_SIZE"
2012
2057
  # 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"
2013
2058
  # resp.rules[0].conditions[0].number_expression.value #=> Float
2059
+ # resp.rules[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
2060
+ # resp.rules[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
2014
2061
  # resp.rules[0].conditions[0].string_expression.evaluate.attribute #=> String, one of "MAIL_FROM", "HELO", "RECIPIENT", "SENDER", "FROM", "SUBJECT", "TO", "CC"
2015
2062
  # resp.rules[0].conditions[0].string_expression.evaluate.mime_header_attribute #=> String
2016
2063
  # resp.rules[0].conditions[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
@@ -2024,6 +2071,8 @@ module Aws::MailManager
2024
2071
  # resp.rules[0].conditions[0].verdict_expression.values[0] #=> String, one of "PASS", "FAIL", "GRAY", "PROCESSING_FAILED"
2025
2072
  # resp.rules[0].name #=> String
2026
2073
  # resp.rules[0].unless #=> Array
2074
+ # resp.rules[0].unless[0].boolean_expression.evaluate.analysis.analyzer #=> String
2075
+ # resp.rules[0].unless[0].boolean_expression.evaluate.analysis.result_field #=> String
2027
2076
  # resp.rules[0].unless[0].boolean_expression.evaluate.attribute #=> String, one of "READ_RECEIPT_REQUESTED", "TLS", "TLS_WRAPPED"
2028
2077
  # resp.rules[0].unless[0].boolean_expression.evaluate.is_in_address_list.address_lists #=> Array
2029
2078
  # resp.rules[0].unless[0].boolean_expression.evaluate.is_in_address_list.address_lists[0] #=> String
@@ -2039,6 +2088,8 @@ module Aws::MailManager
2039
2088
  # resp.rules[0].unless[0].number_expression.evaluate.attribute #=> String, one of "MESSAGE_SIZE"
2040
2089
  # 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"
2041
2090
  # resp.rules[0].unless[0].number_expression.value #=> Float
2091
+ # resp.rules[0].unless[0].string_expression.evaluate.analysis.analyzer #=> String
2092
+ # resp.rules[0].unless[0].string_expression.evaluate.analysis.result_field #=> String
2042
2093
  # resp.rules[0].unless[0].string_expression.evaluate.attribute #=> String, one of "MAIL_FROM", "HELO", "RECIPIENT", "SENDER", "FROM", "SUBJECT", "TO", "CC"
2043
2094
  # resp.rules[0].unless[0].string_expression.evaluate.mime_header_attribute #=> String
2044
2095
  # resp.rules[0].unless[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
@@ -2101,6 +2152,12 @@ module Aws::MailManager
2101
2152
  # resp.policy_statements[0].conditions[0].ip_expression.operator #=> String, one of "CIDR_MATCHES", "NOT_CIDR_MATCHES"
2102
2153
  # resp.policy_statements[0].conditions[0].ip_expression.values #=> Array
2103
2154
  # resp.policy_statements[0].conditions[0].ip_expression.values[0] #=> String
2155
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.evaluate.attribute #=> String, one of "SENDER_IPV6"
2156
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.operator #=> String, one of "CIDR_MATCHES", "NOT_CIDR_MATCHES"
2157
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.values #=> Array
2158
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.values[0] #=> String
2159
+ # resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
2160
+ # resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
2104
2161
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.attribute #=> String, one of "RECIPIENT"
2105
2162
  # resp.policy_statements[0].conditions[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
2106
2163
  # resp.policy_statements[0].conditions[0].string_expression.values #=> Array
@@ -3234,6 +3291,10 @@ module Aws::MailManager
3234
3291
  # {
3235
3292
  # boolean_expression: {
3236
3293
  # evaluate: { # required
3294
+ # analysis: {
3295
+ # analyzer: "AnalyzerArn", # required
3296
+ # result_field: "ResultField", # required
3297
+ # },
3237
3298
  # attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
3238
3299
  # is_in_address_list: {
3239
3300
  # address_lists: ["AddressListArn"], # required
@@ -3262,6 +3323,10 @@ module Aws::MailManager
3262
3323
  # },
3263
3324
  # string_expression: {
3264
3325
  # evaluate: { # required
3326
+ # analysis: {
3327
+ # analyzer: "AnalyzerArn", # required
3328
+ # result_field: "ResultField", # required
3329
+ # },
3265
3330
  # attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
3266
3331
  # mime_header_attribute: "MimeHeaderAttribute",
3267
3332
  # },
@@ -3286,6 +3351,10 @@ module Aws::MailManager
3286
3351
  # {
3287
3352
  # boolean_expression: {
3288
3353
  # evaluate: { # required
3354
+ # analysis: {
3355
+ # analyzer: "AnalyzerArn", # required
3356
+ # result_field: "ResultField", # required
3357
+ # },
3289
3358
  # attribute: "READ_RECEIPT_REQUESTED", # accepts READ_RECEIPT_REQUESTED, TLS, TLS_WRAPPED
3290
3359
  # is_in_address_list: {
3291
3360
  # address_lists: ["AddressListArn"], # required
@@ -3314,6 +3383,10 @@ module Aws::MailManager
3314
3383
  # },
3315
3384
  # string_expression: {
3316
3385
  # evaluate: { # required
3386
+ # analysis: {
3387
+ # analyzer: "AnalyzerArn", # required
3388
+ # result_field: "ResultField", # required
3389
+ # },
3317
3390
  # attribute: "MAIL_FROM", # accepts MAIL_FROM, HELO, RECIPIENT, SENDER, FROM, SUBJECT, TO, CC
3318
3391
  # mime_header_attribute: "MimeHeaderAttribute",
3319
3392
  # },
@@ -3398,8 +3471,19 @@ module Aws::MailManager
3398
3471
  # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
3399
3472
  # values: ["Ipv4Cidr"], # required
3400
3473
  # },
3474
+ # ipv_6_expression: {
3475
+ # evaluate: { # required
3476
+ # attribute: "SENDER_IPV6", # accepts SENDER_IPV6
3477
+ # },
3478
+ # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
3479
+ # values: ["Ipv6Cidr"], # required
3480
+ # },
3401
3481
  # string_expression: {
3402
3482
  # evaluate: { # required
3483
+ # analysis: {
3484
+ # analyzer: "AnalyzerArn", # required
3485
+ # result_field: "ResultField", # required
3486
+ # },
3403
3487
  # attribute: "RECIPIENT", # accepts RECIPIENT
3404
3488
  # },
3405
3489
  # operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
@@ -3447,7 +3531,7 @@ module Aws::MailManager
3447
3531
  tracer: tracer
3448
3532
  )
3449
3533
  context[:gem_name] = 'aws-sdk-mailmanager'
3450
- context[:gem_version] = '1.21.0'
3534
+ context[:gem_version] = '1.23.0'
3451
3535
  Seahorse::Client::Request.new(handlers, context)
3452
3536
  end
3453
3537
 
@@ -162,6 +162,9 @@ module Aws::MailManager
162
162
  IngressIpToEvaluate = Shapes::UnionShape.new(name: 'IngressIpToEvaluate')
163
163
  IngressIpv4Attribute = Shapes::StringShape.new(name: 'IngressIpv4Attribute')
164
164
  IngressIpv4Expression = Shapes::StructureShape.new(name: 'IngressIpv4Expression')
165
+ IngressIpv6Attribute = Shapes::StringShape.new(name: 'IngressIpv6Attribute')
166
+ IngressIpv6Expression = Shapes::StructureShape.new(name: 'IngressIpv6Expression')
167
+ IngressIpv6ToEvaluate = Shapes::UnionShape.new(name: 'IngressIpv6ToEvaluate')
165
168
  IngressIsInAddressList = Shapes::StructureShape.new(name: 'IngressIsInAddressList')
166
169
  IngressPoint = Shapes::StructureShape.new(name: 'IngressPoint')
167
170
  IngressPointARecord = Shapes::StringShape.new(name: 'IngressPointARecord')
@@ -185,8 +188,11 @@ module Aws::MailManager
185
188
  IngressTlsProtocolOperator = Shapes::StringShape.new(name: 'IngressTlsProtocolOperator')
186
189
  IngressTlsProtocolToEvaluate = Shapes::UnionShape.new(name: 'IngressTlsProtocolToEvaluate')
187
190
  Integer = Shapes::IntegerShape.new(name: 'Integer')
191
+ IpType = Shapes::StringShape.new(name: 'IpType')
188
192
  Ipv4Cidr = Shapes::StringShape.new(name: 'Ipv4Cidr')
189
193
  Ipv4Cidrs = Shapes::ListShape.new(name: 'Ipv4Cidrs')
194
+ Ipv6Cidr = Shapes::StringShape.new(name: 'Ipv6Cidr')
195
+ Ipv6Cidrs = Shapes::ListShape.new(name: 'Ipv6Cidrs')
190
196
  JobId = Shapes::StringShape.new(name: 'JobId')
191
197
  JobItemsCount = Shapes::IntegerShape.new(name: 'JobItemsCount')
192
198
  JobName = Shapes::StringShape.new(name: 'JobName')
@@ -224,6 +230,7 @@ module Aws::MailManager
224
230
  Metadata = Shapes::StructureShape.new(name: 'Metadata')
225
231
  MimeHeaderAttribute = Shapes::StringShape.new(name: 'MimeHeaderAttribute')
226
232
  NameOrArn = Shapes::StringShape.new(name: 'NameOrArn')
233
+ NetworkConfiguration = Shapes::UnionShape.new(name: 'NetworkConfiguration')
227
234
  NoAuthentication = Shapes::StructureShape.new(name: 'NoAuthentication')
228
235
  PageSize = Shapes::IntegerShape.new(name: 'PageSize')
229
236
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
@@ -232,6 +239,8 @@ module Aws::MailManager
232
239
  PolicyStatement = Shapes::StructureShape.new(name: 'PolicyStatement')
233
240
  PolicyStatementList = Shapes::ListShape.new(name: 'PolicyStatementList')
234
241
  PreSignedUrl = Shapes::StringShape.new(name: 'PreSignedUrl')
242
+ PrivateNetworkConfiguration = Shapes::StructureShape.new(name: 'PrivateNetworkConfiguration')
243
+ PublicNetworkConfiguration = Shapes::StructureShape.new(name: 'PublicNetworkConfiguration')
235
244
  QBusinessApplicationId = Shapes::StringShape.new(name: 'QBusinessApplicationId')
236
245
  QBusinessIndexId = Shapes::StringShape.new(name: 'QBusinessIndexId')
237
246
  Recipients = Shapes::ListShape.new(name: 'Recipients')
@@ -360,6 +369,7 @@ module Aws::MailManager
360
369
  UpdateTrafficPolicyRequest = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyRequest')
361
370
  UpdateTrafficPolicyResponse = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyResponse')
362
371
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
372
+ VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
363
373
 
364
374
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
365
375
  AccessDeniedException.struct_class = Types::AccessDeniedException
@@ -504,6 +514,7 @@ module Aws::MailManager
504
514
  CreateIngressPointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
505
515
  CreateIngressPointRequest.add_member(:ingress_point_configuration, Shapes::ShapeRef.new(shape: IngressPointConfiguration, location_name: "IngressPointConfiguration"))
506
516
  CreateIngressPointRequest.add_member(:ingress_point_name, Shapes::ShapeRef.new(shape: IngressPointName, required: true, location_name: "IngressPointName"))
517
+ CreateIngressPointRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "NetworkConfiguration"))
507
518
  CreateIngressPointRequest.add_member(:rule_set_id, Shapes::ShapeRef.new(shape: RuleSetId, required: true, location_name: "RuleSetId"))
508
519
  CreateIngressPointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
509
520
  CreateIngressPointRequest.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, required: true, location_name: "TrafficPolicyId"))
@@ -738,6 +749,7 @@ module Aws::MailManager
738
749
  GetIngressPointResponse.add_member(:ingress_point_id, Shapes::ShapeRef.new(shape: IngressPointId, required: true, location_name: "IngressPointId"))
739
750
  GetIngressPointResponse.add_member(:ingress_point_name, Shapes::ShapeRef.new(shape: IngressPointName, required: true, location_name: "IngressPointName"))
740
751
  GetIngressPointResponse.add_member(:last_updated_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTimestamp"))
752
+ GetIngressPointResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "NetworkConfiguration"))
741
753
  GetIngressPointResponse.add_member(:rule_set_id, Shapes::ShapeRef.new(shape: RuleSetId, location_name: "RuleSetId"))
742
754
  GetIngressPointResponse.add_member(:status, Shapes::ShapeRef.new(shape: IngressPointStatus, location_name: "Status"))
743
755
  GetIngressPointResponse.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
@@ -837,6 +849,17 @@ module Aws::MailManager
837
849
  IngressIpv4Expression.add_member(:values, Shapes::ShapeRef.new(shape: Ipv4Cidrs, required: true, location_name: "Values"))
838
850
  IngressIpv4Expression.struct_class = Types::IngressIpv4Expression
839
851
 
852
+ IngressIpv6Expression.add_member(:evaluate, Shapes::ShapeRef.new(shape: IngressIpv6ToEvaluate, required: true, location_name: "Evaluate"))
853
+ IngressIpv6Expression.add_member(:operator, Shapes::ShapeRef.new(shape: IngressIpOperator, required: true, location_name: "Operator"))
854
+ IngressIpv6Expression.add_member(:values, Shapes::ShapeRef.new(shape: Ipv6Cidrs, required: true, location_name: "Values"))
855
+ IngressIpv6Expression.struct_class = Types::IngressIpv6Expression
856
+
857
+ IngressIpv6ToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: IngressIpv6Attribute, location_name: "Attribute"))
858
+ IngressIpv6ToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
859
+ IngressIpv6ToEvaluate.add_member_subclass(:attribute, Types::IngressIpv6ToEvaluate::Attribute)
860
+ IngressIpv6ToEvaluate.add_member_subclass(:unknown, Types::IngressIpv6ToEvaluate::Unknown)
861
+ IngressIpv6ToEvaluate.struct_class = Types::IngressIpv6ToEvaluate
862
+
840
863
  IngressIsInAddressList.add_member(:address_lists, Shapes::ShapeRef.new(shape: IngressAddressListArnList, required: true, location_name: "AddressLists"))
841
864
  IngressIsInAddressList.add_member(:attribute, Shapes::ShapeRef.new(shape: IngressAddressListEmailAttribute, required: true, location_name: "Attribute"))
842
865
  IngressIsInAddressList.struct_class = Types::IngressIsInAddressList
@@ -872,8 +895,10 @@ module Aws::MailManager
872
895
  IngressStringExpression.add_member(:values, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "Values"))
873
896
  IngressStringExpression.struct_class = Types::IngressStringExpression
874
897
 
898
+ IngressStringToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: IngressAnalysis, location_name: "Analysis"))
875
899
  IngressStringToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: IngressStringEmailAttribute, location_name: "Attribute"))
876
900
  IngressStringToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
901
+ IngressStringToEvaluate.add_member_subclass(:analysis, Types::IngressStringToEvaluate::Analysis)
877
902
  IngressStringToEvaluate.add_member_subclass(:attribute, Types::IngressStringToEvaluate::Attribute)
878
903
  IngressStringToEvaluate.add_member_subclass(:unknown, Types::IngressStringToEvaluate::Unknown)
879
904
  IngressStringToEvaluate.struct_class = Types::IngressStringToEvaluate
@@ -891,6 +916,8 @@ module Aws::MailManager
891
916
 
892
917
  Ipv4Cidrs.member = Shapes::ShapeRef.new(shape: Ipv4Cidr)
893
918
 
919
+ Ipv6Cidrs.member = Shapes::ShapeRef.new(shape: Ipv6Cidr)
920
+
894
921
  ListAddonInstancesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
895
922
  ListAddonInstancesRequest.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
896
923
  ListAddonInstancesRequest.struct_class = Types::ListAddonInstancesRequest
@@ -1018,15 +1045,25 @@ module Aws::MailManager
1018
1045
  Metadata.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
1019
1046
  Metadata.struct_class = Types::Metadata
1020
1047
 
1048
+ NetworkConfiguration.add_member(:private_network_configuration, Shapes::ShapeRef.new(shape: PrivateNetworkConfiguration, location_name: "PrivateNetworkConfiguration"))
1049
+ NetworkConfiguration.add_member(:public_network_configuration, Shapes::ShapeRef.new(shape: PublicNetworkConfiguration, location_name: "PublicNetworkConfiguration"))
1050
+ NetworkConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1051
+ NetworkConfiguration.add_member_subclass(:private_network_configuration, Types::NetworkConfiguration::PrivateNetworkConfiguration)
1052
+ NetworkConfiguration.add_member_subclass(:public_network_configuration, Types::NetworkConfiguration::PublicNetworkConfiguration)
1053
+ NetworkConfiguration.add_member_subclass(:unknown, Types::NetworkConfiguration::Unknown)
1054
+ NetworkConfiguration.struct_class = Types::NetworkConfiguration
1055
+
1021
1056
  NoAuthentication.struct_class = Types::NoAuthentication
1022
1057
 
1023
1058
  PolicyCondition.add_member(:boolean_expression, Shapes::ShapeRef.new(shape: IngressBooleanExpression, location_name: "BooleanExpression"))
1024
1059
  PolicyCondition.add_member(:ip_expression, Shapes::ShapeRef.new(shape: IngressIpv4Expression, location_name: "IpExpression"))
1060
+ PolicyCondition.add_member(:ipv_6_expression, Shapes::ShapeRef.new(shape: IngressIpv6Expression, location_name: "Ipv6Expression"))
1025
1061
  PolicyCondition.add_member(:string_expression, Shapes::ShapeRef.new(shape: IngressStringExpression, location_name: "StringExpression"))
1026
1062
  PolicyCondition.add_member(:tls_expression, Shapes::ShapeRef.new(shape: IngressTlsProtocolExpression, location_name: "TlsExpression"))
1027
1063
  PolicyCondition.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1028
1064
  PolicyCondition.add_member_subclass(:boolean_expression, Types::PolicyCondition::BooleanExpression)
1029
1065
  PolicyCondition.add_member_subclass(:ip_expression, Types::PolicyCondition::IpExpression)
1066
+ PolicyCondition.add_member_subclass(:ipv_6_expression, Types::PolicyCondition::Ipv6Expression)
1030
1067
  PolicyCondition.add_member_subclass(:string_expression, Types::PolicyCondition::StringExpression)
1031
1068
  PolicyCondition.add_member_subclass(:tls_expression, Types::PolicyCondition::TlsExpression)
1032
1069
  PolicyCondition.add_member_subclass(:unknown, Types::PolicyCondition::Unknown)
@@ -1040,6 +1077,12 @@ module Aws::MailManager
1040
1077
 
1041
1078
  PolicyStatementList.member = Shapes::ShapeRef.new(shape: PolicyStatement)
1042
1079
 
1080
+ PrivateNetworkConfiguration.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, required: true, location_name: "VpcEndpointId"))
1081
+ PrivateNetworkConfiguration.struct_class = Types::PrivateNetworkConfiguration
1082
+
1083
+ PublicNetworkConfiguration.add_member(:ip_type, Shapes::ShapeRef.new(shape: IpType, required: true, location_name: "IpType"))
1084
+ PublicNetworkConfiguration.struct_class = Types::PublicNetworkConfiguration
1085
+
1043
1086
  Recipients.member = Shapes::ShapeRef.new(shape: EmailAddress)
1044
1087
 
1045
1088
  RegisterMemberToAddressListRequest.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
@@ -1133,9 +1176,11 @@ module Aws::MailManager
1133
1176
  RuleBooleanExpression.add_member(:operator, Shapes::ShapeRef.new(shape: RuleBooleanOperator, required: true, location_name: "Operator"))
1134
1177
  RuleBooleanExpression.struct_class = Types::RuleBooleanExpression
1135
1178
 
1179
+ RuleBooleanToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: Analysis, location_name: "Analysis"))
1136
1180
  RuleBooleanToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: RuleBooleanEmailAttribute, location_name: "Attribute"))
1137
1181
  RuleBooleanToEvaluate.add_member(:is_in_address_list, Shapes::ShapeRef.new(shape: RuleIsInAddressList, location_name: "IsInAddressList"))
1138
1182
  RuleBooleanToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1183
+ RuleBooleanToEvaluate.add_member_subclass(:analysis, Types::RuleBooleanToEvaluate::Analysis)
1139
1184
  RuleBooleanToEvaluate.add_member_subclass(:attribute, Types::RuleBooleanToEvaluate::Attribute)
1140
1185
  RuleBooleanToEvaluate.add_member_subclass(:is_in_address_list, Types::RuleBooleanToEvaluate::IsInAddressList)
1141
1186
  RuleBooleanToEvaluate.add_member_subclass(:unknown, Types::RuleBooleanToEvaluate::Unknown)
@@ -1207,9 +1252,11 @@ module Aws::MailManager
1207
1252
 
1208
1253
  RuleStringList.member = Shapes::ShapeRef.new(shape: RuleStringValue)
1209
1254
 
1255
+ RuleStringToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: Analysis, location_name: "Analysis"))
1210
1256
  RuleStringToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: RuleStringEmailAttribute, location_name: "Attribute"))
1211
1257
  RuleStringToEvaluate.add_member(:mime_header_attribute, Shapes::ShapeRef.new(shape: MimeHeaderAttribute, location_name: "MimeHeaderAttribute"))
1212
1258
  RuleStringToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1259
+ RuleStringToEvaluate.add_member_subclass(:analysis, Types::RuleStringToEvaluate::Analysis)
1213
1260
  RuleStringToEvaluate.add_member_subclass(:attribute, Types::RuleStringToEvaluate::Attribute)
1214
1261
  RuleStringToEvaluate.add_member_subclass(:mime_header_attribute, Types::RuleStringToEvaluate::MimeHeaderAttribute)
1215
1262
  RuleStringToEvaluate.add_member_subclass(:unknown, Types::RuleStringToEvaluate::Unknown)
@@ -657,6 +657,13 @@ module Aws::MailManager
657
657
  # A user friendly name for an ingress endpoint resource.
658
658
  # @return [String]
659
659
  #
660
+ # @!attribute [rw] network_configuration
661
+ # Specifies the network configuration for the ingress point. This
662
+ # allows you to create an IPv4-only, Dual-Stack, or PrivateLink type
663
+ # of ingress point. If not specified, the default network type is
664
+ # IPv4-only.
665
+ # @return [Types::NetworkConfiguration]
666
+ #
660
667
  # @!attribute [rw] rule_set_id
661
668
  # The identifier of an existing rule set that you attach to an ingress
662
669
  # endpoint resource.
@@ -683,6 +690,7 @@ module Aws::MailManager
683
690
  :client_token,
684
691
  :ingress_point_configuration,
685
692
  :ingress_point_name,
693
+ :network_configuration,
686
694
  :rule_set_id,
687
695
  :tags,
688
696
  :traffic_policy_id,
@@ -1717,6 +1725,10 @@ module Aws::MailManager
1717
1725
  # The timestamp of when the ingress endpoint was last updated.
1718
1726
  # @return [Time]
1719
1727
  #
1728
+ # @!attribute [rw] network_configuration
1729
+ # The network configuration for the ingress point.
1730
+ # @return [Types::NetworkConfiguration]
1731
+ #
1720
1732
  # @!attribute [rw] rule_set_id
1721
1733
  # The identifier of a rule set resource associated with the ingress
1722
1734
  # endpoint.
@@ -1745,6 +1757,7 @@ module Aws::MailManager
1745
1757
  :ingress_point_id,
1746
1758
  :ingress_point_name,
1747
1759
  :last_updated_timestamp,
1760
+ :network_configuration,
1748
1761
  :rule_set_id,
1749
1762
  :status,
1750
1763
  :traffic_policy_id,
@@ -2166,6 +2179,56 @@ module Aws::MailManager
2166
2179
  include Aws::Structure
2167
2180
  end
2168
2181
 
2182
+ # The union type representing the allowed types for the left hand side
2183
+ # of an IPv6 condition.
2184
+ #
2185
+ # @!attribute [rw] evaluate
2186
+ # The left hand side argument of an IPv6 condition expression.
2187
+ # @return [Types::IngressIpv6ToEvaluate]
2188
+ #
2189
+ # @!attribute [rw] operator
2190
+ # The matching operator for an IPv6 condition expression.
2191
+ # @return [String]
2192
+ #
2193
+ # @!attribute [rw] values
2194
+ # The right hand side argument of an IPv6 condition expression.
2195
+ # @return [Array<String>]
2196
+ #
2197
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressIpv6Expression AWS API Documentation
2198
+ #
2199
+ class IngressIpv6Expression < Struct.new(
2200
+ :evaluate,
2201
+ :operator,
2202
+ :values)
2203
+ SENSITIVE = []
2204
+ include Aws::Structure
2205
+ end
2206
+
2207
+ # The structure for an IPv6 based condition matching on the incoming
2208
+ # mail.
2209
+ #
2210
+ # @note IngressIpv6ToEvaluate is a union - when making an API calls you must set exactly one of the members.
2211
+ #
2212
+ # @note IngressIpv6ToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IngressIpv6ToEvaluate corresponding to the set member.
2213
+ #
2214
+ # @!attribute [rw] attribute
2215
+ # An enum type representing the allowed attribute types for an IPv6
2216
+ # condition.
2217
+ # @return [String]
2218
+ #
2219
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressIpv6ToEvaluate AWS API Documentation
2220
+ #
2221
+ class IngressIpv6ToEvaluate < Struct.new(
2222
+ :attribute,
2223
+ :unknown)
2224
+ SENSITIVE = []
2225
+ include Aws::Structure
2226
+ include Aws::Structure::Union
2227
+
2228
+ class Attribute < IngressIpv6ToEvaluate; end
2229
+ class Unknown < IngressIpv6ToEvaluate; end
2230
+ end
2231
+
2169
2232
  # The address lists and the address list attribute value that is
2170
2233
  # evaluated in a policy statement's conditional expression to either
2171
2234
  # deny or block the incoming email.
@@ -2330,6 +2393,11 @@ module Aws::MailManager
2330
2393
  #
2331
2394
  # @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
2395
  #
2396
+ # @!attribute [rw] analysis
2397
+ # The structure type for a string condition stating the Add On ARN and
2398
+ # its returned value.
2399
+ # @return [Types::IngressAnalysis]
2400
+ #
2333
2401
  # @!attribute [rw] attribute
2334
2402
  # The enum type representing the allowed attribute types for a string
2335
2403
  # condition.
@@ -2338,12 +2406,14 @@ module Aws::MailManager
2338
2406
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressStringToEvaluate AWS API Documentation
2339
2407
  #
2340
2408
  class IngressStringToEvaluate < Struct.new(
2409
+ :analysis,
2341
2410
  :attribute,
2342
2411
  :unknown)
2343
2412
  SENSITIVE = []
2344
2413
  include Aws::Structure
2345
2414
  include Aws::Structure::Union
2346
2415
 
2416
+ class Analysis < IngressStringToEvaluate; end
2347
2417
  class Attribute < IngressStringToEvaluate; end
2348
2418
  class Unknown < IngressStringToEvaluate; end
2349
2419
  end
@@ -3034,6 +3104,36 @@ module Aws::MailManager
3034
3104
  include Aws::Structure
3035
3105
  end
3036
3106
 
3107
+ # The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress
3108
+ # endpoint resource.
3109
+ #
3110
+ # @note NetworkConfiguration is a union - when making an API calls you must set exactly one of the members.
3111
+ #
3112
+ # @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.
3113
+ #
3114
+ # @!attribute [rw] private_network_configuration
3115
+ # Specifies the network configuration for the private ingress point.
3116
+ # @return [Types::PrivateNetworkConfiguration]
3117
+ #
3118
+ # @!attribute [rw] public_network_configuration
3119
+ # Specifies the network configuration for the public ingress point.
3120
+ # @return [Types::PublicNetworkConfiguration]
3121
+ #
3122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/NetworkConfiguration AWS API Documentation
3123
+ #
3124
+ class NetworkConfiguration < Struct.new(
3125
+ :private_network_configuration,
3126
+ :public_network_configuration,
3127
+ :unknown)
3128
+ SENSITIVE = []
3129
+ include Aws::Structure
3130
+ include Aws::Structure::Union
3131
+
3132
+ class PrivateNetworkConfiguration < NetworkConfiguration; end
3133
+ class PublicNetworkConfiguration < NetworkConfiguration; end
3134
+ class Unknown < NetworkConfiguration; end
3135
+ end
3136
+
3037
3137
  # Explicitly indicate that the relay destination server does not require
3038
3138
  # SMTP credential authentication.
3039
3139
  #
@@ -3062,6 +3162,12 @@ module Aws::MailManager
3062
3162
  # the 'Protocol' object against the 'Value'.
3063
3163
  # @return [Types::IngressIpv4Expression]
3064
3164
  #
3165
+ # @!attribute [rw] ipv_6_expression
3166
+ # This represents an IPv6 based condition matching on the incoming
3167
+ # mail. It performs the operation configured in 'Operator' and
3168
+ # evaluates the 'Protocol' object against the 'Value'.
3169
+ # @return [Types::IngressIpv6Expression]
3170
+ #
3065
3171
  # @!attribute [rw] string_expression
3066
3172
  # This represents a string based condition matching on the incoming
3067
3173
  # mail. It performs the string operation configured in 'Operator'
@@ -3079,6 +3185,7 @@ module Aws::MailManager
3079
3185
  class PolicyCondition < Struct.new(
3080
3186
  :boolean_expression,
3081
3187
  :ip_expression,
3188
+ :ipv_6_expression,
3082
3189
  :string_expression,
3083
3190
  :tls_expression,
3084
3191
  :unknown)
@@ -3088,6 +3195,7 @@ module Aws::MailManager
3088
3195
 
3089
3196
  class BooleanExpression < PolicyCondition; end
3090
3197
  class IpExpression < PolicyCondition; end
3198
+ class Ipv6Expression < PolicyCondition; end
3091
3199
  class StringExpression < PolicyCondition; end
3092
3200
  class TlsExpression < PolicyCondition; end
3093
3201
  class Unknown < PolicyCondition; end
@@ -3114,6 +3222,36 @@ module Aws::MailManager
3114
3222
  include Aws::Structure
3115
3223
  end
3116
3224
 
3225
+ # Specifies the network configuration for the private ingress point.
3226
+ #
3227
+ # @!attribute [rw] vpc_endpoint_id
3228
+ # The identifier of the VPC endpoint to associate with this private
3229
+ # ingress point.
3230
+ # @return [String]
3231
+ #
3232
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/PrivateNetworkConfiguration AWS API Documentation
3233
+ #
3234
+ class PrivateNetworkConfiguration < Struct.new(
3235
+ :vpc_endpoint_id)
3236
+ SENSITIVE = []
3237
+ include Aws::Structure
3238
+ end
3239
+
3240
+ # Specifies the network configuration for the public ingress point.
3241
+ #
3242
+ # @!attribute [rw] ip_type
3243
+ # The IP address type for the public ingress point. Valid values are
3244
+ # IPV4 and DUAL\_STACK.
3245
+ # @return [String]
3246
+ #
3247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/PublicNetworkConfiguration AWS API Documentation
3248
+ #
3249
+ class PublicNetworkConfiguration < Struct.new(
3250
+ :ip_type)
3251
+ SENSITIVE = []
3252
+ include Aws::Structure
3253
+ end
3254
+
3117
3255
  # @!attribute [rw] address
3118
3256
  # The address to be added to the address list.
3119
3257
  # @return [String]
@@ -3509,6 +3647,11 @@ module Aws::MailManager
3509
3647
  #
3510
3648
  # @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.
3511
3649
  #
3650
+ # @!attribute [rw] analysis
3651
+ # The Add On ARN and its returned value to evaluate in a boolean
3652
+ # condition expression.
3653
+ # @return [Types::Analysis]
3654
+ #
3512
3655
  # @!attribute [rw] attribute
3513
3656
  # The boolean type representing the allowed attribute types for an
3514
3657
  # email.
@@ -3522,6 +3665,7 @@ module Aws::MailManager
3522
3665
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleBooleanToEvaluate AWS API Documentation
3523
3666
  #
3524
3667
  class RuleBooleanToEvaluate < Struct.new(
3668
+ :analysis,
3525
3669
  :attribute,
3526
3670
  :is_in_address_list,
3527
3671
  :unknown)
@@ -3529,6 +3673,7 @@ module Aws::MailManager
3529
3673
  include Aws::Structure
3530
3674
  include Aws::Structure::Union
3531
3675
 
3676
+ class Analysis < RuleBooleanToEvaluate; end
3532
3677
  class Attribute < RuleBooleanToEvaluate; end
3533
3678
  class IsInAddressList < RuleBooleanToEvaluate; end
3534
3679
  class Unknown < RuleBooleanToEvaluate; end
@@ -3801,6 +3946,11 @@ module Aws::MailManager
3801
3946
  #
3802
3947
  # @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.
3803
3948
  #
3949
+ # @!attribute [rw] analysis
3950
+ # The Add On ARN and its returned value to evaluate in a string
3951
+ # condition expression.
3952
+ # @return [Types::Analysis]
3953
+ #
3804
3954
  # @!attribute [rw] attribute
3805
3955
  # The email attribute to evaluate in a string condition expression.
3806
3956
  # @return [String]
@@ -3813,6 +3963,7 @@ module Aws::MailManager
3813
3963
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleStringToEvaluate AWS API Documentation
3814
3964
  #
3815
3965
  class RuleStringToEvaluate < Struct.new(
3966
+ :analysis,
3816
3967
  :attribute,
3817
3968
  :mime_header_attribute,
3818
3969
  :unknown)
@@ -3820,6 +3971,7 @@ module Aws::MailManager
3820
3971
  include Aws::Structure
3821
3972
  include Aws::Structure::Union
3822
3973
 
3974
+ class Analysis < RuleStringToEvaluate; end
3823
3975
  class Attribute < RuleStringToEvaluate; end
3824
3976
  class MimeHeaderAttribute < RuleStringToEvaluate; end
3825
3977
  class Unknown < RuleStringToEvaluate; end
@@ -54,7 +54,7 @@ module Aws::MailManager
54
54
  autoload :EndpointProvider, 'aws-sdk-mailmanager/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mailmanager/endpoints'
56
56
 
57
- GEM_VERSION = '1.21.0'
57
+ GEM_VERSION = '1.23.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -178,6 +178,14 @@ module Aws
178
178
  smtp_password: ::String?
179
179
  },
180
180
  ingress_point_name: ::String,
181
+ ?network_configuration: {
182
+ private_network_configuration: {
183
+ vpc_endpoint_id: ::String
184
+ }?,
185
+ public_network_configuration: {
186
+ ip_type: ("IPV4" | "DUAL_STACK")
187
+ }?
188
+ },
181
189
  rule_set_id: ::String,
182
190
  ?tags: Array[
183
191
  {
@@ -272,6 +280,10 @@ module Aws
272
280
  {
273
281
  boolean_expression: {
274
282
  evaluate: {
283
+ analysis: {
284
+ analyzer: ::String,
285
+ result_field: ::String
286
+ }?,
275
287
  attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
276
288
  is_in_address_list: {
277
289
  address_lists: Array[::String],
@@ -300,6 +312,10 @@ module Aws
300
312
  }?,
301
313
  string_expression: {
302
314
  evaluate: {
315
+ analysis: {
316
+ analyzer: ::String,
317
+ result_field: ::String
318
+ }?,
303
319
  attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
304
320
  mime_header_attribute: ::String?
305
321
  },
@@ -324,6 +340,10 @@ module Aws
324
340
  {
325
341
  boolean_expression: {
326
342
  evaluate: {
343
+ analysis: {
344
+ analyzer: ::String,
345
+ result_field: ::String
346
+ }?,
327
347
  attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
328
348
  is_in_address_list: {
329
349
  address_lists: Array[::String],
@@ -352,6 +372,10 @@ module Aws
352
372
  }?,
353
373
  string_expression: {
354
374
  evaluate: {
375
+ analysis: {
376
+ analyzer: ::String,
377
+ result_field: ::String
378
+ }?,
355
379
  attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
356
380
  mime_header_attribute: ::String?
357
381
  },
@@ -416,8 +440,19 @@ module Aws
416
440
  operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
417
441
  values: Array[::String]
418
442
  }?,
443
+ ipv_6_expression: {
444
+ evaluate: {
445
+ attribute: ("SENDER_IPV6")?
446
+ },
447
+ operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
448
+ values: Array[::String]
449
+ }?,
419
450
  string_expression: {
420
451
  evaluate: {
452
+ analysis: {
453
+ analyzer: ::String,
454
+ result_field: ::String
455
+ }?,
421
456
  attribute: ("RECIPIENT")?
422
457
  },
423
458
  operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
@@ -674,6 +709,7 @@ module Aws
674
709
  def ingress_point_id: () -> ::String
675
710
  def ingress_point_name: () -> ::String
676
711
  def last_updated_timestamp: () -> ::Time
712
+ def network_configuration: () -> Types::NetworkConfiguration
677
713
  def rule_set_id: () -> ::String
678
714
  def status: () -> ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
679
715
  def traffic_policy_id: () -> ::String
@@ -1186,6 +1222,10 @@ module Aws
1186
1222
  {
1187
1223
  boolean_expression: {
1188
1224
  evaluate: {
1225
+ analysis: {
1226
+ analyzer: ::String,
1227
+ result_field: ::String
1228
+ }?,
1189
1229
  attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
1190
1230
  is_in_address_list: {
1191
1231
  address_lists: Array[::String],
@@ -1214,6 +1254,10 @@ module Aws
1214
1254
  }?,
1215
1255
  string_expression: {
1216
1256
  evaluate: {
1257
+ analysis: {
1258
+ analyzer: ::String,
1259
+ result_field: ::String
1260
+ }?,
1217
1261
  attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
1218
1262
  mime_header_attribute: ::String?
1219
1263
  },
@@ -1238,6 +1282,10 @@ module Aws
1238
1282
  {
1239
1283
  boolean_expression: {
1240
1284
  evaluate: {
1285
+ analysis: {
1286
+ analyzer: ::String,
1287
+ result_field: ::String
1288
+ }?,
1241
1289
  attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")?,
1242
1290
  is_in_address_list: {
1243
1291
  address_lists: Array[::String],
@@ -1266,6 +1314,10 @@ module Aws
1266
1314
  }?,
1267
1315
  string_expression: {
1268
1316
  evaluate: {
1317
+ analysis: {
1318
+ analyzer: ::String,
1319
+ result_field: ::String
1320
+ }?,
1269
1321
  attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")?,
1270
1322
  mime_header_attribute: ::String?
1271
1323
  },
@@ -1322,8 +1374,19 @@ module Aws
1322
1374
  operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
1323
1375
  values: Array[::String]
1324
1376
  }?,
1377
+ ipv_6_expression: {
1378
+ evaluate: {
1379
+ attribute: ("SENDER_IPV6")?
1380
+ },
1381
+ operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
1382
+ values: Array[::String]
1383
+ }?,
1325
1384
  string_expression: {
1326
1385
  evaluate: {
1386
+ analysis: {
1387
+ analyzer: ::String,
1388
+ result_field: ::String
1389
+ }?,
1327
1390
  attribute: ("RECIPIENT")?
1328
1391
  },
1329
1392
  operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
data/sig/types.rbs CHANGED
@@ -209,6 +209,7 @@ module Aws::MailManager
209
209
  attr_accessor client_token: ::String
210
210
  attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
211
211
  attr_accessor ingress_point_name: ::String
212
+ attr_accessor network_configuration: Types::NetworkConfiguration
212
213
  attr_accessor rule_set_id: ::String
213
214
  attr_accessor tags: ::Array[Types::Tag]
214
215
  attr_accessor traffic_policy_id: ::String
@@ -540,6 +541,7 @@ module Aws::MailManager
540
541
  attr_accessor ingress_point_id: ::String
541
542
  attr_accessor ingress_point_name: ::String
542
543
  attr_accessor last_updated_timestamp: ::Time
544
+ attr_accessor network_configuration: Types::NetworkConfiguration
543
545
  attr_accessor rule_set_id: ::String
544
546
  attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
545
547
  attr_accessor traffic_policy_id: ::String
@@ -673,6 +675,24 @@ module Aws::MailManager
673
675
  SENSITIVE: []
674
676
  end
675
677
 
678
+ class IngressIpv6Expression
679
+ attr_accessor evaluate: Types::IngressIpv6ToEvaluate
680
+ attr_accessor operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES")
681
+ attr_accessor values: ::Array[::String]
682
+ SENSITIVE: []
683
+ end
684
+
685
+ class IngressIpv6ToEvaluate
686
+ attr_accessor attribute: ("SENDER_IPV6")
687
+ attr_accessor unknown: untyped
688
+ SENSITIVE: []
689
+
690
+ class Attribute < IngressIpv6ToEvaluate
691
+ end
692
+ class Unknown < IngressIpv6ToEvaluate
693
+ end
694
+ end
695
+
676
696
  class IngressIsInAddressList
677
697
  attr_accessor address_lists: ::Array[::String]
678
698
  attr_accessor attribute: ("RECIPIENT")
@@ -723,10 +743,13 @@ module Aws::MailManager
723
743
  end
724
744
 
725
745
  class IngressStringToEvaluate
746
+ attr_accessor analysis: Types::IngressAnalysis
726
747
  attr_accessor attribute: ("RECIPIENT")
727
748
  attr_accessor unknown: untyped
728
749
  SENSITIVE: []
729
750
 
751
+ class Analysis < IngressStringToEvaluate
752
+ end
730
753
  class Attribute < IngressStringToEvaluate
731
754
  end
732
755
  class Unknown < IngressStringToEvaluate
@@ -934,12 +957,27 @@ module Aws::MailManager
934
957
  SENSITIVE: [:sender_ip_address]
935
958
  end
936
959
 
960
+ class NetworkConfiguration
961
+ attr_accessor private_network_configuration: Types::PrivateNetworkConfiguration
962
+ attr_accessor public_network_configuration: Types::PublicNetworkConfiguration
963
+ attr_accessor unknown: untyped
964
+ SENSITIVE: []
965
+
966
+ class PrivateNetworkConfiguration < NetworkConfiguration
967
+ end
968
+ class PublicNetworkConfiguration < NetworkConfiguration
969
+ end
970
+ class Unknown < NetworkConfiguration
971
+ end
972
+ end
973
+
937
974
  class NoAuthentication < Aws::EmptyStructure
938
975
  end
939
976
 
940
977
  class PolicyCondition
941
978
  attr_accessor boolean_expression: Types::IngressBooleanExpression
942
979
  attr_accessor ip_expression: Types::IngressIpv4Expression
980
+ attr_accessor ipv_6_expression: Types::IngressIpv6Expression
943
981
  attr_accessor string_expression: Types::IngressStringExpression
944
982
  attr_accessor tls_expression: Types::IngressTlsProtocolExpression
945
983
  attr_accessor unknown: untyped
@@ -949,6 +987,8 @@ module Aws::MailManager
949
987
  end
950
988
  class IpExpression < PolicyCondition
951
989
  end
990
+ class Ipv6Expression < PolicyCondition
991
+ end
952
992
  class StringExpression < PolicyCondition
953
993
  end
954
994
  class TlsExpression < PolicyCondition
@@ -963,6 +1003,16 @@ module Aws::MailManager
963
1003
  SENSITIVE: []
964
1004
  end
965
1005
 
1006
+ class PrivateNetworkConfiguration
1007
+ attr_accessor vpc_endpoint_id: ::String
1008
+ SENSITIVE: []
1009
+ end
1010
+
1011
+ class PublicNetworkConfiguration
1012
+ attr_accessor ip_type: ("IPV4" | "DUAL_STACK")
1013
+ SENSITIVE: []
1014
+ end
1015
+
966
1016
  class RegisterMemberToAddressListRequest
967
1017
  attr_accessor address: ::String
968
1018
  attr_accessor address_list_id: ::String
@@ -1083,11 +1133,14 @@ module Aws::MailManager
1083
1133
  end
1084
1134
 
1085
1135
  class RuleBooleanToEvaluate
1136
+ attr_accessor analysis: Types::Analysis
1086
1137
  attr_accessor attribute: ("READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED")
1087
1138
  attr_accessor is_in_address_list: Types::RuleIsInAddressList
1088
1139
  attr_accessor unknown: untyped
1089
1140
  SENSITIVE: []
1090
1141
 
1142
+ class Analysis < RuleBooleanToEvaluate
1143
+ end
1091
1144
  class Attribute < RuleBooleanToEvaluate
1092
1145
  end
1093
1146
  class IsInAddressList < RuleBooleanToEvaluate
@@ -1185,11 +1238,14 @@ module Aws::MailManager
1185
1238
  end
1186
1239
 
1187
1240
  class RuleStringToEvaluate
1241
+ attr_accessor analysis: Types::Analysis
1188
1242
  attr_accessor attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")
1189
1243
  attr_accessor mime_header_attribute: ::String
1190
1244
  attr_accessor unknown: untyped
1191
1245
  SENSITIVE: []
1192
1246
 
1247
+ class Analysis < RuleStringToEvaluate
1248
+ end
1193
1249
  class Attribute < RuleStringToEvaluate
1194
1250
  end
1195
1251
  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.21.0
4
+ version: 1.23.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-02-19 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core