aws-sdk-mailmanager 1.40.0 → 1.41.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: ce28a6e96e8f71d0c481bad0f0d3efbef197db21e1dd40ca02b344f344763a84
4
- data.tar.gz: d4d8a16f1aa7077f41b65022fedf6b0fb5b3321f6d69d85dc0f66ebe2eaca6ae
3
+ metadata.gz: 964536ba8007e5e8c4e12d372d4c324debafaee2c8be29045edccf5f7000821a
4
+ data.tar.gz: 4d4a8aaa612f803e6bfa89f2b7cba1fcc3faeb4c13221244917f68ea8723d564
5
5
  SHA512:
6
- metadata.gz: 187e03b182b0ad1677246d6c6b0630cf54c09f85d69fc3c94d6cdb171860684a77d392c14c0c53250274c7ea5c7451170f8aab68f6e79c1c219bb978c1a04bc9
7
- data.tar.gz: e5431b212f7419c8c849d97eda4325b3b9ba2b1be805b3696a480e551fd0039f4ac38dcf0383e48f3440d1db9f36a1357536808af307a25b4769209480b6bcb9
6
+ metadata.gz: 6ec4e3d0020b1ebf9a78cebb60f2d1942f3c4b34d8bb4109bde62482589fc96ad1e5fb5661052413ecaed505ab587fc729d009eb83e31baa8e03c3206e1a3fb1
7
+ data.tar.gz: 231b1124d523da6a1a89a48e6bfa3121b5cd28e4ab35d484525fe38824f7babbf54651231d0a6e1dec54bc854168bd4e61a952c1c982de9ef2d03a73f2926629
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2026-03-31)
5
+ ------------------
6
+
7
+ * Feature - Amazon SES Mail Manager now supports optional TLS policy for accepting unencrypted connections and mTLS authentication for ingress endpoints with configurable trust stores. Two new rule actions are available, Bounce for sending non-delivery reports and Lambda invocation for custom email processing.
8
+
4
9
  1.40.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -769,6 +769,10 @@ module Aws::MailManager
769
769
  # you to create an IPv4-only, Dual-Stack, or PrivateLink type of ingress
770
770
  # point. If not specified, the default network type is IPv4-only.
771
771
  #
772
+ # @option params [String] :tls_policy
773
+ # The Transport Layer Security (TLS) policy for the ingress point. The
774
+ # FIPS value is only valid in US and Canada regions.
775
+ #
772
776
  # @option params [Array<Types::Tag>] :tags
773
777
  # The tags used to organize, track, or control access for the resource.
774
778
  # For example, \{ "tags": \{"key1":"value1", "key2":"value2"}
@@ -850,12 +854,19 @@ module Aws::MailManager
850
854
  # resp = client.create_ingress_point({
851
855
  # client_token: "IdempotencyToken",
852
856
  # ingress_point_name: "IngressPointName", # required
853
- # type: "OPEN", # required, accepts OPEN, AUTH
857
+ # type: "OPEN", # required, accepts OPEN, AUTH, MTLS
854
858
  # rule_set_id: "RuleSetId", # required
855
859
  # traffic_policy_id: "TrafficPolicyId", # required
856
860
  # ingress_point_configuration: {
857
861
  # smtp_password: "SmtpPassword",
858
862
  # secret_arn: "SecretArn",
863
+ # tls_auth_configuration: {
864
+ # trust_store: {
865
+ # ca_content: "CAContent", # required
866
+ # crl_content: "CrlContent",
867
+ # kms_key_arn: "KmsKeyArn",
868
+ # },
869
+ # },
859
870
  # },
860
871
  # network_configuration: {
861
872
  # public_network_configuration: {
@@ -865,6 +876,7 @@ module Aws::MailManager
865
876
  # vpc_endpoint_id: "VpcEndpointId", # required
866
877
  # },
867
878
  # },
879
+ # tls_policy: "REQUIRED", # accepts REQUIRED, OPTIONAL, FIPS
868
880
  # tags: [
869
881
  # {
870
882
  # key: "TagKey", # required
@@ -1007,6 +1019,7 @@ module Aws::MailManager
1007
1019
  # analyzer: "AnalyzerArn", # required
1008
1020
  # result_field: "ResultField", # required
1009
1021
  # },
1022
+ # client_certificate_attribute: "CN", # accepts CN, SAN_RFC822_NAME, SAN_DNS_NAME, SAN_DIRECTORY_NAME, SAN_UNIFORM_RESOURCE_IDENTIFIER, SAN_IP_ADDRESS, SAN_REGISTERED_ID, SERIAL_NUMBER
1010
1023
  # },
1011
1024
  # operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
1012
1025
  # values: ["RuleStringValue"], # required
@@ -1066,6 +1079,7 @@ module Aws::MailManager
1066
1079
  # analyzer: "AnalyzerArn", # required
1067
1080
  # result_field: "ResultField", # required
1068
1081
  # },
1082
+ # client_certificate_attribute: "CN", # accepts CN, SAN_RFC822_NAME, SAN_DNS_NAME, SAN_DIRECTORY_NAME, SAN_UNIFORM_RESOURCE_IDENTIFIER, SAN_IP_ADDRESS, SAN_REGISTERED_ID, SERIAL_NUMBER
1069
1083
  # },
1070
1084
  # operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
1071
1085
  # values: ["RuleStringValue"], # required
@@ -1150,6 +1164,22 @@ module Aws::MailManager
1150
1164
  # encoding: "UTF-8", # accepts UTF-8, BASE64
1151
1165
  # payload_type: "HEADERS", # accepts HEADERS, CONTENT
1152
1166
  # },
1167
+ # bounce: {
1168
+ # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
1169
+ # role_arn: "IamRoleArn", # required
1170
+ # sender: "EmailAddress", # required
1171
+ # status_code: "StatusCode", # required
1172
+ # smtp_reply_code: "SmtpReplyCode", # required
1173
+ # diagnostic_message: "DiagnosticMessage", # required
1174
+ # message: "BounceMessage",
1175
+ # },
1176
+ # invoke_lambda: {
1177
+ # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
1178
+ # function_arn: "LambdaFunctionArn", # required
1179
+ # invocation_type: "EVENT", # required, accepts EVENT, REQUEST_RESPONSE
1180
+ # role_arn: "IamRoleArn", # required
1181
+ # retry_time_minutes: 1,
1182
+ # },
1153
1183
  # },
1154
1184
  # ],
1155
1185
  # },
@@ -1993,6 +2023,10 @@ module Aws::MailManager
1993
2023
  # @option params [required, String] :ingress_point_id
1994
2024
  # The identifier of an ingress endpoint.
1995
2025
  #
2026
+ # @option params [String] :include_trust_store_contents
2027
+ # Whether to include the trust store contents in the response. Use
2028
+ # INCLUDE to retrieve trust store certificate and CRL contents.
2029
+ #
1996
2030
  # @return [Types::GetIngressPointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1997
2031
  #
1998
2032
  # * {Types::GetIngressPointResponse#ingress_point_id #ingress_point_id} => String
@@ -2005,6 +2039,7 @@ module Aws::MailManager
2005
2039
  # * {Types::GetIngressPointResponse#traffic_policy_id #traffic_policy_id} => String
2006
2040
  # * {Types::GetIngressPointResponse#ingress_point_auth_configuration #ingress_point_auth_configuration} => Types::IngressPointAuthConfiguration
2007
2041
  # * {Types::GetIngressPointResponse#network_configuration #network_configuration} => Types::NetworkConfiguration
2042
+ # * {Types::GetIngressPointResponse#tls_policy #tls_policy} => String
2008
2043
  # * {Types::GetIngressPointResponse#created_timestamp #created_timestamp} => Time
2009
2044
  # * {Types::GetIngressPointResponse#last_updated_timestamp #last_updated_timestamp} => Time
2010
2045
  #
@@ -2048,6 +2083,7 @@ module Aws::MailManager
2048
2083
  #
2049
2084
  # resp = client.get_ingress_point({
2050
2085
  # ingress_point_id: "IngressPointId", # required
2086
+ # include_trust_store_contents: "EXCLUDE", # accepts EXCLUDE, INCLUDE
2051
2087
  # })
2052
2088
  #
2053
2089
  # @example Response structure
@@ -2055,8 +2091,8 @@ module Aws::MailManager
2055
2091
  # resp.ingress_point_id #=> String
2056
2092
  # resp.ingress_point_name #=> String
2057
2093
  # resp.ingress_point_arn #=> String
2058
- # resp.status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED"
2059
- # resp.type #=> String, one of "OPEN", "AUTH"
2094
+ # resp.status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED", "ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST"
2095
+ # resp.type #=> String, one of "OPEN", "AUTH", "MTLS"
2060
2096
  # resp.a_record #=> String
2061
2097
  # resp.rule_set_id #=> String
2062
2098
  # resp.traffic_policy_id #=> String
@@ -2064,8 +2100,12 @@ module Aws::MailManager
2064
2100
  # resp.ingress_point_auth_configuration.ingress_point_password_configuration.previous_smtp_password_version #=> String
2065
2101
  # resp.ingress_point_auth_configuration.ingress_point_password_configuration.previous_smtp_password_expiry_timestamp #=> Time
2066
2102
  # resp.ingress_point_auth_configuration.secret_arn #=> String
2103
+ # resp.ingress_point_auth_configuration.tls_auth_configuration.trust_store.ca_content #=> String
2104
+ # resp.ingress_point_auth_configuration.tls_auth_configuration.trust_store.crl_content #=> String
2105
+ # resp.ingress_point_auth_configuration.tls_auth_configuration.trust_store.kms_key_arn #=> String
2067
2106
  # resp.network_configuration.public_network_configuration.ip_type #=> String, one of "IPV4", "DUAL_STACK"
2068
2107
  # resp.network_configuration.private_network_configuration.vpc_endpoint_id #=> String
2108
+ # resp.tls_policy #=> String, one of "REQUIRED", "OPTIONAL", "FIPS"
2069
2109
  # resp.created_timestamp #=> Time
2070
2110
  # resp.last_updated_timestamp #=> Time
2071
2111
  #
@@ -2196,6 +2236,7 @@ module Aws::MailManager
2196
2236
  # resp.rules[0].conditions[0].string_expression.evaluate.mime_header_attribute #=> String
2197
2237
  # resp.rules[0].conditions[0].string_expression.evaluate.analysis.analyzer #=> String
2198
2238
  # resp.rules[0].conditions[0].string_expression.evaluate.analysis.result_field #=> String
2239
+ # resp.rules[0].conditions[0].string_expression.evaluate.client_certificate_attribute #=> String, one of "CN", "SAN_RFC822_NAME", "SAN_DNS_NAME", "SAN_DIRECTORY_NAME", "SAN_UNIFORM_RESOURCE_IDENTIFIER", "SAN_IP_ADDRESS", "SAN_REGISTERED_ID", "SERIAL_NUMBER"
2199
2240
  # resp.rules[0].conditions[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
2200
2241
  # resp.rules[0].conditions[0].string_expression.values #=> Array
2201
2242
  # resp.rules[0].conditions[0].string_expression.values[0] #=> String
@@ -2227,6 +2268,7 @@ module Aws::MailManager
2227
2268
  # resp.rules[0].unless[0].string_expression.evaluate.mime_header_attribute #=> String
2228
2269
  # resp.rules[0].unless[0].string_expression.evaluate.analysis.analyzer #=> String
2229
2270
  # resp.rules[0].unless[0].string_expression.evaluate.analysis.result_field #=> String
2271
+ # resp.rules[0].unless[0].string_expression.evaluate.client_certificate_attribute #=> String, one of "CN", "SAN_RFC822_NAME", "SAN_DNS_NAME", "SAN_DIRECTORY_NAME", "SAN_UNIFORM_RESOURCE_IDENTIFIER", "SAN_IP_ADDRESS", "SAN_REGISTERED_ID", "SERIAL_NUMBER"
2230
2272
  # resp.rules[0].unless[0].string_expression.operator #=> String, one of "EQUALS", "NOT_EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS"
2231
2273
  # resp.rules[0].unless[0].string_expression.values #=> Array
2232
2274
  # resp.rules[0].unless[0].string_expression.values[0] #=> String
@@ -2275,6 +2317,18 @@ module Aws::MailManager
2275
2317
  # resp.rules[0].actions[0].publish_to_sns.role_arn #=> String
2276
2318
  # resp.rules[0].actions[0].publish_to_sns.encoding #=> String, one of "UTF-8", "BASE64"
2277
2319
  # resp.rules[0].actions[0].publish_to_sns.payload_type #=> String, one of "HEADERS", "CONTENT"
2320
+ # resp.rules[0].actions[0].bounce.action_failure_policy #=> String, one of "CONTINUE", "DROP"
2321
+ # resp.rules[0].actions[0].bounce.role_arn #=> String
2322
+ # resp.rules[0].actions[0].bounce.sender #=> String
2323
+ # resp.rules[0].actions[0].bounce.status_code #=> String
2324
+ # resp.rules[0].actions[0].bounce.smtp_reply_code #=> String
2325
+ # resp.rules[0].actions[0].bounce.diagnostic_message #=> String
2326
+ # resp.rules[0].actions[0].bounce.message #=> String
2327
+ # resp.rules[0].actions[0].invoke_lambda.action_failure_policy #=> String, one of "CONTINUE", "DROP"
2328
+ # resp.rules[0].actions[0].invoke_lambda.function_arn #=> String
2329
+ # resp.rules[0].actions[0].invoke_lambda.invocation_type #=> String, one of "EVENT", "REQUEST_RESPONSE"
2330
+ # resp.rules[0].actions[0].invoke_lambda.role_arn #=> String
2331
+ # resp.rules[0].actions[0].invoke_lambda.retry_time_minutes #=> Integer
2278
2332
  #
2279
2333
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetRuleSet AWS API Documentation
2280
2334
  #
@@ -2800,8 +2854,8 @@ module Aws::MailManager
2800
2854
  # resp.ingress_points #=> Array
2801
2855
  # resp.ingress_points[0].ingress_point_name #=> String
2802
2856
  # resp.ingress_points[0].ingress_point_id #=> String
2803
- # resp.ingress_points[0].status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED"
2804
- # resp.ingress_points[0].type #=> String, one of "OPEN", "AUTH"
2857
+ # resp.ingress_points[0].status #=> String, one of "PROVISIONING", "DEPROVISIONING", "UPDATING", "ACTIVE", "CLOSED", "FAILED", "ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST"
2858
+ # resp.ingress_points[0].type #=> String, one of "OPEN", "AUTH", "MTLS"
2805
2859
  # resp.ingress_points[0].a_record #=> String
2806
2860
  # resp.next_token #=> String
2807
2861
  #
@@ -3471,6 +3525,11 @@ module Aws::MailManager
3471
3525
  # If you choose an Authenticated ingress endpoint, you must configure
3472
3526
  # either an SMTP password or a secret ARN.
3473
3527
  #
3528
+ # @option params [String] :tls_policy
3529
+ # The Transport Layer Security (TLS) policy for the ingress point. Valid
3530
+ # values are REQUIRED, OPTIONAL. Only ingress endpoints using REQUIRED
3531
+ # or OPTIONAL as TlsPolicy can be updated.
3532
+ #
3474
3533
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3475
3534
  #
3476
3535
  #
@@ -3534,7 +3593,15 @@ module Aws::MailManager
3534
3593
  # ingress_point_configuration: {
3535
3594
  # smtp_password: "SmtpPassword",
3536
3595
  # secret_arn: "SecretArn",
3596
+ # tls_auth_configuration: {
3597
+ # trust_store: {
3598
+ # ca_content: "CAContent", # required
3599
+ # crl_content: "CrlContent",
3600
+ # kms_key_arn: "KmsKeyArn",
3601
+ # },
3602
+ # },
3537
3603
  # },
3604
+ # tls_policy: "REQUIRED", # accepts REQUIRED, OPTIONAL, FIPS
3538
3605
  # })
3539
3606
  #
3540
3607
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/UpdateIngressPoint AWS API Documentation
@@ -3635,6 +3702,7 @@ module Aws::MailManager
3635
3702
  # analyzer: "AnalyzerArn", # required
3636
3703
  # result_field: "ResultField", # required
3637
3704
  # },
3705
+ # client_certificate_attribute: "CN", # accepts CN, SAN_RFC822_NAME, SAN_DNS_NAME, SAN_DIRECTORY_NAME, SAN_UNIFORM_RESOURCE_IDENTIFIER, SAN_IP_ADDRESS, SAN_REGISTERED_ID, SERIAL_NUMBER
3638
3706
  # },
3639
3707
  # operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
3640
3708
  # values: ["RuleStringValue"], # required
@@ -3694,6 +3762,7 @@ module Aws::MailManager
3694
3762
  # analyzer: "AnalyzerArn", # required
3695
3763
  # result_field: "ResultField", # required
3696
3764
  # },
3765
+ # client_certificate_attribute: "CN", # accepts CN, SAN_RFC822_NAME, SAN_DNS_NAME, SAN_DIRECTORY_NAME, SAN_UNIFORM_RESOURCE_IDENTIFIER, SAN_IP_ADDRESS, SAN_REGISTERED_ID, SERIAL_NUMBER
3697
3766
  # },
3698
3767
  # operator: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS
3699
3768
  # values: ["RuleStringValue"], # required
@@ -3778,6 +3847,22 @@ module Aws::MailManager
3778
3847
  # encoding: "UTF-8", # accepts UTF-8, BASE64
3779
3848
  # payload_type: "HEADERS", # accepts HEADERS, CONTENT
3780
3849
  # },
3850
+ # bounce: {
3851
+ # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
3852
+ # role_arn: "IamRoleArn", # required
3853
+ # sender: "EmailAddress", # required
3854
+ # status_code: "StatusCode", # required
3855
+ # smtp_reply_code: "SmtpReplyCode", # required
3856
+ # diagnostic_message: "DiagnosticMessage", # required
3857
+ # message: "BounceMessage",
3858
+ # },
3859
+ # invoke_lambda: {
3860
+ # action_failure_policy: "CONTINUE", # accepts CONTINUE, DROP
3861
+ # function_arn: "LambdaFunctionArn", # required
3862
+ # invocation_type: "EVENT", # required, accepts EVENT, REQUEST_RESPONSE
3863
+ # role_arn: "IamRoleArn", # required
3864
+ # retry_time_minutes: 1,
3865
+ # },
3781
3866
  # },
3782
3867
  # ],
3783
3868
  # },
@@ -3957,7 +4042,7 @@ module Aws::MailManager
3957
4042
  tracer: tracer
3958
4043
  )
3959
4044
  context[:gem_name] = 'aws-sdk-mailmanager'
3960
- context[:gem_version] = '1.40.0'
4045
+ context[:gem_version] = '1.41.0'
3961
4046
  Seahorse::Client::Request.new(handlers, context)
3962
4047
  end
3963
4048
 
@@ -60,6 +60,9 @@ module Aws::MailManager
60
60
  ArchivedMessageId = Shapes::StringShape.new(name: 'ArchivedMessageId')
61
61
  ArchivesList = Shapes::ListShape.new(name: 'ArchivesList')
62
62
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
63
+ BounceAction = Shapes::StructureShape.new(name: 'BounceAction')
64
+ BounceMessage = Shapes::StringShape.new(name: 'BounceMessage')
65
+ CAContent = Shapes::StringShape.new(name: 'CAContent')
63
66
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
64
67
  CreateAddonInstanceRequest = Shapes::StructureShape.new(name: 'CreateAddonInstanceRequest')
65
68
  CreateAddonInstanceResponse = Shapes::StructureShape.new(name: 'CreateAddonInstanceResponse')
@@ -79,6 +82,7 @@ module Aws::MailManager
79
82
  CreateRuleSetResponse = Shapes::StructureShape.new(name: 'CreateRuleSetResponse')
80
83
  CreateTrafficPolicyRequest = Shapes::StructureShape.new(name: 'CreateTrafficPolicyRequest')
81
84
  CreateTrafficPolicyResponse = Shapes::StructureShape.new(name: 'CreateTrafficPolicyResponse')
85
+ CrlContent = Shapes::StringShape.new(name: 'CrlContent')
82
86
  DeleteAddonInstanceRequest = Shapes::StructureShape.new(name: 'DeleteAddonInstanceRequest')
83
87
  DeleteAddonInstanceResponse = Shapes::StructureShape.new(name: 'DeleteAddonInstanceResponse')
84
88
  DeleteAddonSubscriptionRequest = Shapes::StructureShape.new(name: 'DeleteAddonSubscriptionRequest')
@@ -99,6 +103,7 @@ module Aws::MailManager
99
103
  DeliverToQBusinessAction = Shapes::StructureShape.new(name: 'DeliverToQBusinessAction')
100
104
  DeregisterMemberFromAddressListRequest = Shapes::StructureShape.new(name: 'DeregisterMemberFromAddressListRequest')
101
105
  DeregisterMemberFromAddressListResponse = Shapes::StructureShape.new(name: 'DeregisterMemberFromAddressListResponse')
106
+ DiagnosticMessage = Shapes::StringShape.new(name: 'DiagnosticMessage')
102
107
  Double = Shapes::FloatShape.new(name: 'Double')
103
108
  DropAction = Shapes::StructureShape.new(name: 'DropAction')
104
109
  EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
@@ -188,6 +193,7 @@ module Aws::MailManager
188
193
  IngressTlsProtocolOperator = Shapes::StringShape.new(name: 'IngressTlsProtocolOperator')
189
194
  IngressTlsProtocolToEvaluate = Shapes::UnionShape.new(name: 'IngressTlsProtocolToEvaluate')
190
195
  Integer = Shapes::IntegerShape.new(name: 'Integer')
196
+ InvokeLambdaAction = Shapes::StructureShape.new(name: 'InvokeLambdaAction')
191
197
  IpType = Shapes::StringShape.new(name: 'IpType')
192
198
  Ipv4Cidr = Shapes::StringShape.new(name: 'Ipv4Cidr')
193
199
  Ipv4Cidrs = Shapes::ListShape.new(name: 'Ipv4Cidrs')
@@ -198,6 +204,9 @@ module Aws::MailManager
198
204
  JobName = Shapes::StringShape.new(name: 'JobName')
199
205
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
200
206
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
207
+ LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
208
+ LambdaInvocationType = Shapes::StringShape.new(name: 'LambdaInvocationType')
209
+ LambdaRetryTimeMinutes = Shapes::IntegerShape.new(name: 'LambdaRetryTimeMinutes')
201
210
  ListAddonInstancesRequest = Shapes::StructureShape.new(name: 'ListAddonInstancesRequest')
202
211
  ListAddonInstancesResponse = Shapes::StructureShape.new(name: 'ListAddonInstancesResponse')
203
212
  ListAddonSubscriptionsRequest = Shapes::StructureShape.new(name: 'ListAddonSubscriptionsRequest')
@@ -270,6 +279,7 @@ module Aws::MailManager
270
279
  RuleBooleanExpression = Shapes::StructureShape.new(name: 'RuleBooleanExpression')
271
280
  RuleBooleanOperator = Shapes::StringShape.new(name: 'RuleBooleanOperator')
272
281
  RuleBooleanToEvaluate = Shapes::UnionShape.new(name: 'RuleBooleanToEvaluate')
282
+ RuleClientCertificateAttribute = Shapes::StringShape.new(name: 'RuleClientCertificateAttribute')
273
283
  RuleCondition = Shapes::UnionShape.new(name: 'RuleCondition')
274
284
  RuleConditions = Shapes::ListShape.new(name: 'RuleConditions')
275
285
  RuleDmarcExpression = Shapes::StructureShape.new(name: 'RuleDmarcExpression')
@@ -325,6 +335,7 @@ module Aws::MailManager
325
335
  SenderIpAddress = Shapes::StringShape.new(name: 'SenderIpAddress')
326
336
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
327
337
  SmtpPassword = Shapes::StringShape.new(name: 'SmtpPassword')
338
+ SmtpReplyCode = Shapes::StringShape.new(name: 'SmtpReplyCode')
328
339
  SnsAction = Shapes::StructureShape.new(name: 'SnsAction')
329
340
  SnsNotificationEncoding = Shapes::StringShape.new(name: 'SnsNotificationEncoding')
330
341
  SnsNotificationPayloadType = Shapes::StringShape.new(name: 'SnsNotificationPayloadType')
@@ -335,6 +346,7 @@ module Aws::MailManager
335
346
  StartArchiveExportResponse = Shapes::StructureShape.new(name: 'StartArchiveExportResponse')
336
347
  StartArchiveSearchRequest = Shapes::StructureShape.new(name: 'StartArchiveSearchRequest')
337
348
  StartArchiveSearchResponse = Shapes::StructureShape.new(name: 'StartArchiveSearchResponse')
349
+ StatusCode = Shapes::StringShape.new(name: 'StatusCode')
338
350
  StopAddressListImportJobRequest = Shapes::StructureShape.new(name: 'StopAddressListImportJobRequest')
339
351
  StopAddressListImportJobResponse = Shapes::StructureShape.new(name: 'StopAddressListImportJobResponse')
340
352
  StopArchiveExportRequest = Shapes::StructureShape.new(name: 'StopArchiveExportRequest')
@@ -355,11 +367,15 @@ module Aws::MailManager
355
367
  TaggableResourceArn = Shapes::StringShape.new(name: 'TaggableResourceArn')
356
368
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
357
369
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
370
+ TlsAuthConfiguration = Shapes::StructureShape.new(name: 'TlsAuthConfiguration')
371
+ TlsPolicy = Shapes::StringShape.new(name: 'TlsPolicy')
358
372
  TrafficPolicy = Shapes::StructureShape.new(name: 'TrafficPolicy')
359
373
  TrafficPolicyArn = Shapes::StringShape.new(name: 'TrafficPolicyArn')
360
374
  TrafficPolicyId = Shapes::StringShape.new(name: 'TrafficPolicyId')
361
375
  TrafficPolicyList = Shapes::ListShape.new(name: 'TrafficPolicyList')
362
376
  TrafficPolicyName = Shapes::StringShape.new(name: 'TrafficPolicyName')
377
+ TrustStore = Shapes::StructureShape.new(name: 'TrustStore')
378
+ TrustStoreResponseOption = Shapes::StringShape.new(name: 'TrustStoreResponseOption')
363
379
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
364
380
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
365
381
  UpdateArchiveRequest = Shapes::StructureShape.new(name: 'UpdateArchiveRequest')
@@ -468,6 +484,15 @@ module Aws::MailManager
468
484
 
469
485
  ArchivesList.member = Shapes::ShapeRef.new(shape: Archive)
470
486
 
487
+ BounceAction.add_member(:action_failure_policy, Shapes::ShapeRef.new(shape: ActionFailurePolicy, location_name: "ActionFailurePolicy"))
488
+ BounceAction.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "RoleArn"))
489
+ BounceAction.add_member(:sender, Shapes::ShapeRef.new(shape: EmailAddress, required: true, location_name: "Sender"))
490
+ BounceAction.add_member(:status_code, Shapes::ShapeRef.new(shape: StatusCode, required: true, location_name: "StatusCode"))
491
+ BounceAction.add_member(:smtp_reply_code, Shapes::ShapeRef.new(shape: SmtpReplyCode, required: true, location_name: "SmtpReplyCode"))
492
+ BounceAction.add_member(:diagnostic_message, Shapes::ShapeRef.new(shape: DiagnosticMessage, required: true, location_name: "DiagnosticMessage"))
493
+ BounceAction.add_member(:message, Shapes::ShapeRef.new(shape: BounceMessage, location_name: "Message"))
494
+ BounceAction.struct_class = Types::BounceAction
495
+
471
496
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
472
497
  ConflictException.struct_class = Types::ConflictException
473
498
 
@@ -522,6 +547,7 @@ module Aws::MailManager
522
547
  CreateIngressPointRequest.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, required: true, location_name: "TrafficPolicyId"))
523
548
  CreateIngressPointRequest.add_member(:ingress_point_configuration, Shapes::ShapeRef.new(shape: IngressPointConfiguration, location_name: "IngressPointConfiguration"))
524
549
  CreateIngressPointRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "NetworkConfiguration"))
550
+ CreateIngressPointRequest.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
525
551
  CreateIngressPointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
526
552
  CreateIngressPointRequest.struct_class = Types::CreateIngressPointRequest
527
553
 
@@ -744,6 +770,7 @@ module Aws::MailManager
744
770
  GetArchiveSearchResultsResponse.struct_class = Types::GetArchiveSearchResultsResponse
745
771
 
746
772
  GetIngressPointRequest.add_member(:ingress_point_id, Shapes::ShapeRef.new(shape: IngressPointId, required: true, location_name: "IngressPointId"))
773
+ GetIngressPointRequest.add_member(:include_trust_store_contents, Shapes::ShapeRef.new(shape: TrustStoreResponseOption, location_name: "IncludeTrustStoreContents"))
747
774
  GetIngressPointRequest.struct_class = Types::GetIngressPointRequest
748
775
 
749
776
  GetIngressPointResponse.add_member(:ingress_point_id, Shapes::ShapeRef.new(shape: IngressPointId, required: true, location_name: "IngressPointId"))
@@ -756,6 +783,7 @@ module Aws::MailManager
756
783
  GetIngressPointResponse.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
757
784
  GetIngressPointResponse.add_member(:ingress_point_auth_configuration, Shapes::ShapeRef.new(shape: IngressPointAuthConfiguration, location_name: "IngressPointAuthConfiguration"))
758
785
  GetIngressPointResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "NetworkConfiguration"))
786
+ GetIngressPointResponse.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
759
787
  GetIngressPointResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTimestamp"))
760
788
  GetIngressPointResponse.add_member(:last_updated_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTimestamp"))
761
789
  GetIngressPointResponse.struct_class = Types::GetIngressPointResponse
@@ -877,13 +905,16 @@ module Aws::MailManager
877
905
 
878
906
  IngressPointAuthConfiguration.add_member(:ingress_point_password_configuration, Shapes::ShapeRef.new(shape: IngressPointPasswordConfiguration, location_name: "IngressPointPasswordConfiguration"))
879
907
  IngressPointAuthConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
908
+ IngressPointAuthConfiguration.add_member(:tls_auth_configuration, Shapes::ShapeRef.new(shape: TlsAuthConfiguration, location_name: "TlsAuthConfiguration"))
880
909
  IngressPointAuthConfiguration.struct_class = Types::IngressPointAuthConfiguration
881
910
 
882
911
  IngressPointConfiguration.add_member(:smtp_password, Shapes::ShapeRef.new(shape: SmtpPassword, location_name: "SmtpPassword"))
883
912
  IngressPointConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
913
+ IngressPointConfiguration.add_member(:tls_auth_configuration, Shapes::ShapeRef.new(shape: TlsAuthConfiguration, location_name: "TlsAuthConfiguration"))
884
914
  IngressPointConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
885
915
  IngressPointConfiguration.add_member_subclass(:smtp_password, Types::IngressPointConfiguration::SmtpPassword)
886
916
  IngressPointConfiguration.add_member_subclass(:secret_arn, Types::IngressPointConfiguration::SecretArn)
917
+ IngressPointConfiguration.add_member_subclass(:tls_auth_configuration, Types::IngressPointConfiguration::TlsAuthConfiguration)
887
918
  IngressPointConfiguration.add_member_subclass(:unknown, Types::IngressPointConfiguration::Unknown)
888
919
  IngressPointConfiguration.struct_class = Types::IngressPointConfiguration
889
920
 
@@ -918,6 +949,13 @@ module Aws::MailManager
918
949
  IngressTlsProtocolToEvaluate.add_member_subclass(:unknown, Types::IngressTlsProtocolToEvaluate::Unknown)
919
950
  IngressTlsProtocolToEvaluate.struct_class = Types::IngressTlsProtocolToEvaluate
920
951
 
952
+ InvokeLambdaAction.add_member(:action_failure_policy, Shapes::ShapeRef.new(shape: ActionFailurePolicy, location_name: "ActionFailurePolicy"))
953
+ InvokeLambdaAction.add_member(:function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "FunctionArn"))
954
+ InvokeLambdaAction.add_member(:invocation_type, Shapes::ShapeRef.new(shape: LambdaInvocationType, required: true, location_name: "InvocationType"))
955
+ InvokeLambdaAction.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "RoleArn"))
956
+ InvokeLambdaAction.add_member(:retry_time_minutes, Shapes::ShapeRef.new(shape: LambdaRetryTimeMinutes, location_name: "RetryTimeMinutes"))
957
+ InvokeLambdaAction.struct_class = Types::InvokeLambdaAction
958
+
921
959
  Ipv4Cidrs.member = Shapes::ShapeRef.new(shape: Ipv4Cidr)
922
960
 
923
961
  Ipv6Cidrs.member = Shapes::ShapeRef.new(shape: Ipv6Cidr)
@@ -1160,6 +1198,8 @@ module Aws::MailManager
1160
1198
  RuleAction.add_member(:deliver_to_mailbox, Shapes::ShapeRef.new(shape: DeliverToMailboxAction, location_name: "DeliverToMailbox"))
1161
1199
  RuleAction.add_member(:deliver_to_q_business, Shapes::ShapeRef.new(shape: DeliverToQBusinessAction, location_name: "DeliverToQBusiness"))
1162
1200
  RuleAction.add_member(:publish_to_sns, Shapes::ShapeRef.new(shape: SnsAction, location_name: "PublishToSns"))
1201
+ RuleAction.add_member(:bounce, Shapes::ShapeRef.new(shape: BounceAction, location_name: "Bounce"))
1202
+ RuleAction.add_member(:invoke_lambda, Shapes::ShapeRef.new(shape: InvokeLambdaAction, location_name: "InvokeLambda"))
1163
1203
  RuleAction.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1164
1204
  RuleAction.add_member_subclass(:drop, Types::RuleAction::Drop)
1165
1205
  RuleAction.add_member_subclass(:relay, Types::RuleAction::Relay)
@@ -1171,6 +1211,8 @@ module Aws::MailManager
1171
1211
  RuleAction.add_member_subclass(:deliver_to_mailbox, Types::RuleAction::DeliverToMailbox)
1172
1212
  RuleAction.add_member_subclass(:deliver_to_q_business, Types::RuleAction::DeliverToQBusiness)
1173
1213
  RuleAction.add_member_subclass(:publish_to_sns, Types::RuleAction::PublishToSns)
1214
+ RuleAction.add_member_subclass(:bounce, Types::RuleAction::Bounce)
1215
+ RuleAction.add_member_subclass(:invoke_lambda, Types::RuleAction::InvokeLambda)
1174
1216
  RuleAction.add_member_subclass(:unknown, Types::RuleAction::Unknown)
1175
1217
  RuleAction.struct_class = Types::RuleAction
1176
1218
 
@@ -1261,10 +1303,12 @@ module Aws::MailManager
1261
1303
  RuleStringToEvaluate.add_member(:attribute, Shapes::ShapeRef.new(shape: RuleStringEmailAttribute, location_name: "Attribute"))
1262
1304
  RuleStringToEvaluate.add_member(:mime_header_attribute, Shapes::ShapeRef.new(shape: MimeHeaderAttribute, location_name: "MimeHeaderAttribute"))
1263
1305
  RuleStringToEvaluate.add_member(:analysis, Shapes::ShapeRef.new(shape: Analysis, location_name: "Analysis"))
1306
+ RuleStringToEvaluate.add_member(:client_certificate_attribute, Shapes::ShapeRef.new(shape: RuleClientCertificateAttribute, location_name: "ClientCertificateAttribute"))
1264
1307
  RuleStringToEvaluate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1265
1308
  RuleStringToEvaluate.add_member_subclass(:attribute, Types::RuleStringToEvaluate::Attribute)
1266
1309
  RuleStringToEvaluate.add_member_subclass(:mime_header_attribute, Types::RuleStringToEvaluate::MimeHeaderAttribute)
1267
1310
  RuleStringToEvaluate.add_member_subclass(:analysis, Types::RuleStringToEvaluate::Analysis)
1311
+ RuleStringToEvaluate.add_member_subclass(:client_certificate_attribute, Types::RuleStringToEvaluate::ClientCertificateAttribute)
1268
1312
  RuleStringToEvaluate.add_member_subclass(:unknown, Types::RuleStringToEvaluate::Unknown)
1269
1313
  RuleStringToEvaluate.struct_class = Types::RuleStringToEvaluate
1270
1314
 
@@ -1390,6 +1434,9 @@ module Aws::MailManager
1390
1434
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
1391
1435
  ThrottlingException.struct_class = Types::ThrottlingException
1392
1436
 
1437
+ TlsAuthConfiguration.add_member(:trust_store, Shapes::ShapeRef.new(shape: TrustStore, location_name: "TrustStore"))
1438
+ TlsAuthConfiguration.struct_class = Types::TlsAuthConfiguration
1439
+
1393
1440
  TrafficPolicy.add_member(:traffic_policy_name, Shapes::ShapeRef.new(shape: TrafficPolicyName, required: true, location_name: "TrafficPolicyName"))
1394
1441
  TrafficPolicy.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, required: true, location_name: "TrafficPolicyId"))
1395
1442
  TrafficPolicy.add_member(:default_action, Shapes::ShapeRef.new(shape: AcceptAction, required: true, location_name: "DefaultAction"))
@@ -1397,6 +1444,11 @@ module Aws::MailManager
1397
1444
 
1398
1445
  TrafficPolicyList.member = Shapes::ShapeRef.new(shape: TrafficPolicy)
1399
1446
 
1447
+ TrustStore.add_member(:ca_content, Shapes::ShapeRef.new(shape: CAContent, required: true, location_name: "CAContent"))
1448
+ TrustStore.add_member(:crl_content, Shapes::ShapeRef.new(shape: CrlContent, location_name: "CrlContent"))
1449
+ TrustStore.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
1450
+ TrustStore.struct_class = Types::TrustStore
1451
+
1400
1452
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TaggableResourceArn, required: true, location_name: "ResourceArn"))
1401
1453
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
1402
1454
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -1416,6 +1468,7 @@ module Aws::MailManager
1416
1468
  UpdateIngressPointRequest.add_member(:rule_set_id, Shapes::ShapeRef.new(shape: RuleSetId, location_name: "RuleSetId"))
1417
1469
  UpdateIngressPointRequest.add_member(:traffic_policy_id, Shapes::ShapeRef.new(shape: TrafficPolicyId, location_name: "TrafficPolicyId"))
1418
1470
  UpdateIngressPointRequest.add_member(:ingress_point_configuration, Shapes::ShapeRef.new(shape: IngressPointConfiguration, location_name: "IngressPointConfiguration"))
1471
+ UpdateIngressPointRequest.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
1419
1472
  UpdateIngressPointRequest.struct_class = Types::UpdateIngressPointRequest
1420
1473
 
1421
1474
  UpdateIngressPointResponse.struct_class = Types::UpdateIngressPointResponse
@@ -1490,6 +1543,7 @@ module Aws::MailManager
1490
1543
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1491
1544
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1492
1545
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1546
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1493
1547
  end)
1494
1548
 
1495
1549
  api.add_operation(:create_address_list, Seahorse::Model::Operation.new.tap do |o|
@@ -1600,6 +1654,7 @@ module Aws::MailManager
1600
1654
  o.http_request_uri = "/"
1601
1655
  o.input = Shapes::ShapeRef.new(shape: DeleteAddressListRequest)
1602
1656
  o.output = Shapes::ShapeRef.new(shape: DeleteAddressListResponse)
1657
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1603
1658
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1604
1659
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1605
1660
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -1668,6 +1723,7 @@ module Aws::MailManager
1668
1723
  o.output = Shapes::ShapeRef.new(shape: DeregisterMemberFromAddressListResponse)
1669
1724
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1670
1725
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1726
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1671
1727
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1672
1728
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1673
1729
  end)
@@ -2051,6 +2107,7 @@ module Aws::MailManager
2051
2107
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2052
2108
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2053
2109
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2110
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2054
2111
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2055
2112
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2056
2113
  end)
@@ -399,6 +399,57 @@ module Aws::MailManager
399
399
  class Unknown < ArchiveStringToEvaluate; end
400
400
  end
401
401
 
402
+ # The action to send a bounce response for the email. When executed,
403
+ # this action generates a non-delivery report (bounce) back to the
404
+ # sender.
405
+ #
406
+ # @!attribute [rw] action_failure_policy
407
+ # A policy that states what to do in the case of failure. The action
408
+ # will fail if there are configuration errors. For example, the caller
409
+ # does not have the permissions to call the SendBounce API.
410
+ # @return [String]
411
+ #
412
+ # @!attribute [rw] role_arn
413
+ # The Amazon Resource Name (ARN) of the IAM role to use to send the
414
+ # bounce message.
415
+ # @return [String]
416
+ #
417
+ # @!attribute [rw] sender
418
+ # The sender email address of the bounce message.
419
+ # @return [String]
420
+ #
421
+ # @!attribute [rw] status_code
422
+ # The enhanced status code for the bounce, in the format of x.y.z
423
+ # (e.g. 5.1.1).
424
+ # @return [String]
425
+ #
426
+ # @!attribute [rw] smtp_reply_code
427
+ # The SMTP reply code for the bounce, as defined by RFC 5321.
428
+ # @return [String]
429
+ #
430
+ # @!attribute [rw] diagnostic_message
431
+ # The diagnostic message included in the Diagnostic-Code header of the
432
+ # bounce.
433
+ # @return [String]
434
+ #
435
+ # @!attribute [rw] message
436
+ # The human-readable text to include in the bounce message.
437
+ # @return [String]
438
+ #
439
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/BounceAction AWS API Documentation
440
+ #
441
+ class BounceAction < Struct.new(
442
+ :action_failure_policy,
443
+ :role_arn,
444
+ :sender,
445
+ :status_code,
446
+ :smtp_reply_code,
447
+ :diagnostic_message,
448
+ :message)
449
+ SENSITIVE = [:sender, :diagnostic_message, :message]
450
+ include Aws::Structure
451
+ end
452
+
402
453
  # The request configuration has conflicts. For details, see the
403
454
  # accompanying error message.
404
455
  #
@@ -678,6 +729,11 @@ module Aws::MailManager
678
729
  # IPv4-only.
679
730
  # @return [Types::NetworkConfiguration]
680
731
  #
732
+ # @!attribute [rw] tls_policy
733
+ # The Transport Layer Security (TLS) policy for the ingress point. The
734
+ # FIPS value is only valid in US and Canada regions.
735
+ # @return [String]
736
+ #
681
737
  # @!attribute [rw] tags
682
738
  # The tags used to organize, track, or control access for the
683
739
  # resource. For example, \{ "tags": \{"key1":"value1",
@@ -694,6 +750,7 @@ module Aws::MailManager
694
750
  :traffic_policy_id,
695
751
  :ingress_point_configuration,
696
752
  :network_configuration,
753
+ :tls_policy,
697
754
  :tags)
698
755
  SENSITIVE = []
699
756
  include Aws::Structure
@@ -1688,10 +1745,16 @@ module Aws::MailManager
1688
1745
  # The identifier of an ingress endpoint.
1689
1746
  # @return [String]
1690
1747
  #
1748
+ # @!attribute [rw] include_trust_store_contents
1749
+ # Whether to include the trust store contents in the response. Use
1750
+ # INCLUDE to retrieve trust store certificate and CRL contents.
1751
+ # @return [String]
1752
+ #
1691
1753
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/GetIngressPointRequest AWS API Documentation
1692
1754
  #
1693
1755
  class GetIngressPointRequest < Struct.new(
1694
- :ingress_point_id)
1756
+ :ingress_point_id,
1757
+ :include_trust_store_contents)
1695
1758
  SENSITIVE = []
1696
1759
  include Aws::Structure
1697
1760
  end
@@ -1740,6 +1803,11 @@ module Aws::MailManager
1740
1803
  # The network configuration for the ingress point.
1741
1804
  # @return [Types::NetworkConfiguration]
1742
1805
  #
1806
+ # @!attribute [rw] tls_policy
1807
+ # The selected Transport Layer Security (TLS) policy of the ingress
1808
+ # point.
1809
+ # @return [String]
1810
+ #
1743
1811
  # @!attribute [rw] created_timestamp
1744
1812
  # The timestamp of when the ingress endpoint was created.
1745
1813
  # @return [Time]
@@ -1761,6 +1829,7 @@ module Aws::MailManager
1761
1829
  :traffic_policy_id,
1762
1830
  :ingress_point_auth_configuration,
1763
1831
  :network_configuration,
1832
+ :tls_policy,
1764
1833
  :created_timestamp,
1765
1834
  :last_updated_timestamp)
1766
1835
  SENSITIVE = []
@@ -2300,11 +2369,17 @@ module Aws::MailManager
2300
2369
  # the ingress endpoint resource.
2301
2370
  # @return [String]
2302
2371
  #
2372
+ # @!attribute [rw] tls_auth_configuration
2373
+ # The mutual TLS authentication configuration for the ingress endpoint
2374
+ # resource.
2375
+ # @return [Types::TlsAuthConfiguration]
2376
+ #
2303
2377
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressPointAuthConfiguration AWS API Documentation
2304
2378
  #
2305
2379
  class IngressPointAuthConfiguration < Struct.new(
2306
2380
  :ingress_point_password_configuration,
2307
- :secret_arn)
2381
+ :secret_arn,
2382
+ :tls_auth_configuration)
2308
2383
  SENSITIVE = []
2309
2384
  include Aws::Structure
2310
2385
  end
@@ -2321,11 +2396,17 @@ module Aws::MailManager
2321
2396
  # The SecretsManager::Secret ARN of the ingress endpoint resource.
2322
2397
  # @return [String]
2323
2398
  #
2399
+ # @!attribute [rw] tls_auth_configuration
2400
+ # The mutual TLS authentication configuration of the ingress endpoint
2401
+ # resource.
2402
+ # @return [Types::TlsAuthConfiguration]
2403
+ #
2324
2404
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/IngressPointConfiguration AWS API Documentation
2325
2405
  #
2326
2406
  class IngressPointConfiguration < Struct.new(
2327
2407
  :smtp_password,
2328
2408
  :secret_arn,
2409
+ :tls_auth_configuration,
2329
2410
  :unknown)
2330
2411
  SENSITIVE = [:smtp_password]
2331
2412
  include Aws::Structure
@@ -2333,6 +2414,7 @@ module Aws::MailManager
2333
2414
 
2334
2415
  class SmtpPassword < IngressPointConfiguration; end
2335
2416
  class SecretArn < IngressPointConfiguration; end
2417
+ class TlsAuthConfiguration < IngressPointConfiguration; end
2336
2418
  class Unknown < IngressPointConfiguration; end
2337
2419
  end
2338
2420
 
@@ -2469,6 +2551,48 @@ module Aws::MailManager
2469
2551
  class Unknown < IngressTlsProtocolToEvaluate; end
2470
2552
  end
2471
2553
 
2554
+ # The action to invoke an Amazon Web Services Lambda function for
2555
+ # processing the email.
2556
+ #
2557
+ # @!attribute [rw] action_failure_policy
2558
+ # A policy that states what to do in the case of failure. The action
2559
+ # will fail if there are configuration errors. For example, the Amazon
2560
+ # Web Services Lambda function no longer exists.
2561
+ # @return [String]
2562
+ #
2563
+ # @!attribute [rw] function_arn
2564
+ # The Amazon Resource Name (ARN) of the Lambda function to invoke.
2565
+ # @return [String]
2566
+ #
2567
+ # @!attribute [rw] invocation_type
2568
+ # The invocation type of the Lambda function. Use EVENT for
2569
+ # asynchronous invocation or REQUEST\_RESPONSE for synchronous
2570
+ # invocation.
2571
+ # @return [String]
2572
+ #
2573
+ # @!attribute [rw] role_arn
2574
+ # The Amazon Resource Name (ARN) of the IAM role to use to invoke the
2575
+ # Lambda function.
2576
+ # @return [String]
2577
+ #
2578
+ # @!attribute [rw] retry_time_minutes
2579
+ # The maximum time in minutes that the email processing can be retried
2580
+ # if the Lambda invocation fails. The maximum value is 2160 minutes
2581
+ # (36 hours).
2582
+ # @return [Integer]
2583
+ #
2584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/InvokeLambdaAction AWS API Documentation
2585
+ #
2586
+ class InvokeLambdaAction < Struct.new(
2587
+ :action_failure_policy,
2588
+ :function_arn,
2589
+ :invocation_type,
2590
+ :role_arn,
2591
+ :retry_time_minutes)
2592
+ SENSITIVE = []
2593
+ include Aws::Structure
2594
+ end
2595
+
2472
2596
  # @!attribute [rw] next_token
2473
2597
  # If you received a pagination token from a previous call to this API,
2474
2598
  # you can provide it here to continue paginating through the next page
@@ -3597,6 +3721,15 @@ module Aws::MailManager
3597
3721
  # This action publishes the email content to an Amazon SNS topic.
3598
3722
  # @return [Types::SnsAction]
3599
3723
  #
3724
+ # @!attribute [rw] bounce
3725
+ # This action sends a bounce response for the email.
3726
+ # @return [Types::BounceAction]
3727
+ #
3728
+ # @!attribute [rw] invoke_lambda
3729
+ # This action invokes an Amazon Web Services Lambda function to
3730
+ # process the email.
3731
+ # @return [Types::InvokeLambdaAction]
3732
+ #
3600
3733
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleAction AWS API Documentation
3601
3734
  #
3602
3735
  class RuleAction < Struct.new(
@@ -3610,6 +3743,8 @@ module Aws::MailManager
3610
3743
  :deliver_to_mailbox,
3611
3744
  :deliver_to_q_business,
3612
3745
  :publish_to_sns,
3746
+ :bounce,
3747
+ :invoke_lambda,
3613
3748
  :unknown)
3614
3749
  SENSITIVE = []
3615
3750
  include Aws::Structure
@@ -3625,6 +3760,8 @@ module Aws::MailManager
3625
3760
  class DeliverToMailbox < RuleAction; end
3626
3761
  class DeliverToQBusiness < RuleAction; end
3627
3762
  class PublishToSns < RuleAction; end
3763
+ class Bounce < RuleAction; end
3764
+ class InvokeLambda < RuleAction; end
3628
3765
  class Unknown < RuleAction; end
3629
3766
  end
3630
3767
 
@@ -3943,7 +4080,7 @@ module Aws::MailManager
3943
4080
  :evaluate,
3944
4081
  :operator,
3945
4082
  :values)
3946
- SENSITIVE = []
4083
+ SENSITIVE = [:values]
3947
4084
  include Aws::Structure
3948
4085
  end
3949
4086
 
@@ -3967,12 +4104,18 @@ module Aws::MailManager
3967
4104
  # condition expression.
3968
4105
  # @return [Types::Analysis]
3969
4106
  #
4107
+ # @!attribute [rw] client_certificate_attribute
4108
+ # The client certificate attribute to evaluate in a string condition
4109
+ # expression.
4110
+ # @return [String]
4111
+ #
3970
4112
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/RuleStringToEvaluate AWS API Documentation
3971
4113
  #
3972
4114
  class RuleStringToEvaluate < Struct.new(
3973
4115
  :attribute,
3974
4116
  :mime_header_attribute,
3975
4117
  :analysis,
4118
+ :client_certificate_attribute,
3976
4119
  :unknown)
3977
4120
  SENSITIVE = []
3978
4121
  include Aws::Structure
@@ -3981,6 +4124,7 @@ module Aws::MailManager
3981
4124
  class Attribute < RuleStringToEvaluate; end
3982
4125
  class MimeHeaderAttribute < RuleStringToEvaluate; end
3983
4126
  class Analysis < RuleStringToEvaluate; end
4127
+ class ClientCertificateAttribute < RuleStringToEvaluate; end
3984
4128
  class Unknown < RuleStringToEvaluate; end
3985
4129
  end
3986
4130
 
@@ -4490,6 +4634,20 @@ module Aws::MailManager
4490
4634
  include Aws::Structure
4491
4635
  end
4492
4636
 
4637
+ # The mutual TLS authentication configuration for an ingress endpoint.
4638
+ #
4639
+ # @!attribute [rw] trust_store
4640
+ # The trust store configuration for mutual TLS authentication.
4641
+ # @return [Types::TrustStore]
4642
+ #
4643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/TlsAuthConfiguration AWS API Documentation
4644
+ #
4645
+ class TlsAuthConfiguration < Struct.new(
4646
+ :trust_store)
4647
+ SENSITIVE = []
4648
+ include Aws::Structure
4649
+ end
4650
+
4493
4651
  # The structure of a traffic policy resource which is a container for
4494
4652
  # policy statements.
4495
4653
  #
@@ -4517,6 +4675,36 @@ module Aws::MailManager
4517
4675
  include Aws::Structure
4518
4676
  end
4519
4677
 
4678
+ # The trust store used for mutual TLS authentication. It contains the
4679
+ # certificate authority (CA) certificates and optional certificate
4680
+ # revocation list (CRL).
4681
+ #
4682
+ # @!attribute [rw] ca_content
4683
+ # The PEM-encoded certificate authority (CA) certificates bundle for
4684
+ # the trust store.
4685
+ # @return [String]
4686
+ #
4687
+ # @!attribute [rw] crl_content
4688
+ # The PEM-encoded certificate revocation lists (CRLs) for the trust
4689
+ # store. There can be one CRL per certificate authority (CA) in the
4690
+ # trust store.
4691
+ # @return [String]
4692
+ #
4693
+ # @!attribute [rw] kms_key_arn
4694
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
4695
+ # trust store contents.
4696
+ # @return [String]
4697
+ #
4698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/TrustStore AWS API Documentation
4699
+ #
4700
+ class TrustStore < Struct.new(
4701
+ :ca_content,
4702
+ :crl_content,
4703
+ :kms_key_arn)
4704
+ SENSITIVE = [:ca_content, :crl_content]
4705
+ include Aws::Structure
4706
+ end
4707
+
4520
4708
  # @!attribute [rw] resource_arn
4521
4709
  # The Amazon Resource Name (ARN) of the resource that you want to
4522
4710
  # untag.
@@ -4600,6 +4788,12 @@ module Aws::MailManager
4600
4788
  # either an SMTP password or a secret ARN.
4601
4789
  # @return [Types::IngressPointConfiguration]
4602
4790
  #
4791
+ # @!attribute [rw] tls_policy
4792
+ # The Transport Layer Security (TLS) policy for the ingress point.
4793
+ # Valid values are REQUIRED, OPTIONAL. Only ingress endpoints using
4794
+ # REQUIRED or OPTIONAL as TlsPolicy can be updated.
4795
+ # @return [String]
4796
+ #
4603
4797
  # @see http://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/UpdateIngressPointRequest AWS API Documentation
4604
4798
  #
4605
4799
  class UpdateIngressPointRequest < Struct.new(
@@ -4608,7 +4802,8 @@ module Aws::MailManager
4608
4802
  :status_to_update,
4609
4803
  :rule_set_id,
4610
4804
  :traffic_policy_id,
4611
- :ingress_point_configuration)
4805
+ :ingress_point_configuration,
4806
+ :tls_policy)
4612
4807
  SENSITIVE = []
4613
4808
  include Aws::Structure
4614
4809
  end
@@ -55,7 +55,7 @@ module Aws::MailManager
55
55
  autoload :EndpointProvider, 'aws-sdk-mailmanager/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-mailmanager/endpoints'
57
57
 
58
- GEM_VERSION = '1.40.0'
58
+ GEM_VERSION = '1.41.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -175,12 +175,19 @@ module Aws
175
175
  def create_ingress_point: (
176
176
  ?client_token: ::String,
177
177
  ingress_point_name: ::String,
178
- type: ("OPEN" | "AUTH"),
178
+ type: ("OPEN" | "AUTH" | "MTLS"),
179
179
  rule_set_id: ::String,
180
180
  traffic_policy_id: ::String,
181
181
  ?ingress_point_configuration: {
182
182
  smtp_password: ::String?,
183
- secret_arn: ::String?
183
+ secret_arn: ::String?,
184
+ tls_auth_configuration: {
185
+ trust_store: {
186
+ ca_content: ::String,
187
+ crl_content: ::String?,
188
+ kms_key_arn: ::String?
189
+ }?
190
+ }?
184
191
  },
185
192
  ?network_configuration: {
186
193
  public_network_configuration: {
@@ -190,6 +197,7 @@ module Aws
190
197
  vpc_endpoint_id: ::String
191
198
  }?
192
199
  },
200
+ ?tls_policy: ("REQUIRED" | "OPTIONAL" | "FIPS"),
193
201
  ?tags: Array[
194
202
  {
195
203
  key: ::String,
@@ -257,7 +265,8 @@ module Aws
257
265
  analysis: {
258
266
  analyzer: ::String,
259
267
  result_field: ::String
260
- }?
268
+ }?,
269
+ client_certificate_attribute: ("CN" | "SAN_RFC822_NAME" | "SAN_DNS_NAME" | "SAN_DIRECTORY_NAME" | "SAN_UNIFORM_RESOURCE_IDENTIFIER" | "SAN_IP_ADDRESS" | "SAN_REGISTERED_ID" | "SERIAL_NUMBER")?
261
270
  },
262
271
  operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
263
272
  values: Array[::String]
@@ -316,7 +325,8 @@ module Aws
316
325
  analysis: {
317
326
  analyzer: ::String,
318
327
  result_field: ::String
319
- }?
328
+ }?,
329
+ client_certificate_attribute: ("CN" | "SAN_RFC822_NAME" | "SAN_DNS_NAME" | "SAN_DIRECTORY_NAME" | "SAN_UNIFORM_RESOURCE_IDENTIFIER" | "SAN_IP_ADDRESS" | "SAN_REGISTERED_ID" | "SERIAL_NUMBER")?
320
330
  },
321
331
  operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
322
332
  values: Array[::String]
@@ -400,6 +410,22 @@ module Aws
400
410
  role_arn: ::String,
401
411
  encoding: ("UTF-8" | "BASE64")?,
402
412
  payload_type: ("HEADERS" | "CONTENT")?
413
+ }?,
414
+ bounce: {
415
+ action_failure_policy: ("CONTINUE" | "DROP")?,
416
+ role_arn: ::String,
417
+ sender: ::String,
418
+ status_code: ::String,
419
+ smtp_reply_code: ::String,
420
+ diagnostic_message: ::String,
421
+ message: ::String?
422
+ }?,
423
+ invoke_lambda: {
424
+ action_failure_policy: ("CONTINUE" | "DROP")?,
425
+ function_arn: ::String,
426
+ invocation_type: ("EVENT" | "REQUEST_RESPONSE"),
427
+ role_arn: ::String,
428
+ retry_time_minutes: ::Integer?
403
429
  }?
404
430
  },
405
431
  ]
@@ -713,19 +739,21 @@ module Aws
713
739
  def ingress_point_id: () -> ::String
714
740
  def ingress_point_name: () -> ::String
715
741
  def ingress_point_arn: () -> ::String
716
- def status: () -> ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
717
- def type: () -> ("OPEN" | "AUTH")
742
+ def status: () -> ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED" | "ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST")
743
+ def type: () -> ("OPEN" | "AUTH" | "MTLS")
718
744
  def a_record: () -> ::String
719
745
  def rule_set_id: () -> ::String
720
746
  def traffic_policy_id: () -> ::String
721
747
  def ingress_point_auth_configuration: () -> Types::IngressPointAuthConfiguration
722
748
  def network_configuration: () -> Types::NetworkConfiguration
749
+ def tls_policy: () -> ("REQUIRED" | "OPTIONAL" | "FIPS")
723
750
  def created_timestamp: () -> ::Time
724
751
  def last_updated_timestamp: () -> ::Time
725
752
  end
726
753
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MailManager/Client.html#get_ingress_point-instance_method
727
754
  def get_ingress_point: (
728
- ingress_point_id: ::String
755
+ ingress_point_id: ::String,
756
+ ?include_trust_store_contents: ("EXCLUDE" | "INCLUDE")
729
757
  ) -> _GetIngressPointResponseSuccess
730
758
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIngressPointResponseSuccess
731
759
 
@@ -1151,8 +1179,16 @@ module Aws
1151
1179
  ?traffic_policy_id: ::String,
1152
1180
  ?ingress_point_configuration: {
1153
1181
  smtp_password: ::String?,
1154
- secret_arn: ::String?
1155
- }
1182
+ secret_arn: ::String?,
1183
+ tls_auth_configuration: {
1184
+ trust_store: {
1185
+ ca_content: ::String,
1186
+ crl_content: ::String?,
1187
+ kms_key_arn: ::String?
1188
+ }?
1189
+ }?
1190
+ },
1191
+ ?tls_policy: ("REQUIRED" | "OPTIONAL" | "FIPS")
1156
1192
  ) -> _UpdateIngressPointResponseSuccess
1157
1193
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIngressPointResponseSuccess
1158
1194
 
@@ -1206,7 +1242,8 @@ module Aws
1206
1242
  analysis: {
1207
1243
  analyzer: ::String,
1208
1244
  result_field: ::String
1209
- }?
1245
+ }?,
1246
+ client_certificate_attribute: ("CN" | "SAN_RFC822_NAME" | "SAN_DNS_NAME" | "SAN_DIRECTORY_NAME" | "SAN_UNIFORM_RESOURCE_IDENTIFIER" | "SAN_IP_ADDRESS" | "SAN_REGISTERED_ID" | "SERIAL_NUMBER")?
1210
1247
  },
1211
1248
  operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
1212
1249
  values: Array[::String]
@@ -1265,7 +1302,8 @@ module Aws
1265
1302
  analysis: {
1266
1303
  analyzer: ::String,
1267
1304
  result_field: ::String
1268
- }?
1305
+ }?,
1306
+ client_certificate_attribute: ("CN" | "SAN_RFC822_NAME" | "SAN_DNS_NAME" | "SAN_DIRECTORY_NAME" | "SAN_UNIFORM_RESOURCE_IDENTIFIER" | "SAN_IP_ADDRESS" | "SAN_REGISTERED_ID" | "SERIAL_NUMBER")?
1269
1307
  },
1270
1308
  operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS"),
1271
1309
  values: Array[::String]
@@ -1349,6 +1387,22 @@ module Aws
1349
1387
  role_arn: ::String,
1350
1388
  encoding: ("UTF-8" | "BASE64")?,
1351
1389
  payload_type: ("HEADERS" | "CONTENT")?
1390
+ }?,
1391
+ bounce: {
1392
+ action_failure_policy: ("CONTINUE" | "DROP")?,
1393
+ role_arn: ::String,
1394
+ sender: ::String,
1395
+ status_code: ::String,
1396
+ smtp_reply_code: ::String,
1397
+ diagnostic_message: ::String,
1398
+ message: ::String?
1399
+ }?,
1400
+ invoke_lambda: {
1401
+ action_failure_policy: ("CONTINUE" | "DROP")?,
1402
+ function_arn: ::String,
1403
+ invocation_type: ("EVENT" | "REQUEST_RESPONSE"),
1404
+ role_arn: ::String,
1405
+ retry_time_minutes: ::Integer?
1352
1406
  }?
1353
1407
  },
1354
1408
  ]
data/sig/types.rbs CHANGED
@@ -136,6 +136,17 @@ module Aws::MailManager
136
136
  end
137
137
  end
138
138
 
139
+ class BounceAction
140
+ attr_accessor action_failure_policy: ("CONTINUE" | "DROP")
141
+ attr_accessor role_arn: ::String
142
+ attr_accessor sender: ::String
143
+ attr_accessor status_code: ::String
144
+ attr_accessor smtp_reply_code: ::String
145
+ attr_accessor diagnostic_message: ::String
146
+ attr_accessor message: ::String
147
+ SENSITIVE: [:sender, :diagnostic_message, :message]
148
+ end
149
+
139
150
  class ConflictException
140
151
  attr_accessor message: ::String
141
152
  SENSITIVE: []
@@ -208,11 +219,12 @@ module Aws::MailManager
208
219
  class CreateIngressPointRequest
209
220
  attr_accessor client_token: ::String
210
221
  attr_accessor ingress_point_name: ::String
211
- attr_accessor type: ("OPEN" | "AUTH")
222
+ attr_accessor type: ("OPEN" | "AUTH" | "MTLS")
212
223
  attr_accessor rule_set_id: ::String
213
224
  attr_accessor traffic_policy_id: ::String
214
225
  attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
215
226
  attr_accessor network_configuration: Types::NetworkConfiguration
227
+ attr_accessor tls_policy: ("REQUIRED" | "OPTIONAL" | "FIPS")
216
228
  attr_accessor tags: ::Array[Types::Tag]
217
229
  SENSITIVE: []
218
230
  end
@@ -530,6 +542,7 @@ module Aws::MailManager
530
542
 
531
543
  class GetIngressPointRequest
532
544
  attr_accessor ingress_point_id: ::String
545
+ attr_accessor include_trust_store_contents: ("EXCLUDE" | "INCLUDE")
533
546
  SENSITIVE: []
534
547
  end
535
548
 
@@ -537,13 +550,14 @@ module Aws::MailManager
537
550
  attr_accessor ingress_point_id: ::String
538
551
  attr_accessor ingress_point_name: ::String
539
552
  attr_accessor ingress_point_arn: ::String
540
- attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
541
- attr_accessor type: ("OPEN" | "AUTH")
553
+ attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED" | "ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST")
554
+ attr_accessor type: ("OPEN" | "AUTH" | "MTLS")
542
555
  attr_accessor a_record: ::String
543
556
  attr_accessor rule_set_id: ::String
544
557
  attr_accessor traffic_policy_id: ::String
545
558
  attr_accessor ingress_point_auth_configuration: Types::IngressPointAuthConfiguration
546
559
  attr_accessor network_configuration: Types::NetworkConfiguration
560
+ attr_accessor tls_policy: ("REQUIRED" | "OPTIONAL" | "FIPS")
547
561
  attr_accessor created_timestamp: ::Time
548
562
  attr_accessor last_updated_timestamp: ::Time
549
563
  SENSITIVE: []
@@ -702,8 +716,8 @@ module Aws::MailManager
702
716
  class IngressPoint
703
717
  attr_accessor ingress_point_name: ::String
704
718
  attr_accessor ingress_point_id: ::String
705
- attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED")
706
- attr_accessor type: ("OPEN" | "AUTH")
719
+ attr_accessor status: ("PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED" | "ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST")
720
+ attr_accessor type: ("OPEN" | "AUTH" | "MTLS")
707
721
  attr_accessor a_record: ::String
708
722
  SENSITIVE: []
709
723
  end
@@ -711,12 +725,14 @@ module Aws::MailManager
711
725
  class IngressPointAuthConfiguration
712
726
  attr_accessor ingress_point_password_configuration: Types::IngressPointPasswordConfiguration
713
727
  attr_accessor secret_arn: ::String
728
+ attr_accessor tls_auth_configuration: Types::TlsAuthConfiguration
714
729
  SENSITIVE: []
715
730
  end
716
731
 
717
732
  class IngressPointConfiguration
718
733
  attr_accessor smtp_password: ::String
719
734
  attr_accessor secret_arn: ::String
735
+ attr_accessor tls_auth_configuration: Types::TlsAuthConfiguration
720
736
  attr_accessor unknown: untyped
721
737
  SENSITIVE: [:smtp_password]
722
738
 
@@ -724,6 +740,8 @@ module Aws::MailManager
724
740
  end
725
741
  class SecretArn < IngressPointConfiguration
726
742
  end
743
+ class TlsAuthConfiguration < IngressPointConfiguration
744
+ end
727
745
  class Unknown < IngressPointConfiguration
728
746
  end
729
747
  end
@@ -774,6 +792,15 @@ module Aws::MailManager
774
792
  end
775
793
  end
776
794
 
795
+ class InvokeLambdaAction
796
+ attr_accessor action_failure_policy: ("CONTINUE" | "DROP")
797
+ attr_accessor function_arn: ::String
798
+ attr_accessor invocation_type: ("EVENT" | "REQUEST_RESPONSE")
799
+ attr_accessor role_arn: ::String
800
+ attr_accessor retry_time_minutes: ::Integer
801
+ SENSITIVE: []
802
+ end
803
+
777
804
  class ListAddonInstancesRequest
778
805
  attr_accessor next_token: ::String
779
806
  attr_accessor page_size: ::Integer
@@ -1102,6 +1129,8 @@ module Aws::MailManager
1102
1129
  attr_accessor deliver_to_mailbox: Types::DeliverToMailboxAction
1103
1130
  attr_accessor deliver_to_q_business: Types::DeliverToQBusinessAction
1104
1131
  attr_accessor publish_to_sns: Types::SnsAction
1132
+ attr_accessor bounce: Types::BounceAction
1133
+ attr_accessor invoke_lambda: Types::InvokeLambdaAction
1105
1134
  attr_accessor unknown: untyped
1106
1135
  SENSITIVE: []
1107
1136
 
@@ -1125,6 +1154,10 @@ module Aws::MailManager
1125
1154
  end
1126
1155
  class PublishToSns < RuleAction
1127
1156
  end
1157
+ class Bounce < RuleAction
1158
+ end
1159
+ class InvokeLambda < RuleAction
1160
+ end
1128
1161
  class Unknown < RuleAction
1129
1162
  end
1130
1163
  end
@@ -1244,6 +1277,7 @@ module Aws::MailManager
1244
1277
  attr_accessor attribute: ("MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC")
1245
1278
  attr_accessor mime_header_attribute: ::String
1246
1279
  attr_accessor analysis: Types::Analysis
1280
+ attr_accessor client_certificate_attribute: ("CN" | "SAN_RFC822_NAME" | "SAN_DNS_NAME" | "SAN_DIRECTORY_NAME" | "SAN_UNIFORM_RESOURCE_IDENTIFIER" | "SAN_IP_ADDRESS" | "SAN_REGISTERED_ID" | "SERIAL_NUMBER")
1247
1281
  attr_accessor unknown: untyped
1248
1282
  SENSITIVE: []
1249
1283
 
@@ -1253,6 +1287,8 @@ module Aws::MailManager
1253
1287
  end
1254
1288
  class Analysis < RuleStringToEvaluate
1255
1289
  end
1290
+ class ClientCertificateAttribute < RuleStringToEvaluate
1291
+ end
1256
1292
  class Unknown < RuleStringToEvaluate
1257
1293
  end
1258
1294
  end
@@ -1414,6 +1450,11 @@ module Aws::MailManager
1414
1450
  SENSITIVE: []
1415
1451
  end
1416
1452
 
1453
+ class TlsAuthConfiguration
1454
+ attr_accessor trust_store: Types::TrustStore
1455
+ SENSITIVE: []
1456
+ end
1457
+
1417
1458
  class TrafficPolicy
1418
1459
  attr_accessor traffic_policy_name: ::String
1419
1460
  attr_accessor traffic_policy_id: ::String
@@ -1421,6 +1462,13 @@ module Aws::MailManager
1421
1462
  SENSITIVE: []
1422
1463
  end
1423
1464
 
1465
+ class TrustStore
1466
+ attr_accessor ca_content: ::String
1467
+ attr_accessor crl_content: ::String
1468
+ attr_accessor kms_key_arn: ::String
1469
+ SENSITIVE: [:ca_content, :crl_content]
1470
+ end
1471
+
1424
1472
  class UntagResourceRequest
1425
1473
  attr_accessor resource_arn: ::String
1426
1474
  attr_accessor tag_keys: ::Array[::String]
@@ -1447,6 +1495,7 @@ module Aws::MailManager
1447
1495
  attr_accessor rule_set_id: ::String
1448
1496
  attr_accessor traffic_policy_id: ::String
1449
1497
  attr_accessor ingress_point_configuration: Types::IngressPointConfiguration
1498
+ attr_accessor tls_policy: ("REQUIRED" | "OPTIONAL" | "FIPS")
1450
1499
  SENSITIVE: []
1451
1500
  end
1452
1501
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mailmanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.40.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services