aws-cdk-lib 2.190.0__py3-none-any.whl → 2.191.0__py3-none-any.whl

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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

@@ -4823,6 +4823,14 @@ class CfnMailManagerIngressPoint(
4823
4823
  smtp_password="smtpPassword"
4824
4824
  ),
4825
4825
  ingress_point_name="ingressPointName",
4826
+ network_configuration=ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty(
4827
+ private_network_configuration=ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
4828
+ vpc_endpoint_id="vpcEndpointId"
4829
+ ),
4830
+ public_network_configuration=ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
4831
+ ip_type="ipType"
4832
+ )
4833
+ ),
4826
4834
  status_to_update="statusToUpdate",
4827
4835
  tags=[CfnTag(
4828
4836
  key="key",
@@ -4841,6 +4849,7 @@ class CfnMailManagerIngressPoint(
4841
4849
  type: builtins.str,
4842
4850
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.IngressPointConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4843
4851
  ingress_point_name: typing.Optional[builtins.str] = None,
4852
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.NetworkConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4844
4853
  status_to_update: typing.Optional[builtins.str] = None,
4845
4854
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
4846
4855
  ) -> None:
@@ -4852,6 +4861,7 @@ class CfnMailManagerIngressPoint(
4852
4861
  :param type: The type of the ingress endpoint to create.
4853
4862
  :param ingress_point_configuration: The configuration of the ingress endpoint resource.
4854
4863
  :param ingress_point_name: A user friendly name for an ingress endpoint resource.
4864
+ :param network_configuration: The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
4855
4865
  :param status_to_update: The update status of an ingress endpoint.
4856
4866
  :param tags: The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
4857
4867
  '''
@@ -4865,6 +4875,7 @@ class CfnMailManagerIngressPoint(
4865
4875
  type=type,
4866
4876
  ingress_point_configuration=ingress_point_configuration,
4867
4877
  ingress_point_name=ingress_point_name,
4878
+ network_configuration=network_configuration,
4868
4879
  status_to_update=status_to_update,
4869
4880
  tags=tags,
4870
4881
  )
@@ -5020,6 +5031,24 @@ class CfnMailManagerIngressPoint(
5020
5031
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5021
5032
  jsii.set(self, "ingressPointName", value) # pyright: ignore[reportArgumentType]
5022
5033
 
5034
+ @builtins.property
5035
+ @jsii.member(jsii_name="networkConfiguration")
5036
+ def network_configuration(
5037
+ self,
5038
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.NetworkConfigurationProperty"]]:
5039
+ '''The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.'''
5040
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.NetworkConfigurationProperty"]], jsii.get(self, "networkConfiguration"))
5041
+
5042
+ @network_configuration.setter
5043
+ def network_configuration(
5044
+ self,
5045
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.NetworkConfigurationProperty"]],
5046
+ ) -> None:
5047
+ if __debug__:
5048
+ type_hints = typing.get_type_hints(_typecheckingstub__fde2e4577760382a77b31bc0573fe3d8360be0fb229556d97fbde4dad4dd5248)
5049
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5050
+ jsii.set(self, "networkConfiguration", value) # pyright: ignore[reportArgumentType]
5051
+
5023
5052
  @builtins.property
5024
5053
  @jsii.member(jsii_name="statusToUpdate")
5025
5054
  def status_to_update(self) -> typing.Optional[builtins.str]:
@@ -5120,6 +5149,193 @@ class CfnMailManagerIngressPoint(
5120
5149
  k + "=" + repr(v) for k, v in self._values.items()
5121
5150
  )
5122
5151
 
5152
+ @jsii.data_type(
5153
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty",
5154
+ jsii_struct_bases=[],
5155
+ name_mapping={
5156
+ "private_network_configuration": "privateNetworkConfiguration",
5157
+ "public_network_configuration": "publicNetworkConfiguration",
5158
+ },
5159
+ )
5160
+ class NetworkConfigurationProperty:
5161
+ def __init__(
5162
+ self,
5163
+ *,
5164
+ private_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5165
+ public_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5166
+ ) -> None:
5167
+ '''The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
5168
+
5169
+ :param private_network_configuration: Specifies the network configuration for the private ingress point.
5170
+ :param public_network_configuration: Specifies the network configuration for the public ingress point.
5171
+
5172
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html
5173
+ :exampleMetadata: fixture=_generated
5174
+
5175
+ Example::
5176
+
5177
+ # The code below shows an example of how to instantiate this type.
5178
+ # The values are placeholders you should change.
5179
+ from aws_cdk import aws_ses as ses
5180
+
5181
+ network_configuration_property = ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty(
5182
+ private_network_configuration=ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
5183
+ vpc_endpoint_id="vpcEndpointId"
5184
+ ),
5185
+ public_network_configuration=ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
5186
+ ip_type="ipType"
5187
+ )
5188
+ )
5189
+ '''
5190
+ if __debug__:
5191
+ type_hints = typing.get_type_hints(_typecheckingstub__e92f82eaa7f5bbe8dc091ccf3d1447df4bd68dce8ee9521169489e610fdf9bca)
5192
+ check_type(argname="argument private_network_configuration", value=private_network_configuration, expected_type=type_hints["private_network_configuration"])
5193
+ check_type(argname="argument public_network_configuration", value=public_network_configuration, expected_type=type_hints["public_network_configuration"])
5194
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5195
+ if private_network_configuration is not None:
5196
+ self._values["private_network_configuration"] = private_network_configuration
5197
+ if public_network_configuration is not None:
5198
+ self._values["public_network_configuration"] = public_network_configuration
5199
+
5200
+ @builtins.property
5201
+ def private_network_configuration(
5202
+ self,
5203
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty"]]:
5204
+ '''Specifies the network configuration for the private ingress point.
5205
+
5206
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html#cfn-ses-mailmanageringresspoint-networkconfiguration-privatenetworkconfiguration
5207
+ '''
5208
+ result = self._values.get("private_network_configuration")
5209
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty"]], result)
5210
+
5211
+ @builtins.property
5212
+ def public_network_configuration(
5213
+ self,
5214
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty"]]:
5215
+ '''Specifies the network configuration for the public ingress point.
5216
+
5217
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html#cfn-ses-mailmanageringresspoint-networkconfiguration-publicnetworkconfiguration
5218
+ '''
5219
+ result = self._values.get("public_network_configuration")
5220
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty"]], result)
5221
+
5222
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5223
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5224
+
5225
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5226
+ return not (rhs == self)
5227
+
5228
+ def __repr__(self) -> str:
5229
+ return "NetworkConfigurationProperty(%s)" % ", ".join(
5230
+ k + "=" + repr(v) for k, v in self._values.items()
5231
+ )
5232
+
5233
+ @jsii.data_type(
5234
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty",
5235
+ jsii_struct_bases=[],
5236
+ name_mapping={"vpc_endpoint_id": "vpcEndpointId"},
5237
+ )
5238
+ class PrivateNetworkConfigurationProperty:
5239
+ def __init__(self, *, vpc_endpoint_id: builtins.str) -> None:
5240
+ '''Specifies the network configuration for the private ingress point.
5241
+
5242
+ :param vpc_endpoint_id: The identifier of the VPC endpoint to associate with this private ingress point.
5243
+
5244
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-privatenetworkconfiguration.html
5245
+ :exampleMetadata: fixture=_generated
5246
+
5247
+ Example::
5248
+
5249
+ # The code below shows an example of how to instantiate this type.
5250
+ # The values are placeholders you should change.
5251
+ from aws_cdk import aws_ses as ses
5252
+
5253
+ private_network_configuration_property = ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
5254
+ vpc_endpoint_id="vpcEndpointId"
5255
+ )
5256
+ '''
5257
+ if __debug__:
5258
+ type_hints = typing.get_type_hints(_typecheckingstub__39ad05460de649e352f4049e7ce64b0e145719d25a16cf7e4823946f080e2b6a)
5259
+ check_type(argname="argument vpc_endpoint_id", value=vpc_endpoint_id, expected_type=type_hints["vpc_endpoint_id"])
5260
+ self._values: typing.Dict[builtins.str, typing.Any] = {
5261
+ "vpc_endpoint_id": vpc_endpoint_id,
5262
+ }
5263
+
5264
+ @builtins.property
5265
+ def vpc_endpoint_id(self) -> builtins.str:
5266
+ '''The identifier of the VPC endpoint to associate with this private ingress point.
5267
+
5268
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-privatenetworkconfiguration.html#cfn-ses-mailmanageringresspoint-privatenetworkconfiguration-vpcendpointid
5269
+ '''
5270
+ result = self._values.get("vpc_endpoint_id")
5271
+ assert result is not None, "Required property 'vpc_endpoint_id' is missing"
5272
+ return typing.cast(builtins.str, result)
5273
+
5274
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5275
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5276
+
5277
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5278
+ return not (rhs == self)
5279
+
5280
+ def __repr__(self) -> str:
5281
+ return "PrivateNetworkConfigurationProperty(%s)" % ", ".join(
5282
+ k + "=" + repr(v) for k, v in self._values.items()
5283
+ )
5284
+
5285
+ @jsii.data_type(
5286
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty",
5287
+ jsii_struct_bases=[],
5288
+ name_mapping={"ip_type": "ipType"},
5289
+ )
5290
+ class PublicNetworkConfigurationProperty:
5291
+ def __init__(self, *, ip_type: builtins.str) -> None:
5292
+ '''Specifies the network configuration for the public ingress point.
5293
+
5294
+ :param ip_type: The IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
5295
+
5296
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-publicnetworkconfiguration.html
5297
+ :exampleMetadata: fixture=_generated
5298
+
5299
+ Example::
5300
+
5301
+ # The code below shows an example of how to instantiate this type.
5302
+ # The values are placeholders you should change.
5303
+ from aws_cdk import aws_ses as ses
5304
+
5305
+ public_network_configuration_property = ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
5306
+ ip_type="ipType"
5307
+ )
5308
+ '''
5309
+ if __debug__:
5310
+ type_hints = typing.get_type_hints(_typecheckingstub__44de118258c4f2ec589299800463fecb183b1dbbd040e740d7547fd88ac18ef2)
5311
+ check_type(argname="argument ip_type", value=ip_type, expected_type=type_hints["ip_type"])
5312
+ self._values: typing.Dict[builtins.str, typing.Any] = {
5313
+ "ip_type": ip_type,
5314
+ }
5315
+
5316
+ @builtins.property
5317
+ def ip_type(self) -> builtins.str:
5318
+ '''The IP address type for the public ingress point.
5319
+
5320
+ Valid values are IPV4 and DUAL_STACK.
5321
+
5322
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-publicnetworkconfiguration.html#cfn-ses-mailmanageringresspoint-publicnetworkconfiguration-iptype
5323
+ '''
5324
+ result = self._values.get("ip_type")
5325
+ assert result is not None, "Required property 'ip_type' is missing"
5326
+ return typing.cast(builtins.str, result)
5327
+
5328
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5329
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5330
+
5331
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5332
+ return not (rhs == self)
5333
+
5334
+ def __repr__(self) -> str:
5335
+ return "PublicNetworkConfigurationProperty(%s)" % ", ".join(
5336
+ k + "=" + repr(v) for k, v in self._values.items()
5337
+ )
5338
+
5123
5339
 
5124
5340
  @jsii.data_type(
5125
5341
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPointProps",
@@ -5130,6 +5346,7 @@ class CfnMailManagerIngressPoint(
5130
5346
  "type": "type",
5131
5347
  "ingress_point_configuration": "ingressPointConfiguration",
5132
5348
  "ingress_point_name": "ingressPointName",
5349
+ "network_configuration": "networkConfiguration",
5133
5350
  "status_to_update": "statusToUpdate",
5134
5351
  "tags": "tags",
5135
5352
  },
@@ -5143,6 +5360,7 @@ class CfnMailManagerIngressPointProps:
5143
5360
  type: builtins.str,
5144
5361
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.IngressPointConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5145
5362
  ingress_point_name: typing.Optional[builtins.str] = None,
5363
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.NetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5146
5364
  status_to_update: typing.Optional[builtins.str] = None,
5147
5365
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
5148
5366
  ) -> None:
@@ -5153,6 +5371,7 @@ class CfnMailManagerIngressPointProps:
5153
5371
  :param type: The type of the ingress endpoint to create.
5154
5372
  :param ingress_point_configuration: The configuration of the ingress endpoint resource.
5155
5373
  :param ingress_point_name: A user friendly name for an ingress endpoint resource.
5374
+ :param network_configuration: The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
5156
5375
  :param status_to_update: The update status of an ingress endpoint.
5157
5376
  :param tags: The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
5158
5377
 
@@ -5176,6 +5395,14 @@ class CfnMailManagerIngressPointProps:
5176
5395
  smtp_password="smtpPassword"
5177
5396
  ),
5178
5397
  ingress_point_name="ingressPointName",
5398
+ network_configuration=ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty(
5399
+ private_network_configuration=ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
5400
+ vpc_endpoint_id="vpcEndpointId"
5401
+ ),
5402
+ public_network_configuration=ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
5403
+ ip_type="ipType"
5404
+ )
5405
+ ),
5179
5406
  status_to_update="statusToUpdate",
5180
5407
  tags=[CfnTag(
5181
5408
  key="key",
@@ -5190,6 +5417,7 @@ class CfnMailManagerIngressPointProps:
5190
5417
  check_type(argname="argument type", value=type, expected_type=type_hints["type"])
5191
5418
  check_type(argname="argument ingress_point_configuration", value=ingress_point_configuration, expected_type=type_hints["ingress_point_configuration"])
5192
5419
  check_type(argname="argument ingress_point_name", value=ingress_point_name, expected_type=type_hints["ingress_point_name"])
5420
+ check_type(argname="argument network_configuration", value=network_configuration, expected_type=type_hints["network_configuration"])
5193
5421
  check_type(argname="argument status_to_update", value=status_to_update, expected_type=type_hints["status_to_update"])
5194
5422
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
5195
5423
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -5201,6 +5429,8 @@ class CfnMailManagerIngressPointProps:
5201
5429
  self._values["ingress_point_configuration"] = ingress_point_configuration
5202
5430
  if ingress_point_name is not None:
5203
5431
  self._values["ingress_point_name"] = ingress_point_name
5432
+ if network_configuration is not None:
5433
+ self._values["network_configuration"] = network_configuration
5204
5434
  if status_to_update is not None:
5205
5435
  self._values["status_to_update"] = status_to_update
5206
5436
  if tags is not None:
@@ -5256,6 +5486,17 @@ class CfnMailManagerIngressPointProps:
5256
5486
  result = self._values.get("ingress_point_name")
5257
5487
  return typing.cast(typing.Optional[builtins.str], result)
5258
5488
 
5489
+ @builtins.property
5490
+ def network_configuration(
5491
+ self,
5492
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMailManagerIngressPoint.NetworkConfigurationProperty]]:
5493
+ '''The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
5494
+
5495
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageringresspoint.html#cfn-ses-mailmanageringresspoint-networkconfiguration
5496
+ '''
5497
+ result = self._values.get("network_configuration")
5498
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMailManagerIngressPoint.NetworkConfigurationProperty]], result)
5499
+
5259
5500
  @builtins.property
5260
5501
  def status_to_update(self) -> typing.Optional[builtins.str]:
5261
5502
  '''The update status of an ingress endpoint.
@@ -5785,6 +6026,10 @@ class CfnMailManagerRuleSet(
5785
6026
  conditions=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
5786
6027
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
5787
6028
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
6029
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6030
+ analyzer="analyzer",
6031
+ result_field="resultField"
6032
+ ),
5788
6033
  attribute="attribute"
5789
6034
  ),
5790
6035
  operator="operator"
@@ -5809,6 +6054,10 @@ class CfnMailManagerRuleSet(
5809
6054
  ),
5810
6055
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
5811
6056
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
6057
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6058
+ analyzer="analyzer",
6059
+ result_field="resultField"
6060
+ ),
5812
6061
  attribute="attribute",
5813
6062
  mime_header_attribute="mimeHeaderAttribute"
5814
6063
  ),
@@ -5831,6 +6080,10 @@ class CfnMailManagerRuleSet(
5831
6080
  unless=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
5832
6081
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
5833
6082
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
6083
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6084
+ analyzer="analyzer",
6085
+ result_field="resultField"
6086
+ ),
5834
6087
  attribute="attribute"
5835
6088
  ),
5836
6089
  operator="operator"
@@ -5855,6 +6108,10 @@ class CfnMailManagerRuleSet(
5855
6108
  ),
5856
6109
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
5857
6110
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
6111
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6112
+ analyzer="analyzer",
6113
+ result_field="resultField"
6114
+ ),
5858
6115
  attribute="attribute",
5859
6116
  mime_header_attribute="mimeHeaderAttribute"
5860
6117
  ),
@@ -6879,6 +7136,10 @@ class CfnMailManagerRuleSet(
6879
7136
 
6880
7137
  rule_boolean_expression_property = ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
6881
7138
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7139
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7140
+ analyzer="analyzer",
7141
+ result_field="resultField"
7142
+ ),
6882
7143
  attribute="attribute"
6883
7144
  ),
6884
7145
  operator="operator"
@@ -6929,12 +7190,18 @@ class CfnMailManagerRuleSet(
6929
7190
  @jsii.data_type(
6930
7191
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty",
6931
7192
  jsii_struct_bases=[],
6932
- name_mapping={"attribute": "attribute"},
7193
+ name_mapping={"analysis": "analysis", "attribute": "attribute"},
6933
7194
  )
6934
7195
  class RuleBooleanToEvaluateProperty:
6935
- def __init__(self, *, attribute: builtins.str) -> None:
7196
+ def __init__(
7197
+ self,
7198
+ *,
7199
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.AnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7200
+ attribute: typing.Optional[builtins.str] = None,
7201
+ ) -> None:
6936
7202
  '''The union type representing the allowed types of operands for a boolean condition.
6937
7203
 
7204
+ :param analysis: The Add On ARN and its returned value to evaluate in a boolean condition expression.
6938
7205
  :param attribute: The boolean type representing the allowed attribute types for an email.
6939
7206
 
6940
7207
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html
@@ -6947,25 +7214,42 @@ class CfnMailManagerRuleSet(
6947
7214
  from aws_cdk import aws_ses as ses
6948
7215
 
6949
7216
  rule_boolean_to_evaluate_property = ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7217
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7218
+ analyzer="analyzer",
7219
+ result_field="resultField"
7220
+ ),
6950
7221
  attribute="attribute"
6951
7222
  )
6952
7223
  '''
6953
7224
  if __debug__:
6954
7225
  type_hints = typing.get_type_hints(_typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d40ebc95)
7226
+ check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
6955
7227
  check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
6956
- self._values: typing.Dict[builtins.str, typing.Any] = {
6957
- "attribute": attribute,
6958
- }
7228
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
7229
+ if analysis is not None:
7230
+ self._values["analysis"] = analysis
7231
+ if attribute is not None:
7232
+ self._values["attribute"] = attribute
6959
7233
 
6960
7234
  @builtins.property
6961
- def attribute(self) -> builtins.str:
7235
+ def analysis(
7236
+ self,
7237
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]]:
7238
+ '''The Add On ARN and its returned value to evaluate in a boolean condition expression.
7239
+
7240
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html#cfn-ses-mailmanagerruleset-rulebooleantoevaluate-analysis
7241
+ '''
7242
+ result = self._values.get("analysis")
7243
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]], result)
7244
+
7245
+ @builtins.property
7246
+ def attribute(self) -> typing.Optional[builtins.str]:
6962
7247
  '''The boolean type representing the allowed attribute types for an email.
6963
7248
 
6964
7249
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html#cfn-ses-mailmanagerruleset-rulebooleantoevaluate-attribute
6965
7250
  '''
6966
7251
  result = self._values.get("attribute")
6967
- assert result is not None, "Required property 'attribute' is missing"
6968
- return typing.cast(builtins.str, result)
7252
+ return typing.cast(typing.Optional[builtins.str], result)
6969
7253
 
6970
7254
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
6971
7255
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -7026,6 +7310,10 @@ class CfnMailManagerRuleSet(
7026
7310
  rule_condition_property = ses.CfnMailManagerRuleSet.RuleConditionProperty(
7027
7311
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
7028
7312
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7313
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7314
+ analyzer="analyzer",
7315
+ result_field="resultField"
7316
+ ),
7029
7317
  attribute="attribute"
7030
7318
  ),
7031
7319
  operator="operator"
@@ -7050,6 +7338,10 @@ class CfnMailManagerRuleSet(
7050
7338
  ),
7051
7339
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7052
7340
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
7341
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7342
+ analyzer="analyzer",
7343
+ result_field="resultField"
7344
+ ),
7053
7345
  attribute="attribute",
7054
7346
  mime_header_attribute="mimeHeaderAttribute"
7055
7347
  ),
@@ -7633,6 +7925,10 @@ class CfnMailManagerRuleSet(
7633
7925
  conditions=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
7634
7926
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
7635
7927
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7928
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7929
+ analyzer="analyzer",
7930
+ result_field="resultField"
7931
+ ),
7636
7932
  attribute="attribute"
7637
7933
  ),
7638
7934
  operator="operator"
@@ -7657,6 +7953,10 @@ class CfnMailManagerRuleSet(
7657
7953
  ),
7658
7954
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7659
7955
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
7956
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7957
+ analyzer="analyzer",
7958
+ result_field="resultField"
7959
+ ),
7660
7960
  attribute="attribute",
7661
7961
  mime_header_attribute="mimeHeaderAttribute"
7662
7962
  ),
@@ -7679,6 +7979,10 @@ class CfnMailManagerRuleSet(
7679
7979
  unless=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
7680
7980
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
7681
7981
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7982
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7983
+ analyzer="analyzer",
7984
+ result_field="resultField"
7985
+ ),
7682
7986
  attribute="attribute"
7683
7987
  ),
7684
7988
  operator="operator"
@@ -7703,6 +8007,10 @@ class CfnMailManagerRuleSet(
7703
8007
  ),
7704
8008
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7705
8009
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8010
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8011
+ analyzer="analyzer",
8012
+ result_field="resultField"
8013
+ ),
7706
8014
  attribute="attribute",
7707
8015
  mime_header_attribute="mimeHeaderAttribute"
7708
8016
  ),
@@ -7831,6 +8139,10 @@ class CfnMailManagerRuleSet(
7831
8139
 
7832
8140
  rule_string_expression_property = ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7833
8141
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8142
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8143
+ analyzer="analyzer",
8144
+ result_field="resultField"
8145
+ ),
7834
8146
  attribute="attribute",
7835
8147
  mime_header_attribute="mimeHeaderAttribute"
7836
8148
  ),
@@ -7898,6 +8210,7 @@ class CfnMailManagerRuleSet(
7898
8210
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty",
7899
8211
  jsii_struct_bases=[],
7900
8212
  name_mapping={
8213
+ "analysis": "analysis",
7901
8214
  "attribute": "attribute",
7902
8215
  "mime_header_attribute": "mimeHeaderAttribute",
7903
8216
  },
@@ -7906,6 +8219,7 @@ class CfnMailManagerRuleSet(
7906
8219
  def __init__(
7907
8220
  self,
7908
8221
  *,
8222
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.AnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7909
8223
  attribute: typing.Optional[builtins.str] = None,
7910
8224
  mime_header_attribute: typing.Optional[builtins.str] = None,
7911
8225
  ) -> None:
@@ -7915,6 +8229,7 @@ class CfnMailManagerRuleSet(
7915
8229
 
7916
8230
  This data type is a UNION, so only one of the following members can be specified when used or returned.
7917
8231
 
8232
+ :param analysis: The Add On ARN and its returned value to evaluate in a string condition expression.
7918
8233
  :param attribute: The email attribute to evaluate in a string condition expression.
7919
8234
  :param mime_header_attribute: The email MIME X-Header attribute to evaluate in a string condition expression.
7920
8235
 
@@ -7928,20 +8243,38 @@ class CfnMailManagerRuleSet(
7928
8243
  from aws_cdk import aws_ses as ses
7929
8244
 
7930
8245
  rule_string_to_evaluate_property = ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8246
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8247
+ analyzer="analyzer",
8248
+ result_field="resultField"
8249
+ ),
7931
8250
  attribute="attribute",
7932
8251
  mime_header_attribute="mimeHeaderAttribute"
7933
8252
  )
7934
8253
  '''
7935
8254
  if __debug__:
7936
8255
  type_hints = typing.get_type_hints(_typecheckingstub__2da4d9d015f3b7cc8e8bc228c621ebc8b1b100adb32a59eb61a9ceba92a64fd5)
8256
+ check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
7937
8257
  check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
7938
8258
  check_type(argname="argument mime_header_attribute", value=mime_header_attribute, expected_type=type_hints["mime_header_attribute"])
7939
8259
  self._values: typing.Dict[builtins.str, typing.Any] = {}
8260
+ if analysis is not None:
8261
+ self._values["analysis"] = analysis
7940
8262
  if attribute is not None:
7941
8263
  self._values["attribute"] = attribute
7942
8264
  if mime_header_attribute is not None:
7943
8265
  self._values["mime_header_attribute"] = mime_header_attribute
7944
8266
 
8267
+ @builtins.property
8268
+ def analysis(
8269
+ self,
8270
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]]:
8271
+ '''The Add On ARN and its returned value to evaluate in a string condition expression.
8272
+
8273
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringtoevaluate.html#cfn-ses-mailmanagerruleset-rulestringtoevaluate-analysis
8274
+ '''
8275
+ result = self._values.get("analysis")
8276
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]], result)
8277
+
7945
8278
  @builtins.property
7946
8279
  def attribute(self) -> typing.Optional[builtins.str]:
7947
8280
  '''The email attribute to evaluate in a string condition expression.
@@ -8449,6 +8782,10 @@ class CfnMailManagerRuleSetProps:
8449
8782
  conditions=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
8450
8783
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
8451
8784
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
8785
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8786
+ analyzer="analyzer",
8787
+ result_field="resultField"
8788
+ ),
8452
8789
  attribute="attribute"
8453
8790
  ),
8454
8791
  operator="operator"
@@ -8473,6 +8810,10 @@ class CfnMailManagerRuleSetProps:
8473
8810
  ),
8474
8811
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
8475
8812
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8813
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8814
+ analyzer="analyzer",
8815
+ result_field="resultField"
8816
+ ),
8476
8817
  attribute="attribute",
8477
8818
  mime_header_attribute="mimeHeaderAttribute"
8478
8819
  ),
@@ -8495,6 +8836,10 @@ class CfnMailManagerRuleSetProps:
8495
8836
  unless=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
8496
8837
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
8497
8838
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
8839
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8840
+ analyzer="analyzer",
8841
+ result_field="resultField"
8842
+ ),
8498
8843
  attribute="attribute"
8499
8844
  ),
8500
8845
  operator="operator"
@@ -8519,6 +8864,10 @@ class CfnMailManagerRuleSetProps:
8519
8864
  ),
8520
8865
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
8521
8866
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8867
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8868
+ analyzer="analyzer",
8869
+ result_field="resultField"
8870
+ ),
8522
8871
  attribute="attribute",
8523
8872
  mime_header_attribute="mimeHeaderAttribute"
8524
8873
  ),
@@ -8643,8 +8992,19 @@ class CfnMailManagerTrafficPolicy(
8643
8992
  operator="operator",
8644
8993
  values=["values"]
8645
8994
  ),
8995
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
8996
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
8997
+ attribute="attribute"
8998
+ ),
8999
+ operator="operator",
9000
+ values=["values"]
9001
+ ),
8646
9002
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
8647
9003
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
9004
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9005
+ analyzer="analyzer",
9006
+ result_field="resultField"
9007
+ ),
8648
9008
  attribute="attribute"
8649
9009
  ),
8650
9010
  operator="operator",
@@ -9189,6 +9549,146 @@ class CfnMailManagerTrafficPolicy(
9189
9549
  k + "=" + repr(v) for k, v in self._values.items()
9190
9550
  )
9191
9551
 
9552
+ @jsii.data_type(
9553
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty",
9554
+ jsii_struct_bases=[],
9555
+ name_mapping={
9556
+ "evaluate": "evaluate",
9557
+ "operator": "operator",
9558
+ "values": "values",
9559
+ },
9560
+ )
9561
+ class IngressIpv6ExpressionProperty:
9562
+ def __init__(
9563
+ self,
9564
+ *,
9565
+ evaluate: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty", typing.Dict[builtins.str, typing.Any]]],
9566
+ operator: builtins.str,
9567
+ values: typing.Sequence[builtins.str],
9568
+ ) -> None:
9569
+ '''
9570
+ :param evaluate:
9571
+ :param operator:
9572
+ :param values:
9573
+
9574
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html
9575
+ :exampleMetadata: fixture=_generated
9576
+
9577
+ Example::
9578
+
9579
+ # The code below shows an example of how to instantiate this type.
9580
+ # The values are placeholders you should change.
9581
+ from aws_cdk import aws_ses as ses
9582
+
9583
+ ingress_ipv6_expression_property = ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
9584
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
9585
+ attribute="attribute"
9586
+ ),
9587
+ operator="operator",
9588
+ values=["values"]
9589
+ )
9590
+ '''
9591
+ if __debug__:
9592
+ type_hints = typing.get_type_hints(_typecheckingstub__466f6fc45cc786424b25d62d8ee6b11ee8502c69bd8f436961b31e9360d6dbca)
9593
+ check_type(argname="argument evaluate", value=evaluate, expected_type=type_hints["evaluate"])
9594
+ check_type(argname="argument operator", value=operator, expected_type=type_hints["operator"])
9595
+ check_type(argname="argument values", value=values, expected_type=type_hints["values"])
9596
+ self._values: typing.Dict[builtins.str, typing.Any] = {
9597
+ "evaluate": evaluate,
9598
+ "operator": operator,
9599
+ "values": values,
9600
+ }
9601
+
9602
+ @builtins.property
9603
+ def evaluate(
9604
+ self,
9605
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty"]:
9606
+ '''
9607
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-evaluate
9608
+ '''
9609
+ result = self._values.get("evaluate")
9610
+ assert result is not None, "Required property 'evaluate' is missing"
9611
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty"], result)
9612
+
9613
+ @builtins.property
9614
+ def operator(self) -> builtins.str:
9615
+ '''
9616
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-operator
9617
+ '''
9618
+ result = self._values.get("operator")
9619
+ assert result is not None, "Required property 'operator' is missing"
9620
+ return typing.cast(builtins.str, result)
9621
+
9622
+ @builtins.property
9623
+ def values(self) -> typing.List[builtins.str]:
9624
+ '''
9625
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-values
9626
+ '''
9627
+ result = self._values.get("values")
9628
+ assert result is not None, "Required property 'values' is missing"
9629
+ return typing.cast(typing.List[builtins.str], result)
9630
+
9631
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9632
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9633
+
9634
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9635
+ return not (rhs == self)
9636
+
9637
+ def __repr__(self) -> str:
9638
+ return "IngressIpv6ExpressionProperty(%s)" % ", ".join(
9639
+ k + "=" + repr(v) for k, v in self._values.items()
9640
+ )
9641
+
9642
+ @jsii.data_type(
9643
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty",
9644
+ jsii_struct_bases=[],
9645
+ name_mapping={"attribute": "attribute"},
9646
+ )
9647
+ class IngressIpv6ToEvaluateProperty:
9648
+ def __init__(self, *, attribute: builtins.str) -> None:
9649
+ '''
9650
+ :param attribute:
9651
+
9652
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6toevaluate.html
9653
+ :exampleMetadata: fixture=_generated
9654
+
9655
+ Example::
9656
+
9657
+ # The code below shows an example of how to instantiate this type.
9658
+ # The values are placeholders you should change.
9659
+ from aws_cdk import aws_ses as ses
9660
+
9661
+ ingress_ipv6_to_evaluate_property = ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
9662
+ attribute="attribute"
9663
+ )
9664
+ '''
9665
+ if __debug__:
9666
+ type_hints = typing.get_type_hints(_typecheckingstub__f68a4c434cfdeacf5dcff0a6cf5c8e887cc1ed9849ea5b6b80bbd66457f4ee0c)
9667
+ check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
9668
+ self._values: typing.Dict[builtins.str, typing.Any] = {
9669
+ "attribute": attribute,
9670
+ }
9671
+
9672
+ @builtins.property
9673
+ def attribute(self) -> builtins.str:
9674
+ '''
9675
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6toevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6toevaluate-attribute
9676
+ '''
9677
+ result = self._values.get("attribute")
9678
+ assert result is not None, "Required property 'attribute' is missing"
9679
+ return typing.cast(builtins.str, result)
9680
+
9681
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9682
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9683
+
9684
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9685
+ return not (rhs == self)
9686
+
9687
+ def __repr__(self) -> str:
9688
+ return "IngressIpv6ToEvaluateProperty(%s)" % ", ".join(
9689
+ k + "=" + repr(v) for k, v in self._values.items()
9690
+ )
9691
+
9192
9692
  @jsii.data_type(
9193
9693
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty",
9194
9694
  jsii_struct_bases=[],
@@ -9223,6 +9723,10 @@ class CfnMailManagerTrafficPolicy(
9223
9723
 
9224
9724
  ingress_string_expression_property = ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9225
9725
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
9726
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9727
+ analyzer="analyzer",
9728
+ result_field="resultField"
9729
+ ),
9226
9730
  attribute="attribute"
9227
9731
  ),
9228
9732
  operator="operator",
@@ -9285,12 +9789,18 @@ class CfnMailManagerTrafficPolicy(
9285
9789
  @jsii.data_type(
9286
9790
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty",
9287
9791
  jsii_struct_bases=[],
9288
- name_mapping={"attribute": "attribute"},
9792
+ name_mapping={"analysis": "analysis", "attribute": "attribute"},
9289
9793
  )
9290
9794
  class IngressStringToEvaluateProperty:
9291
- def __init__(self, *, attribute: builtins.str) -> None:
9795
+ def __init__(
9796
+ self,
9797
+ *,
9798
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressAnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9799
+ attribute: typing.Optional[builtins.str] = None,
9800
+ ) -> None:
9292
9801
  '''The union type representing the allowed types for the left hand side of a string condition.
9293
9802
 
9803
+ :param analysis:
9294
9804
  :param attribute: The enum type representing the allowed attribute types for a string condition.
9295
9805
 
9296
9806
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html
@@ -9303,25 +9813,41 @@ class CfnMailManagerTrafficPolicy(
9303
9813
  from aws_cdk import aws_ses as ses
9304
9814
 
9305
9815
  ingress_string_to_evaluate_property = ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
9816
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9817
+ analyzer="analyzer",
9818
+ result_field="resultField"
9819
+ ),
9306
9820
  attribute="attribute"
9307
9821
  )
9308
9822
  '''
9309
9823
  if __debug__:
9310
9824
  type_hints = typing.get_type_hints(_typecheckingstub__3c9e450d2f2ff23fc01d2665ec4ed8c7483fa7d75c8c5484472b23f8a2c583fc)
9825
+ check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
9311
9826
  check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
9312
- self._values: typing.Dict[builtins.str, typing.Any] = {
9313
- "attribute": attribute,
9314
- }
9827
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
9828
+ if analysis is not None:
9829
+ self._values["analysis"] = analysis
9830
+ if attribute is not None:
9831
+ self._values["attribute"] = attribute
9315
9832
 
9316
9833
  @builtins.property
9317
- def attribute(self) -> builtins.str:
9834
+ def analysis(
9835
+ self,
9836
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]]:
9837
+ '''
9838
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressstringtoevaluate-analysis
9839
+ '''
9840
+ result = self._values.get("analysis")
9841
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]], result)
9842
+
9843
+ @builtins.property
9844
+ def attribute(self) -> typing.Optional[builtins.str]:
9318
9845
  '''The enum type representing the allowed attribute types for a string condition.
9319
9846
 
9320
9847
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressstringtoevaluate-attribute
9321
9848
  '''
9322
9849
  result = self._values.get("attribute")
9323
- assert result is not None, "Required property 'attribute' is missing"
9324
- return typing.cast(builtins.str, result)
9850
+ return typing.cast(typing.Optional[builtins.str], result)
9325
9851
 
9326
9852
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
9327
9853
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -9486,6 +10012,7 @@ class CfnMailManagerTrafficPolicy(
9486
10012
  name_mapping={
9487
10013
  "boolean_expression": "booleanExpression",
9488
10014
  "ip_expression": "ipExpression",
10015
+ "ipv6_expression": "ipv6Expression",
9489
10016
  "string_expression": "stringExpression",
9490
10017
  "tls_expression": "tlsExpression",
9491
10018
  },
@@ -9496,6 +10023,7 @@ class CfnMailManagerTrafficPolicy(
9496
10023
  *,
9497
10024
  boolean_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9498
10025
  ip_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
10026
+ ipv6_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9499
10027
  string_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressStringExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9500
10028
  tls_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9501
10029
  ) -> None:
@@ -9507,6 +10035,7 @@ class CfnMailManagerTrafficPolicy(
9507
10035
 
9508
10036
  :param boolean_expression: This represents a boolean type condition matching on the incoming mail. It performs the boolean operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.
9509
10037
  :param ip_expression: This represents an IP based condition matching on the incoming mail. It performs the operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.
10038
+ :param ipv6_expression:
9510
10039
  :param string_expression: This represents a string based condition matching on the incoming mail. It performs the string operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.
9511
10040
  :param tls_expression: This represents a TLS based condition matching on the incoming mail. It performs the operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.
9512
10041
 
@@ -9536,8 +10065,19 @@ class CfnMailManagerTrafficPolicy(
9536
10065
  operator="operator",
9537
10066
  values=["values"]
9538
10067
  ),
10068
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
10069
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
10070
+ attribute="attribute"
10071
+ ),
10072
+ operator="operator",
10073
+ values=["values"]
10074
+ ),
9539
10075
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9540
10076
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
10077
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10078
+ analyzer="analyzer",
10079
+ result_field="resultField"
10080
+ ),
9541
10081
  attribute="attribute"
9542
10082
  ),
9543
10083
  operator="operator",
@@ -9556,6 +10096,7 @@ class CfnMailManagerTrafficPolicy(
9556
10096
  type_hints = typing.get_type_hints(_typecheckingstub__cb7b0b679bef5a6b24b2249f4b258188dd4f805799243b563fb1a1699e938bb6)
9557
10097
  check_type(argname="argument boolean_expression", value=boolean_expression, expected_type=type_hints["boolean_expression"])
9558
10098
  check_type(argname="argument ip_expression", value=ip_expression, expected_type=type_hints["ip_expression"])
10099
+ check_type(argname="argument ipv6_expression", value=ipv6_expression, expected_type=type_hints["ipv6_expression"])
9559
10100
  check_type(argname="argument string_expression", value=string_expression, expected_type=type_hints["string_expression"])
9560
10101
  check_type(argname="argument tls_expression", value=tls_expression, expected_type=type_hints["tls_expression"])
9561
10102
  self._values: typing.Dict[builtins.str, typing.Any] = {}
@@ -9563,6 +10104,8 @@ class CfnMailManagerTrafficPolicy(
9563
10104
  self._values["boolean_expression"] = boolean_expression
9564
10105
  if ip_expression is not None:
9565
10106
  self._values["ip_expression"] = ip_expression
10107
+ if ipv6_expression is not None:
10108
+ self._values["ipv6_expression"] = ipv6_expression
9566
10109
  if string_expression is not None:
9567
10110
  self._values["string_expression"] = string_expression
9568
10111
  if tls_expression is not None:
@@ -9594,6 +10137,16 @@ class CfnMailManagerTrafficPolicy(
9594
10137
  result = self._values.get("ip_expression")
9595
10138
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty"]], result)
9596
10139
 
10140
+ @builtins.property
10141
+ def ipv6_expression(
10142
+ self,
10143
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty"]]:
10144
+ '''
10145
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-policycondition.html#cfn-ses-mailmanagertrafficpolicy-policycondition-ipv6expression
10146
+ '''
10147
+ result = self._values.get("ipv6_expression")
10148
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty"]], result)
10149
+
9597
10150
  @builtins.property
9598
10151
  def string_expression(
9599
10152
  self,
@@ -9676,8 +10229,19 @@ class CfnMailManagerTrafficPolicy(
9676
10229
  operator="operator",
9677
10230
  values=["values"]
9678
10231
  ),
10232
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
10233
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
10234
+ attribute="attribute"
10235
+ ),
10236
+ operator="operator",
10237
+ values=["values"]
10238
+ ),
9679
10239
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9680
10240
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
10241
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10242
+ analyzer="analyzer",
10243
+ result_field="resultField"
10244
+ ),
9681
10245
  attribute="attribute"
9682
10246
  ),
9683
10247
  operator="operator",
@@ -9795,8 +10359,19 @@ class CfnMailManagerTrafficPolicyProps:
9795
10359
  operator="operator",
9796
10360
  values=["values"]
9797
10361
  ),
10362
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
10363
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
10364
+ attribute="attribute"
10365
+ ),
10366
+ operator="operator",
10367
+ values=["values"]
10368
+ ),
9798
10369
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9799
10370
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
10371
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10372
+ analyzer="analyzer",
10373
+ result_field="resultField"
10374
+ ),
9800
10375
  attribute="attribute"
9801
10376
  ),
9802
10377
  operator="operator",
@@ -17662,6 +18237,7 @@ def _typecheckingstub__1ceb1a8308b4e72eecdc0962cf663d2c0564dbffbabebaa887b776484
17662
18237
  type: builtins.str,
17663
18238
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.IngressPointConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17664
18239
  ingress_point_name: typing.Optional[builtins.str] = None,
18240
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.NetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17665
18241
  status_to_update: typing.Optional[builtins.str] = None,
17666
18242
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
17667
18243
  ) -> None:
@@ -17710,6 +18286,12 @@ def _typecheckingstub__47a33bb2ac7c6600470d2eeac418be17d66b98bcd085e465db6dba93b
17710
18286
  """Type checking stubs"""
17711
18287
  pass
17712
18288
 
18289
+ def _typecheckingstub__fde2e4577760382a77b31bc0573fe3d8360be0fb229556d97fbde4dad4dd5248(
18290
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMailManagerIngressPoint.NetworkConfigurationProperty]],
18291
+ ) -> None:
18292
+ """Type checking stubs"""
18293
+ pass
18294
+
17713
18295
  def _typecheckingstub__681e417ef520acfe754a35e65d8ecb2a8e270ef54acf705fd91dd2427921f20d(
17714
18296
  value: typing.Optional[builtins.str],
17715
18297
  ) -> None:
@@ -17730,6 +18312,28 @@ def _typecheckingstub__3799ee40c4fb2a5153cb73f62102e77ad68fed1ac1eec8eef79d4bb8f
17730
18312
  """Type checking stubs"""
17731
18313
  pass
17732
18314
 
18315
+ def _typecheckingstub__e92f82eaa7f5bbe8dc091ccf3d1447df4bd68dce8ee9521169489e610fdf9bca(
18316
+ *,
18317
+ private_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18318
+ public_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18319
+ ) -> None:
18320
+ """Type checking stubs"""
18321
+ pass
18322
+
18323
+ def _typecheckingstub__39ad05460de649e352f4049e7ce64b0e145719d25a16cf7e4823946f080e2b6a(
18324
+ *,
18325
+ vpc_endpoint_id: builtins.str,
18326
+ ) -> None:
18327
+ """Type checking stubs"""
18328
+ pass
18329
+
18330
+ def _typecheckingstub__44de118258c4f2ec589299800463fecb183b1dbbd040e740d7547fd88ac18ef2(
18331
+ *,
18332
+ ip_type: builtins.str,
18333
+ ) -> None:
18334
+ """Type checking stubs"""
18335
+ pass
18336
+
17733
18337
  def _typecheckingstub__4a58faebfc97ab1b10162e7546f05d5e8ed2912a90a84602bdbf7d61271bfdd1(
17734
18338
  *,
17735
18339
  rule_set_id: builtins.str,
@@ -17737,6 +18341,7 @@ def _typecheckingstub__4a58faebfc97ab1b10162e7546f05d5e8ed2912a90a84602bdbf7d612
17737
18341
  type: builtins.str,
17738
18342
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.IngressPointConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17739
18343
  ingress_point_name: typing.Optional[builtins.str] = None,
18344
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.NetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17740
18345
  status_to_update: typing.Optional[builtins.str] = None,
17741
18346
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
17742
18347
  ) -> None:
@@ -17942,7 +18547,8 @@ def _typecheckingstub__688b96a0a95702a17f251ed7d15e4b0d218b7df748dc4b0dae35ee5be
17942
18547
 
17943
18548
  def _typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d40ebc95(
17944
18549
  *,
17945
- attribute: builtins.str,
18550
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.AnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18551
+ attribute: typing.Optional[builtins.str] = None,
17946
18552
  ) -> None:
17947
18553
  """Type checking stubs"""
17948
18554
  pass
@@ -18020,6 +18626,7 @@ def _typecheckingstub__ac58a8ffbfedfd8a37ee59f94996c3194a29e1aa4e2893a82291934e7
18020
18626
 
18021
18627
  def _typecheckingstub__2da4d9d015f3b7cc8e8bc228c621ebc8b1b100adb32a59eb61a9ceba92a64fd5(
18022
18628
  *,
18629
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.AnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18023
18630
  attribute: typing.Optional[builtins.str] = None,
18024
18631
  mime_header_attribute: typing.Optional[builtins.str] = None,
18025
18632
  ) -> None:
@@ -18165,6 +18772,22 @@ def _typecheckingstub__1248838eeec484271fe69ec5cdab36ff11554891aebb417809a0af08e
18165
18772
  """Type checking stubs"""
18166
18773
  pass
18167
18774
 
18775
+ def _typecheckingstub__466f6fc45cc786424b25d62d8ee6b11ee8502c69bd8f436961b31e9360d6dbca(
18776
+ *,
18777
+ evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],
18778
+ operator: builtins.str,
18779
+ values: typing.Sequence[builtins.str],
18780
+ ) -> None:
18781
+ """Type checking stubs"""
18782
+ pass
18783
+
18784
+ def _typecheckingstub__f68a4c434cfdeacf5dcff0a6cf5c8e887cc1ed9849ea5b6b80bbd66457f4ee0c(
18785
+ *,
18786
+ attribute: builtins.str,
18787
+ ) -> None:
18788
+ """Type checking stubs"""
18789
+ pass
18790
+
18168
18791
  def _typecheckingstub__ade2199cf4a326636b60ff7fe58a2b746de093bc3c1b7294612d9b84ad813746(
18169
18792
  *,
18170
18793
  evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],
@@ -18176,7 +18799,8 @@ def _typecheckingstub__ade2199cf4a326636b60ff7fe58a2b746de093bc3c1b7294612d9b84a
18176
18799
 
18177
18800
  def _typecheckingstub__3c9e450d2f2ff23fc01d2665ec4ed8c7483fa7d75c8c5484472b23f8a2c583fc(
18178
18801
  *,
18179
- attribute: builtins.str,
18802
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressAnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18803
+ attribute: typing.Optional[builtins.str] = None,
18180
18804
  ) -> None:
18181
18805
  """Type checking stubs"""
18182
18806
  pass
@@ -18201,6 +18825,7 @@ def _typecheckingstub__cb7b0b679bef5a6b24b2249f4b258188dd4f805799243b563fb1a1699
18201
18825
  *,
18202
18826
  boolean_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18203
18827
  ip_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18828
+ ipv6_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18204
18829
  string_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressStringExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18205
18830
  tls_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18206
18831
  ) -> None: