aws-sdk-mailmanager 1.22.0 → 1.24.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: 11663b377dc2310408f591deab3e2f9dbaa09024104d558d07a1ec032c01334d
4
- data.tar.gz: a2566a7bd0c46aefafb52d5d2e39ca23587b6247fdf618f86c35a4a4c694dd63
3
+ metadata.gz: 9aeb764542156ce410da78470791763fcd21729b5cb829d23190ada7baa1e37c
4
+ data.tar.gz: d705a58e28d3aa29cbd74a4144bbba6b764931bea78fd1ae08e122fe8cd39826
5
5
  SHA512:
6
- metadata.gz: 0a67f4885d75b320d293e054a99e463b01263b336014785b1a722a28bb2ed95f6d15c0814af4217b655e7e17e42588fa1e6562f5e277172e755be7be34571977
7
- data.tar.gz: 6f6f9d7e181f841c5c7933d5bdad7310598ddf7003fcbbd3f0a23516a7e8e5bc2309bd2eeb36c3586dc32afe3e6ba7e6d103af3e253e1975924bc2f9acdfcff2
6
+ metadata.gz: db51290d53ca44a6299c9f9fae881f754b446e6f1d9edfac076c5a5d01bf8e55731f4834f359339dfbac361bbc4e3d38a8dea21dab680f45da2120525544fbc4
7
+ data.tar.gz: 2a2d1417448a6138acad0e853d6373ea8b71a64b5acf97fff6a12cce362b8141c26087273fb20273372d147de44badc5264267a7ba661cc507caf83fdc7df7b2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.24.0 (2025-04-30)
5
+ ------------------
6
+
7
+ * Feature - Introducing new RuleSet rule PublishToSns action, which allows customers to publish email notifications to an Amazon SNS topic. New PublishToSns action enables customers to easily integrate their email workflows via Amazon SNS, allowing them to notify other systems about important email events.
8
+
9
+ 1.23.0 (2025-04-03)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.22.0 (2025-03-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.24.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
  # {
@@ -919,6 +932,13 @@ module Aws::MailManager
919
932
  # },
920
933
  # drop: {
921
934
  # },
935
+ # publish_to_sns: {
936
+ # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
937
+ # encoding: "UTF-8", # accepts UTF-8, BASE64
938
+ # payload_type: "HEADERS", # accepts HEADERS, CONTENT
939
+ # role_arn: "IamRoleArn", # required
940
+ # topic_arn: "SnsTopicArn", # required
941
+ # },
922
942
  # relay: {
923
943
  # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
924
944
  # mail_from: "REPLACE", # accepts REPLACE, PRESERVE
@@ -1146,6 +1166,13 @@ module Aws::MailManager
1146
1166
  # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
1147
1167
  # values: ["Ipv4Cidr"], # required
1148
1168
  # },
1169
+ # ipv_6_expression: {
1170
+ # evaluate: { # required
1171
+ # attribute: "SENDER_IPV6", # accepts SENDER_IPV6
1172
+ # },
1173
+ # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
1174
+ # values: ["Ipv6Cidr"], # required
1175
+ # },
1149
1176
  # string_expression: {
1150
1177
  # evaluate: { # required
1151
1178
  # analysis: {
@@ -1849,6 +1876,7 @@ module Aws::MailManager
1849
1876
  # * {Types::GetIngressPointResponse#ingress_point_id #ingress_point_id} => String
1850
1877
  # * {Types::GetIngressPointResponse#ingress_point_name #ingress_point_name} => String
1851
1878
  # * {Types::GetIngressPointResponse#last_updated_timestamp #last_updated_timestamp} => Time
1879
+ # * {Types::GetIngressPointResponse#network_configuration #network_configuration} => Types::NetworkConfiguration
1852
1880
  # * {Types::GetIngressPointResponse#rule_set_id #rule_set_id} => String
1853
1881
  # * {Types::GetIngressPointResponse#status #status} => String
1854
1882
  # * {Types::GetIngressPointResponse#traffic_policy_id #traffic_policy_id} => String
@@ -1872,6 +1900,8 @@ module Aws::MailManager
1872
1900
  # resp.ingress_point_id #=> String
1873
1901
  # resp.ingress_point_name #=> String
1874
1902
  # resp.last_updated_timestamp #=> Time
1903
+ # resp.network_configuration.private_network_configuration.vpc_endpoint_id #=> String
1904
+ # resp.network_configuration.public_network_configuration.ip_type #=> String, one of "IPV4", "DUAL_STACK"
1875
1905
  # resp.rule_set_id #=> String
1876
1906
  # resp.status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED"
1877
1907
  # resp.traffic_policy_id #=> String
@@ -2003,6 +2033,11 @@ module Aws::MailManager
2003
2033
  # resp.rules[0].actions[0].deliver_to_q_business.application_id #=> String
2004
2034
  # resp.rules[0].actions[0].deliver_to_q_business.index_id #=> String
2005
2035
  # resp.rules[0].actions[0].deliver_to_q_business.role_arn #=> String
2036
+ # resp.rules[0].actions[0].publish_to_sns.action_failure_policy #=> String, one of "CONTINUE", "DROP"
2037
+ # resp.rules[0].actions[0].publish_to_sns.encoding #=> String, one of "UTF-8", "BASE64"
2038
+ # resp.rules[0].actions[0].publish_to_sns.payload_type #=> String, one of "HEADERS", "CONTENT"
2039
+ # resp.rules[0].actions[0].publish_to_sns.role_arn #=> String
2040
+ # resp.rules[0].actions[0].publish_to_sns.topic_arn #=> String
2006
2041
  # resp.rules[0].actions[0].relay.action_failure_policy #=> String, one of "CONTINUE", "DROP"
2007
2042
  # resp.rules[0].actions[0].relay.mail_from #=> String, one of "REPLACE", "PRESERVE"
2008
2043
  # resp.rules[0].actions[0].relay.relay #=> String
@@ -2129,6 +2164,10 @@ module Aws::MailManager
2129
2164
  # resp.policy_statements[0].conditions[0].ip_expression.operator #=> String, one of "CIDR_MATCHES", "NOT_CIDR_MATCHES"
2130
2165
  # resp.policy_statements[0].conditions[0].ip_expression.values #=> Array
2131
2166
  # resp.policy_statements[0].conditions[0].ip_expression.values[0] #=> String
2167
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.evaluate.attribute #=> String, one of "SENDER_IPV6"
2168
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.operator #=> String, one of "CIDR_MATCHES", "NOT_CIDR_MATCHES"
2169
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.values #=> Array
2170
+ # resp.policy_statements[0].conditions[0].ipv_6_expression.values[0] #=> String
2132
2171
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
2133
2172
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
2134
2173
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.attribute #=> String, one of "RECIPIENT"
@@ -3239,6 +3278,13 @@ module Aws::MailManager
3239
3278
  # },
3240
3279
  # drop: {
3241
3280
  # },
3281
+ # publish_to_sns: {
3282
+ # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
3283
+ # encoding: "UTF-8", # accepts UTF-8, BASE64
3284
+ # payload_type: "HEADERS", # accepts HEADERS, CONTENT
3285
+ # role_arn: "IamRoleArn", # required
3286
+ # topic_arn: "SnsTopicArn", # required
3287
+ # },
3242
3288
  # relay: {
3243
3289
  # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
3244
3290
  # mail_from: "REPLACE", # accepts REPLACE, PRESERVE
@@ -3444,6 +3490,13 @@ module Aws::MailManager
3444
3490
  # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
3445
3491
  # values: ["Ipv4Cidr"], # required
3446
3492
  # },
3493
+ # ipv_6_expression: {
3494
+ # evaluate: { # required
3495
+ # attribute: "SENDER_IPV6", # accepts SENDER_IPV6
3496
+ # },
3497
+ # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
3498
+ # values: ["Ipv6Cidr"], # required
3499
+ # },
3447
3500
  # string_expression: {
3448
3501
  # evaluate: { # required
3449
3502
  # analysis: {
@@ -3497,7 +3550,7 @@ module Aws::MailManager
3497
3550
  tracer: tracer
3498
3551
  )
3499
3552
  context[:gem_name] = 'aws-sdk-mailmanager'
3500
- context[:gem_version] = '1.22.0'
3553
+ context[:gem_version] = '1.24.0'
3501
3554
  Seahorse::Client::Request.new(handlers, context)
3502
3555
  end
3503
3556
 
@@ -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')
@@ -316,6 +325,10 @@ module Aws::MailManager
316
325
  SenderIpAddress = Shapes::StringShape.new(name: 'SenderIpAddress')
317
326
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
318
327
  SmtpPassword = Shapes::StringShape.new(name: 'SmtpPassword')
328
+ SnsAction = Shapes::StructureShape.new(name: 'SnsAction')
329
+ SnsNotificationEncoding = Shapes::StringShape.new(name: 'SnsNotificationEncoding')
330
+ SnsNotificationPayloadType = Shapes::StringShape.new(name: 'SnsNotificationPayloadType')
331
+ SnsTopicArn = Shapes::StringShape.new(name: 'SnsTopicArn')
319
332
  StartAddressListImportJobRequest = Shapes::StructureShape.new(name: 'StartAddressListImportJobRequest')
320
333
  StartAddressListImportJobResponse = Shapes::StructureShape.new(name: 'StartAddressListImportJobResponse')
321
334
  StartArchiveExportRequest = Shapes::StructureShape.new(name: 'StartArchiveExportRequest')
@@ -360,6 +373,7 @@ module Aws::MailManager
360
373
  UpdateTrafficPolicyRequest = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyRequest')
361
374
  UpdateTrafficPolicyResponse = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyResponse')
362
375
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
376
+ VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
363
377
 
364
378
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
365
379
  AccessDeniedException.struct_class = Types::AccessDeniedException
@@ -504,6 +518,7 @@ module Aws::MailManager
504
518
  CreateIngressPointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
505
519
  CreateIngressPointRequest.add_member(:ingress_point_configuration, Shapes::ShapeRef.new(shape: IngressPointConfiguration, location_name: "IngressPointConfiguration"))
506
520
  CreateIngressPointRequest.add_member(:ingress_point_name, Shapes::ShapeRef.new(shape: IngressPointName, required: true, location_name: "IngressPointName"))
521
+ CreateIngressPointRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "NetworkConfiguration"))
507
522
  CreateIngressPointRequest.add_member(:rule_set_id, Shapes::ShapeRef.new(shape: RuleSetId, required: true, location_name: "RuleSetId"))
508
523
  CreateIngressPointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
509
524
  CreateIngressPointRequest.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, required: true, location_name: "TrafficPolicyId"))
@@ -738,6 +753,7 @@ module Aws::MailManager
738
753
  GetIngressPointResponse.add_member(:ingress_point_id, Shapes::ShapeRef.new(shape: IngressPointId, required: true, location_name: "IngressPointId"))
739
754
  GetIngressPointResponse.add_member(:ingress_point_name, Shapes::ShapeRef.new(shape: IngressPointName, required: true, location_name: "IngressPointName"))
740
755
  GetIngressPointResponse.add_member(:last_updated_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTimestamp"))
756
+ GetIngressPointResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "NetworkConfiguration"))
741
757
  GetIngressPointResponse.add_member(:rule_set_id, Shapes::ShapeRef.new(shape: RuleSetId, location_name: "RuleSetId"))
742
758
  GetIngressPointResponse.add_member(:status, Shapes::ShapeRef.new(shape: IngressPointStatus, location_name: "Status"))
743
759
  GetIngressPointResponse.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
@@ -837,6 +853,17 @@ module Aws::MailManager
837
853
  IngressIpv4Expression.add_member(:values, Shapes::ShapeRef.new(shape: Ipv4Cidrs, required: true, location_name: "Values"))
838
854
  IngressIpv4Expression.struct_class = Types::IngressIpv4Expression
839
855
 
856
+ IngressIpv6Expression.add_member(:evaluate, Shapes::ShapeRef.new(shape: IngressIpv6ToEvaluate, required: true, location_name: "Evaluate"))
857
+ IngressIpv6Expression.add_member(:operator, Shapes::ShapeRef.new(shape: IngressIpOperator, required: true, location_name: "Operator"))
858
+ IngressIpv6Expression.add_member(:values, Shapes::ShapeRef.new(shape: Ipv6Cidrs, required: true, location_name: "Values"))
859
+ IngressIpv6Expression.struct_class = Types::IngressIpv6Expression
860
+
861
+ IngressIpv6ToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: IngressIpv6Attribute, location_name: "Attribute"))
862
+ IngressIpv6ToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
863
+ IngressIpv6ToEvaluate.add_member_subclass(:attribute, Types::IngressIpv6ToEvaluate::Attribute)
864
+ IngressIpv6ToEvaluate.add_member_subclass(:unknown, Types::IngressIpv6ToEvaluate::Unknown)
865
+ IngressIpv6ToEvaluate.struct_class = Types::IngressIpv6ToEvaluate
866
+
840
867
  IngressIsInAddressList.add_member(:address_lists, Shapes::ShapeRef.new(shape: IngressAddressListArnList, required: true, location_name: "AddressLists"))
841
868
  IngressIsInAddressList.add_member(:attribute, Shapes::ShapeRef.new(shape: IngressAddressListEmailAttribute, required: true, location_name: "Attribute"))
842
869
  IngressIsInAddressList.struct_class = Types::IngressIsInAddressList
@@ -893,6 +920,8 @@ module Aws::MailManager
893
920
 
894
921
  Ipv4Cidrs.member = Shapes::ShapeRef.new(shape: Ipv4Cidr)
895
922
 
923
+ Ipv6Cidrs.member = Shapes::ShapeRef.new(shape: Ipv6Cidr)
924
+
896
925
  ListAddonInstancesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
897
926
  ListAddonInstancesRequest.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
898
927
  ListAddonInstancesRequest.struct_class = Types::ListAddonInstancesRequest
@@ -1020,15 +1049,25 @@ module Aws::MailManager
1020
1049
  Metadata.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
1021
1050
  Metadata.struct_class = Types::Metadata
1022
1051
 
1052
+ NetworkConfiguration.add_member(:private_network_configuration, Shapes::ShapeRef.new(shape: PrivateNetworkConfiguration, location_name: "PrivateNetworkConfiguration"))
1053
+ NetworkConfiguration.add_member(:public_network_configuration, Shapes::ShapeRef.new(shape: PublicNetworkConfiguration, location_name: "PublicNetworkConfiguration"))
1054
+ NetworkConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1055
+ NetworkConfiguration.add_member_subclass(:private_network_configuration, Types::NetworkConfiguration::PrivateNetworkConfiguration)
1056
+ NetworkConfiguration.add_member_subclass(:public_network_configuration, Types::NetworkConfiguration::PublicNetworkConfiguration)
1057
+ NetworkConfiguration.add_member_subclass(:unknown, Types::NetworkConfiguration::Unknown)
1058
+ NetworkConfiguration.struct_class = Types::NetworkConfiguration
1059
+
1023
1060
  NoAuthentication.struct_class = Types::NoAuthentication
1024
1061
 
1025
1062
  PolicyCondition.add_member(:boolean_expression, Shapes::ShapeRef.new(shape: IngressBooleanExpression, location_name: "BooleanExpression"))
1026
1063
  PolicyCondition.add_member(:ip_expression, Shapes::ShapeRef.new(shape: IngressIpv4Expression, location_name: "IpExpression"))
1064
+ PolicyCondition.add_member(:ipv_6_expression, Shapes::ShapeRef.new(shape: IngressIpv6Expression, location_name: "Ipv6Expression"))
1027
1065
  PolicyCondition.add_member(:string_expression, Shapes::ShapeRef.new(shape: IngressStringExpression, location_name: "StringExpression"))
1028
1066
  PolicyCondition.add_member(:tls_expression, Shapes::ShapeRef.new(shape: IngressTlsProtocolExpression, location_name: "TlsExpression"))
1029
1067
  PolicyCondition.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1030
1068
  PolicyCondition.add_member_subclass(:boolean_expression, Types::PolicyCondition::BooleanExpression)
1031
1069
  PolicyCondition.add_member_subclass(:ip_expression, Types::PolicyCondition::IpExpression)
1070
+ PolicyCondition.add_member_subclass(:ipv_6_expression, Types::PolicyCondition::Ipv6Expression)
1032
1071
  PolicyCondition.add_member_subclass(:string_expression, Types::PolicyCondition::StringExpression)
1033
1072
  PolicyCondition.add_member_subclass(:tls_expression, Types::PolicyCondition::TlsExpression)
1034
1073
  PolicyCondition.add_member_subclass(:unknown, Types::PolicyCondition::Unknown)
@@ -1042,6 +1081,12 @@ module Aws::MailManager
1042
1081
 
1043
1082
  PolicyStatementList.member = Shapes::ShapeRef.new(shape: PolicyStatement)
1044
1083
 
1084
+ PrivateNetworkConfiguration.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, required: true, location_name: "VpcEndpointId"))
1085
+ PrivateNetworkConfiguration.struct_class = Types::PrivateNetworkConfiguration
1086
+
1087
+ PublicNetworkConfiguration.add_member(:ip_type, Shapes::ShapeRef.new(shape: IpType, required: true, location_name: "IpType"))
1088
+ PublicNetworkConfiguration.struct_class = Types::PublicNetworkConfiguration
1089
+
1045
1090
  Recipients.member = Shapes::ShapeRef.new(shape: EmailAddress)
1046
1091
 
1047
1092
  RegisterMemberToAddressListRequest.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
@@ -1110,6 +1155,7 @@ module Aws::MailManager
1110
1155
  RuleAction.add_member(:deliver_to_mailbox, Shapes::ShapeRef.new(shape: DeliverToMailboxAction, location_name: "DeliverToMailbox"))
1111
1156
  RuleAction.add_member(:deliver_to_q_business, Shapes::ShapeRef.new(shape: DeliverToQBusinessAction, location_name: "DeliverToQBusiness"))
1112
1157
  RuleAction.add_member(:drop, Shapes::ShapeRef.new(shape: DropAction, location_name: "Drop"))
1158
+ RuleAction.add_member(:publish_to_sns, Shapes::ShapeRef.new(shape: SnsAction, location_name: "PublishToSns"))
1113
1159
  RuleAction.add_member(:relay, Shapes::ShapeRef.new(shape: RelayAction, location_name: "Relay"))
1114
1160
  RuleAction.add_member(:replace_recipient, Shapes::ShapeRef.new(shape: ReplaceRecipientAction, location_name: "ReplaceRecipient"))
1115
1161
  RuleAction.add_member(:send, Shapes::ShapeRef.new(shape: SendAction, location_name: "Send"))
@@ -1120,6 +1166,7 @@ module Aws::MailManager
1120
1166
  RuleAction.add_member_subclass(:deliver_to_mailbox, Types::RuleAction::DeliverToMailbox)
1121
1167
  RuleAction.add_member_subclass(:deliver_to_q_business, Types::RuleAction::DeliverToQBusiness)
1122
1168
  RuleAction.add_member_subclass(:drop, Types::RuleAction::Drop)
1169
+ RuleAction.add_member_subclass(:publish_to_sns, Types::RuleAction::PublishToSns)
1123
1170
  RuleAction.add_member_subclass(:relay, Types::RuleAction::Relay)
1124
1171
  RuleAction.add_member_subclass(:replace_recipient, Types::RuleAction::ReplaceRecipient)
1125
1172
  RuleAction.add_member_subclass(:send, Types::RuleAction::Send)
@@ -1273,6 +1320,13 @@ module Aws::MailManager
1273
1320
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
1274
1321
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
1275
1322
 
1323
+ SnsAction.add_member(:action_failure_policy, Shapes::ShapeRef.new(shape: ActionFailurePolicy, location_name: "ActionFailurePolicy"))
1324
+ SnsAction.add_member(:encoding, Shapes::ShapeRef.new(shape: SnsNotificationEncoding, location_name: "Encoding"))
1325
+ SnsAction.add_member(:payload_type, Shapes::ShapeRef.new(shape: SnsNotificationPayloadType, location_name: "PayloadType"))
1326
+ SnsAction.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "RoleArn"))
1327
+ SnsAction.add_member(:topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, required: true, location_name: "TopicArn"))
1328
+ SnsAction.struct_class = Types::SnsAction
1329
+
1276
1330
  StartAddressListImportJobRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "JobId"))
1277
1331
  StartAddressListImportJobRequest.struct_class = Types::StartAddressListImportJobRequest
1278
1332
 
@@ -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,
@@ -1036,7 +1044,7 @@ module Aws::MailManager
1036
1044
  # A policy that states what to do in the case of failure. The action
1037
1045
  # will fail if there are configuration errors. For example, the
1038
1046
  # specified application has been deleted or the role lacks necessary
1039
- # permissions to call the qbusiness:BatchPutDocument API.
1047
+ # permissions to call the `qbusiness:BatchPutDocument` API.
1040
1048
  # @return [String]
1041
1049
  #
1042
1050
  # @!attribute [rw] application_id
@@ -1053,7 +1061,8 @@ module Aws::MailManager
1053
1061
  # @!attribute [rw] role_arn
1054
1062
  # The Amazon Resource Name (ARN) of the IAM Role to use while
1055
1063
  # delivering to Amazon Q Business. This role must have access to the
1056
- # qbusiness:BatchPutDocument API for the given application and index.
1064
+ # `qbusiness:BatchPutDocument` API for the given application and
1065
+ # index.
1057
1066
  # @return [String]
1058
1067
  #
1059
1068
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/DeliverToQBusinessAction AWS API Documentation
@@ -1717,6 +1726,10 @@ module Aws::MailManager
1717
1726
  # The timestamp of when the ingress endpoint was last updated.
1718
1727
  # @return [Time]
1719
1728
  #
1729
+ # @!attribute [rw] network_configuration
1730
+ # The network configuration for the ingress point.
1731
+ # @return [Types::NetworkConfiguration]
1732
+ #
1720
1733
  # @!attribute [rw] rule_set_id
1721
1734
  # The identifier of a rule set resource associated with the ingress
1722
1735
  # endpoint.
@@ -1745,6 +1758,7 @@ module Aws::MailManager
1745
1758
  :ingress_point_id,
1746
1759
  :ingress_point_name,
1747
1760
  :last_updated_timestamp,
1761
+ :network_configuration,
1748
1762
  :rule_set_id,
1749
1763
  :status,
1750
1764
  :traffic_policy_id,
@@ -2166,6 +2180,56 @@ module Aws::MailManager
2166
2180
  include Aws::Structure
2167
2181
  end
2168
2182
 
2183
+ # The union type representing the allowed types for the left hand side
2184
+ # of an IPv6 condition.
2185
+ #
2186
+ # @!attribute [rw] evaluate
2187
+ # The left hand side argument of an IPv6 condition expression.
2188
+ # @return [Types::IngressIpv6ToEvaluate]
2189
+ #
2190
+ # @!attribute [rw] operator
2191
+ # The matching operator for an IPv6 condition expression.
2192
+ # @return [String]
2193
+ #
2194
+ # @!attribute [rw] values
2195
+ # The right hand side argument of an IPv6 condition expression.
2196
+ # @return [Array<String>]
2197
+ #
2198
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressIpv6Expression AWS API Documentation
2199
+ #
2200
+ class IngressIpv6Expression < Struct.new(
2201
+ :evaluate,
2202
+ :operator,
2203
+ :values)
2204
+ SENSITIVE = []
2205
+ include Aws::Structure
2206
+ end
2207
+
2208
+ # The structure for an IPv6 based condition matching on the incoming
2209
+ # mail.
2210
+ #
2211
+ # @note IngressIpv6ToEvaluate is a union - when making an API calls you must set exactly one of the members.
2212
+ #
2213
+ # @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.
2214
+ #
2215
+ # @!attribute [rw] attribute
2216
+ # An enum type representing the allowed attribute types for an IPv6
2217
+ # condition.
2218
+ # @return [String]
2219
+ #
2220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressIpv6ToEvaluate AWS API Documentation
2221
+ #
2222
+ class IngressIpv6ToEvaluate < Struct.new(
2223
+ :attribute,
2224
+ :unknown)
2225
+ SENSITIVE = []
2226
+ include Aws::Structure
2227
+ include Aws::Structure::Union
2228
+
2229
+ class Attribute < IngressIpv6ToEvaluate; end
2230
+ class Unknown < IngressIpv6ToEvaluate; end
2231
+ end
2232
+
2169
2233
  # The address lists and the address list attribute value that is
2170
2234
  # evaluated in a policy statement's conditional expression to either
2171
2235
  # deny or block the incoming email.
@@ -3041,6 +3105,36 @@ module Aws::MailManager
3041
3105
  include Aws::Structure
3042
3106
  end
3043
3107
 
3108
+ # The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress
3109
+ # endpoint resource.
3110
+ #
3111
+ # @note NetworkConfiguration is a union - when making an API calls you must set exactly one of the members.
3112
+ #
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
+ #
3115
+ # @!attribute [rw] private_network_configuration
3116
+ # Specifies the network configuration for the private ingress point.
3117
+ # @return [Types::PrivateNetworkConfiguration]
3118
+ #
3119
+ # @!attribute [rw] public_network_configuration
3120
+ # Specifies the network configuration for the public ingress point.
3121
+ # @return [Types::PublicNetworkConfiguration]
3122
+ #
3123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/NetworkConfiguration AWS API Documentation
3124
+ #
3125
+ class NetworkConfiguration < Struct.new(
3126
+ :private_network_configuration,
3127
+ :public_network_configuration,
3128
+ :unknown)
3129
+ SENSITIVE = []
3130
+ include Aws::Structure
3131
+ include Aws::Structure::Union
3132
+
3133
+ class PrivateNetworkConfiguration < NetworkConfiguration; end
3134
+ class PublicNetworkConfiguration < NetworkConfiguration; end
3135
+ class Unknown < NetworkConfiguration; end
3136
+ end
3137
+
3044
3138
  # Explicitly indicate that the relay destination server does not require
3045
3139
  # SMTP credential authentication.
3046
3140
  #
@@ -3069,6 +3163,12 @@ module Aws::MailManager
3069
3163
  # the 'Protocol' object against the 'Value'.
3070
3164
  # @return [Types::IngressIpv4Expression]
3071
3165
  #
3166
+ # @!attribute [rw] ipv_6_expression
3167
+ # This represents an IPv6 based condition matching on the incoming
3168
+ # mail. It performs the operation configured in 'Operator' and
3169
+ # evaluates the 'Protocol' object against the 'Value'.
3170
+ # @return [Types::IngressIpv6Expression]
3171
+ #
3072
3172
  # @!attribute [rw] string_expression
3073
3173
  # This represents a string based condition matching on the incoming
3074
3174
  # mail. It performs the string operation configured in 'Operator'
@@ -3086,6 +3186,7 @@ module Aws::MailManager
3086
3186
  class PolicyCondition < Struct.new(
3087
3187
  :boolean_expression,
3088
3188
  :ip_expression,
3189
+ :ipv_6_expression,
3089
3190
  :string_expression,
3090
3191
  :tls_expression,
3091
3192
  :unknown)
@@ -3095,6 +3196,7 @@ module Aws::MailManager
3095
3196
 
3096
3197
  class BooleanExpression < PolicyCondition; end
3097
3198
  class IpExpression < PolicyCondition; end
3199
+ class Ipv6Expression < PolicyCondition; end
3098
3200
  class StringExpression < PolicyCondition; end
3099
3201
  class TlsExpression < PolicyCondition; end
3100
3202
  class Unknown < PolicyCondition; end
@@ -3121,6 +3223,36 @@ module Aws::MailManager
3121
3223
  include Aws::Structure
3122
3224
  end
3123
3225
 
3226
+ # Specifies the network configuration for the private ingress point.
3227
+ #
3228
+ # @!attribute [rw] vpc_endpoint_id
3229
+ # The identifier of the VPC endpoint to associate with this private
3230
+ # ingress point.
3231
+ # @return [String]
3232
+ #
3233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/PrivateNetworkConfiguration AWS API Documentation
3234
+ #
3235
+ class PrivateNetworkConfiguration < Struct.new(
3236
+ :vpc_endpoint_id)
3237
+ SENSITIVE = []
3238
+ include Aws::Structure
3239
+ end
3240
+
3241
+ # Specifies the network configuration for the public ingress point.
3242
+ #
3243
+ # @!attribute [rw] ip_type
3244
+ # The IP address type for the public ingress point. Valid values are
3245
+ # IPV4 and DUAL\_STACK.
3246
+ # @return [String]
3247
+ #
3248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/PublicNetworkConfiguration AWS API Documentation
3249
+ #
3250
+ class PublicNetworkConfiguration < Struct.new(
3251
+ :ip_type)
3252
+ SENSITIVE = []
3253
+ include Aws::Structure
3254
+ end
3255
+
3124
3256
  # @!attribute [rw] address
3125
3257
  # The address to be added to the address list.
3126
3258
  # @return [String]
@@ -3444,6 +3576,10 @@ module Aws::MailManager
3444
3576
  # This action terminates the evaluation of rules in the rule set.
3445
3577
  # @return [Types::DropAction]
3446
3578
  #
3579
+ # @!attribute [rw] publish_to_sns
3580
+ # This action publishes the email content to an Amazon SNS topic.
3581
+ # @return [Types::SnsAction]
3582
+ #
3447
3583
  # @!attribute [rw] relay
3448
3584
  # This action relays the email to another SMTP server.
3449
3585
  # @return [Types::RelayAction]
@@ -3469,6 +3605,7 @@ module Aws::MailManager
3469
3605
  :deliver_to_mailbox,
3470
3606
  :deliver_to_q_business,
3471
3607
  :drop,
3608
+ :publish_to_sns,
3472
3609
  :relay,
3473
3610
  :replace_recipient,
3474
3611
  :send,
@@ -3483,6 +3620,7 @@ module Aws::MailManager
3483
3620
  class DeliverToMailbox < RuleAction; end
3484
3621
  class DeliverToQBusiness < RuleAction; end
3485
3622
  class Drop < RuleAction; end
3623
+ class PublishToSns < RuleAction; end
3486
3624
  class Relay < RuleAction; end
3487
3625
  class ReplaceRecipient < RuleAction; end
3488
3626
  class Send < RuleAction; end
@@ -4060,6 +4198,55 @@ module Aws::MailManager
4060
4198
  include Aws::Structure
4061
4199
  end
4062
4200
 
4201
+ # The action to publish the email content to an Amazon SNS topic. When
4202
+ # executed, this action will send the email as a notification to the
4203
+ # specified SNS topic.
4204
+ #
4205
+ # @!attribute [rw] action_failure_policy
4206
+ # A policy that states what to do in the case of failure. The action
4207
+ # will fail if there are configuration errors. For example, specified
4208
+ # SNS topic has been deleted or the role lacks necessary permissions
4209
+ # to call the `sns:Publish` API.
4210
+ # @return [String]
4211
+ #
4212
+ # @!attribute [rw] encoding
4213
+ # The encoding to use for the email within the Amazon SNS
4214
+ # notification. The default value is `UTF-8`. Use `BASE64` if you need
4215
+ # to preserve all special characters, especially when the original
4216
+ # message uses a different encoding format.
4217
+ # @return [String]
4218
+ #
4219
+ # @!attribute [rw] payload_type
4220
+ # The expected payload type within the Amazon SNS notification.
4221
+ # `CONTENT` attempts to publish the full email content with 20KB of
4222
+ # headers content. `HEADERS` extracts up to 100KB of header content to
4223
+ # include in the notification, email content will not be included to
4224
+ # the notification. The default value is `CONTENT`.
4225
+ # @return [String]
4226
+ #
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
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/SnsAction AWS API Documentation
4239
+ #
4240
+ class SnsAction < Struct.new(
4241
+ :action_failure_policy,
4242
+ :encoding,
4243
+ :payload_type,
4244
+ :role_arn,
4245
+ :topic_arn)
4246
+ SENSITIVE = []
4247
+ include Aws::Structure
4248
+ end
4249
+
4063
4250
  # @!attribute [rw] job_id
4064
4251
  # The identifier of the import job that needs to be started.
4065
4252
  # @return [String]
@@ -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.22.0'
57
+ GEM_VERSION = '1.24.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
  {
@@ -247,6 +255,13 @@ module Aws
247
255
  }?,
248
256
  drop: {
249
257
  }?,
258
+ publish_to_sns: {
259
+ action_failure_policy: ("CONTINUE" | "DROP")?,
260
+ encoding: ("UTF-8" | "BASE64")?,
261
+ payload_type: ("HEADERS" | "CONTENT")?,
262
+ role_arn: ::String,
263
+ topic_arn: ::String
264
+ }?,
250
265
  relay: {
251
266
  action_failure_policy: ("CONTINUE" | "DROP")?,
252
267
  mail_from: ("REPLACE" | "PRESERVE")?,
@@ -432,6 +447,13 @@ module Aws
432
447
  operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
433
448
  values: Array[::String]
434
449
  }?,
450
+ ipv_6_expression: {
451
+ evaluate: {
452
+ attribute: ("SENDER_IPV6")?
453
+ },
454
+ operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
455
+ values: Array[::String]
456
+ }?,
435
457
  string_expression: {
436
458
  evaluate: {
437
459
  analysis: {
@@ -694,6 +716,7 @@ module Aws
694
716
  def ingress_point_id: () -> ::String
695
717
  def ingress_point_name: () -> ::String
696
718
  def last_updated_timestamp: () -> ::Time
719
+ def network_configuration: () -> Types::NetworkConfiguration
697
720
  def rule_set_id: () -> ::String
698
721
  def status: () -> ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
699
722
  def traffic_policy_id: () -> ::String
@@ -1181,6 +1204,13 @@ module Aws
1181
1204
  }?,
1182
1205
  drop: {
1183
1206
  }?,
1207
+ publish_to_sns: {
1208
+ action_failure_policy: ("CONTINUE" | "DROP")?,
1209
+ encoding: ("UTF-8" | "BASE64")?,
1210
+ payload_type: ("HEADERS" | "CONTENT")?,
1211
+ role_arn: ::String,
1212
+ topic_arn: ::String
1213
+ }?,
1184
1214
  relay: {
1185
1215
  action_failure_policy: ("CONTINUE" | "DROP")?,
1186
1216
  mail_from: ("REPLACE" | "PRESERVE")?,
@@ -1358,6 +1388,13 @@ module Aws
1358
1388
  operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
1359
1389
  values: Array[::String]
1360
1390
  }?,
1391
+ ipv_6_expression: {
1392
+ evaluate: {
1393
+ attribute: ("SENDER_IPV6")?
1394
+ },
1395
+ operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
1396
+ values: Array[::String]
1397
+ }?,
1361
1398
  string_expression: {
1362
1399
  evaluate: {
1363
1400
  analysis: {
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")
@@ -937,12 +957,27 @@ module Aws::MailManager
937
957
  SENSITIVE: [:sender_ip_address]
938
958
  end
939
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
+
940
974
  class NoAuthentication < Aws::EmptyStructure
941
975
  end
942
976
 
943
977
  class PolicyCondition
944
978
  attr_accessor boolean_expression: Types::IngressBooleanExpression
945
979
  attr_accessor ip_expression: Types::IngressIpv4Expression
980
+ attr_accessor ipv_6_expression: Types::IngressIpv6Expression
946
981
  attr_accessor string_expression: Types::IngressStringExpression
947
982
  attr_accessor tls_expression: Types::IngressTlsProtocolExpression
948
983
  attr_accessor unknown: untyped
@@ -952,6 +987,8 @@ module Aws::MailManager
952
987
  end
953
988
  class IpExpression < PolicyCondition
954
989
  end
990
+ class Ipv6Expression < PolicyCondition
991
+ end
955
992
  class StringExpression < PolicyCondition
956
993
  end
957
994
  class TlsExpression < PolicyCondition
@@ -966,6 +1003,16 @@ module Aws::MailManager
966
1003
  SENSITIVE: []
967
1004
  end
968
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
+
969
1016
  class RegisterMemberToAddressListRequest
970
1017
  attr_accessor address: ::String
971
1018
  attr_accessor address_list_id: ::String
@@ -1050,6 +1097,7 @@ module Aws::MailManager
1050
1097
  attr_accessor deliver_to_mailbox: Types::DeliverToMailboxAction
1051
1098
  attr_accessor deliver_to_q_business: Types::DeliverToQBusinessAction
1052
1099
  attr_accessor drop: Types::DropAction
1100
+ attr_accessor publish_to_sns: Types::SnsAction
1053
1101
  attr_accessor relay: Types::RelayAction
1054
1102
  attr_accessor replace_recipient: Types::ReplaceRecipientAction
1055
1103
  attr_accessor send: Types::SendAction
@@ -1067,6 +1115,8 @@ module Aws::MailManager
1067
1115
  end
1068
1116
  class Drop < RuleAction
1069
1117
  end
1118
+ class PublishToSns < RuleAction
1119
+ end
1070
1120
  class Relay < RuleAction
1071
1121
  end
1072
1122
  class ReplaceRecipient < RuleAction
@@ -1273,6 +1323,15 @@ module Aws::MailManager
1273
1323
  SENSITIVE: []
1274
1324
  end
1275
1325
 
1326
+ class SnsAction
1327
+ attr_accessor action_failure_policy: ("CONTINUE" | "DROP")
1328
+ attr_accessor encoding: ("UTF-8" | "BASE64")
1329
+ attr_accessor payload_type: ("HEADERS" | "CONTENT")
1330
+ attr_accessor role_arn: ::String
1331
+ attr_accessor topic_arn: ::String
1332
+ SENSITIVE: []
1333
+ end
1334
+
1276
1335
  class StartAddressListImportJobRequest
1277
1336
  attr_accessor job_id: ::String
1278
1337
  SENSITIVE: []
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.22.0
4
+ version: 1.24.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-03-20 00:00:00.000000000 Z
11
+ date: 2025-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core