aws-sdk-mailmanager 1.22.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: 11663b377dc2310408f591deab3e2f9dbaa09024104d558d07a1ec032c01334d
4
- data.tar.gz: a2566a7bd0c46aefafb52d5d2e39ca23587b6247fdf618f86c35a4a4c694dd63
3
+ metadata.gz: 86c0ea7c9a97c17b79cec8fa8426ae7be7c6f09352577d63f0f0b8fc8b2f235b
4
+ data.tar.gz: f0a2c6b7cde7b923b43f39a9e374be6c291377a4f55f5fc72cf16d40674ee382
5
5
  SHA512:
6
- metadata.gz: 0a67f4885d75b320d293e054a99e463b01263b336014785b1a722a28bb2ed95f6d15c0814af4217b655e7e17e42588fa1e6562f5e277172e755be7be34571977
7
- data.tar.gz: 6f6f9d7e181f841c5c7933d5bdad7310598ddf7003fcbbd3f0a23516a7e8e5bc2309bd2eeb36c3586dc32afe3e6ba7e6d103af3e253e1975924bc2f9acdfcff2
6
+ metadata.gz: 4aa3b203aa2bf190912b15b9d0dd754ce428068dc6a93c4ba48e405575762f20067c1c7002f34c7ab297f3c90a172a6b4f0562445934965e19f3ece0604a8ad7
7
+ data.tar.gz: 94655f3fa769574a69bce3f8e1b02a3bb89a7ef50b1296ff48881827acd0e8bfe0f657879d861324527ed7b99d071b42789b4df76de1b040b8fa4945ab03a273
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.22.0 (2025-03-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.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
  # {
@@ -1146,6 +1159,13 @@ module Aws::MailManager
1146
1159
  # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
1147
1160
  # values: ["Ipv4Cidr"], # required
1148
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
+ # },
1149
1169
  # string_expression: {
1150
1170
  # evaluate: { # required
1151
1171
  # analysis: {
@@ -1849,6 +1869,7 @@ module Aws::MailManager
1849
1869
  # * {Types::GetIngressPointResponse#ingress_point_id #ingress_point_id} => String
1850
1870
  # * {Types::GetIngressPointResponse#ingress_point_name #ingress_point_name} => String
1851
1871
  # * {Types::GetIngressPointResponse#last_updated_timestamp #last_updated_timestamp} => Time
1872
+ # * {Types::GetIngressPointResponse#network_configuration #network_configuration} => Types::NetworkConfiguration
1852
1873
  # * {Types::GetIngressPointResponse#rule_set_id #rule_set_id} => String
1853
1874
  # * {Types::GetIngressPointResponse#status #status} => String
1854
1875
  # * {Types::GetIngressPointResponse#traffic_policy_id #traffic_policy_id} => String
@@ -1872,6 +1893,8 @@ module Aws::MailManager
1872
1893
  # resp.ingress_point_id #=> String
1873
1894
  # resp.ingress_point_name #=> String
1874
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"
1875
1898
  # resp.rule_set_id #=> String
1876
1899
  # resp.status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED"
1877
1900
  # resp.traffic_policy_id #=> String
@@ -2129,6 +2152,10 @@ module Aws::MailManager
2129
2152
  # resp.policy_statements[0].conditions[0].ip_expression.operator #=> String, one of "CIDR_MATCHES", "NOT_CIDR_MATCHES"
2130
2153
  # resp.policy_statements[0].conditions[0].ip_expression.values #=> Array
2131
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
2132
2159
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
2133
2160
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
2134
2161
  # resp.policy_statements[0].conditions[0].string_expression.evaluate.attribute #=> String, one of "RECIPIENT"
@@ -3444,6 +3471,13 @@ module Aws::MailManager
3444
3471
  # operator: "CIDR_MATCHES", # required, accepts CIDR_MATCHES, NOT_CIDR_MATCHES
3445
3472
  # values: ["Ipv4Cidr"], # required
3446
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
+ # },
3447
3481
  # string_expression: {
3448
3482
  # evaluate: { # required
3449
3483
  # analysis: {
@@ -3497,7 +3531,7 @@ module Aws::MailManager
3497
3531
  tracer: tracer
3498
3532
  )
3499
3533
  context[:gem_name] = 'aws-sdk-mailmanager'
3500
- context[:gem_version] = '1.22.0'
3534
+ context[:gem_version] = '1.23.0'
3501
3535
  Seahorse::Client::Request.new(handlers, context)
3502
3536
  end
3503
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
@@ -893,6 +916,8 @@ module Aws::MailManager
893
916
 
894
917
  Ipv4Cidrs.member = Shapes::ShapeRef.new(shape: Ipv4Cidr)
895
918
 
919
+ Ipv6Cidrs.member = Shapes::ShapeRef.new(shape: Ipv6Cidr)
920
+
896
921
  ListAddonInstancesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
897
922
  ListAddonInstancesRequest.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
898
923
  ListAddonInstancesRequest.struct_class = Types::ListAddonInstancesRequest
@@ -1020,15 +1045,25 @@ module Aws::MailManager
1020
1045
  Metadata.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
1021
1046
  Metadata.struct_class = Types::Metadata
1022
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
+
1023
1056
  NoAuthentication.struct_class = Types::NoAuthentication
1024
1057
 
1025
1058
  PolicyCondition.add_member(:boolean_expression, Shapes::ShapeRef.new(shape: IngressBooleanExpression, location_name: "BooleanExpression"))
1026
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"))
1027
1061
  PolicyCondition.add_member(:string_expression, Shapes::ShapeRef.new(shape: IngressStringExpression, location_name: "StringExpression"))
1028
1062
  PolicyCondition.add_member(:tls_expression, Shapes::ShapeRef.new(shape: IngressTlsProtocolExpression, location_name: "TlsExpression"))
1029
1063
  PolicyCondition.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1030
1064
  PolicyCondition.add_member_subclass(:boolean_expression, Types::PolicyCondition::BooleanExpression)
1031
1065
  PolicyCondition.add_member_subclass(:ip_expression, Types::PolicyCondition::IpExpression)
1066
+ PolicyCondition.add_member_subclass(:ipv_6_expression, Types::PolicyCondition::Ipv6Expression)
1032
1067
  PolicyCondition.add_member_subclass(:string_expression, Types::PolicyCondition::StringExpression)
1033
1068
  PolicyCondition.add_member_subclass(:tls_expression, Types::PolicyCondition::TlsExpression)
1034
1069
  PolicyCondition.add_member_subclass(:unknown, Types::PolicyCondition::Unknown)
@@ -1042,6 +1077,12 @@ module Aws::MailManager
1042
1077
 
1043
1078
  PolicyStatementList.member = Shapes::ShapeRef.new(shape: PolicyStatement)
1044
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
+
1045
1086
  Recipients.member = Shapes::ShapeRef.new(shape: EmailAddress)
1046
1087
 
1047
1088
  RegisterMemberToAddressListRequest.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
@@ -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.
@@ -3041,6 +3104,36 @@ module Aws::MailManager
3041
3104
  include Aws::Structure
3042
3105
  end
3043
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
+
3044
3137
  # Explicitly indicate that the relay destination server does not require
3045
3138
  # SMTP credential authentication.
3046
3139
  #
@@ -3069,6 +3162,12 @@ module Aws::MailManager
3069
3162
  # the 'Protocol' object against the 'Value'.
3070
3163
  # @return [Types::IngressIpv4Expression]
3071
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
+ #
3072
3171
  # @!attribute [rw] string_expression
3073
3172
  # This represents a string based condition matching on the incoming
3074
3173
  # mail. It performs the string operation configured in 'Operator'
@@ -3086,6 +3185,7 @@ module Aws::MailManager
3086
3185
  class PolicyCondition < Struct.new(
3087
3186
  :boolean_expression,
3088
3187
  :ip_expression,
3188
+ :ipv_6_expression,
3089
3189
  :string_expression,
3090
3190
  :tls_expression,
3091
3191
  :unknown)
@@ -3095,6 +3195,7 @@ module Aws::MailManager
3095
3195
 
3096
3196
  class BooleanExpression < PolicyCondition; end
3097
3197
  class IpExpression < PolicyCondition; end
3198
+ class Ipv6Expression < PolicyCondition; end
3098
3199
  class StringExpression < PolicyCondition; end
3099
3200
  class TlsExpression < PolicyCondition; end
3100
3201
  class Unknown < PolicyCondition; end
@@ -3121,6 +3222,36 @@ module Aws::MailManager
3121
3222
  include Aws::Structure
3122
3223
  end
3123
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
+
3124
3255
  # @!attribute [rw] address
3125
3256
  # The address to be added to the address list.
3126
3257
  # @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.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
  {
@@ -432,6 +440,13 @@ module Aws
432
440
  operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
433
441
  values: Array[::String]
434
442
  }?,
443
+ ipv_6_expression: {
444
+ evaluate: {
445
+ attribute: ("SENDER_IPV6")?
446
+ },
447
+ operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
448
+ values: Array[::String]
449
+ }?,
435
450
  string_expression: {
436
451
  evaluate: {
437
452
  analysis: {
@@ -694,6 +709,7 @@ module Aws
694
709
  def ingress_point_id: () -> ::String
695
710
  def ingress_point_name: () -> ::String
696
711
  def last_updated_timestamp: () -> ::Time
712
+ def network_configuration: () -> Types::NetworkConfiguration
697
713
  def rule_set_id: () -> ::String
698
714
  def status: () -> ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
699
715
  def traffic_policy_id: () -> ::String
@@ -1358,6 +1374,13 @@ module Aws
1358
1374
  operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
1359
1375
  values: Array[::String]
1360
1376
  }?,
1377
+ ipv_6_expression: {
1378
+ evaluate: {
1379
+ attribute: ("SENDER_IPV6")?
1380
+ },
1381
+ operator: ("CIDR_MATCHES" | "NOT_CIDR_MATCHES"),
1382
+ values: Array[::String]
1383
+ }?,
1361
1384
  string_expression: {
1362
1385
  evaluate: {
1363
1386
  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
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.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-03-20 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