aws-cdk-lib 2.190.0__py3-none-any.whl → 2.192.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.

@@ -310,6 +310,21 @@ identity = ses.EmailIdentity(self, "Identity",
310
310
  identity.grant_send_email(user)
311
311
  ```
312
312
 
313
+ You can also reference an existing email identity using its ARN and grant permissions to it:
314
+
315
+ ```python
316
+ import aws_cdk.aws_iam as iam
317
+ # user: iam.User
318
+
319
+
320
+ # Imports an existing email identity using its ARN.
321
+ # This is one way to reference an existing identity; another option is using its name via fromEmailIdentityName.
322
+ imported_identity = ses.EmailIdentity.from_email_identity_arn(self, "ImportedIdentity", "arn:aws:ses:us-east-1:123456789012:identity/example.com")
323
+
324
+ # Grant send email permission to the imported identity
325
+ imported_identity.grant_send_email(user)
326
+ ```
327
+
313
328
  ### Virtual Deliverability Manager (VDM)
314
329
 
315
330
  Virtual Deliverability Manager is an Amazon SES feature that helps you enhance email deliverability,
@@ -4823,6 +4838,14 @@ class CfnMailManagerIngressPoint(
4823
4838
  smtp_password="smtpPassword"
4824
4839
  ),
4825
4840
  ingress_point_name="ingressPointName",
4841
+ network_configuration=ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty(
4842
+ private_network_configuration=ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
4843
+ vpc_endpoint_id="vpcEndpointId"
4844
+ ),
4845
+ public_network_configuration=ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
4846
+ ip_type="ipType"
4847
+ )
4848
+ ),
4826
4849
  status_to_update="statusToUpdate",
4827
4850
  tags=[CfnTag(
4828
4851
  key="key",
@@ -4841,6 +4864,7 @@ class CfnMailManagerIngressPoint(
4841
4864
  type: builtins.str,
4842
4865
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.IngressPointConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4843
4866
  ingress_point_name: typing.Optional[builtins.str] = None,
4867
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.NetworkConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
4844
4868
  status_to_update: typing.Optional[builtins.str] = None,
4845
4869
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
4846
4870
  ) -> None:
@@ -4852,6 +4876,7 @@ class CfnMailManagerIngressPoint(
4852
4876
  :param type: The type of the ingress endpoint to create.
4853
4877
  :param ingress_point_configuration: The configuration of the ingress endpoint resource.
4854
4878
  :param ingress_point_name: A user friendly name for an ingress endpoint resource.
4879
+ :param network_configuration: The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
4855
4880
  :param status_to_update: The update status of an ingress endpoint.
4856
4881
  :param tags: The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
4857
4882
  '''
@@ -4865,6 +4890,7 @@ class CfnMailManagerIngressPoint(
4865
4890
  type=type,
4866
4891
  ingress_point_configuration=ingress_point_configuration,
4867
4892
  ingress_point_name=ingress_point_name,
4893
+ network_configuration=network_configuration,
4868
4894
  status_to_update=status_to_update,
4869
4895
  tags=tags,
4870
4896
  )
@@ -5020,6 +5046,24 @@ class CfnMailManagerIngressPoint(
5020
5046
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5021
5047
  jsii.set(self, "ingressPointName", value) # pyright: ignore[reportArgumentType]
5022
5048
 
5049
+ @builtins.property
5050
+ @jsii.member(jsii_name="networkConfiguration")
5051
+ def network_configuration(
5052
+ self,
5053
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.NetworkConfigurationProperty"]]:
5054
+ '''The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.'''
5055
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.NetworkConfigurationProperty"]], jsii.get(self, "networkConfiguration"))
5056
+
5057
+ @network_configuration.setter
5058
+ def network_configuration(
5059
+ self,
5060
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.NetworkConfigurationProperty"]],
5061
+ ) -> None:
5062
+ if __debug__:
5063
+ type_hints = typing.get_type_hints(_typecheckingstub__fde2e4577760382a77b31bc0573fe3d8360be0fb229556d97fbde4dad4dd5248)
5064
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
5065
+ jsii.set(self, "networkConfiguration", value) # pyright: ignore[reportArgumentType]
5066
+
5023
5067
  @builtins.property
5024
5068
  @jsii.member(jsii_name="statusToUpdate")
5025
5069
  def status_to_update(self) -> typing.Optional[builtins.str]:
@@ -5120,6 +5164,193 @@ class CfnMailManagerIngressPoint(
5120
5164
  k + "=" + repr(v) for k, v in self._values.items()
5121
5165
  )
5122
5166
 
5167
+ @jsii.data_type(
5168
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty",
5169
+ jsii_struct_bases=[],
5170
+ name_mapping={
5171
+ "private_network_configuration": "privateNetworkConfiguration",
5172
+ "public_network_configuration": "publicNetworkConfiguration",
5173
+ },
5174
+ )
5175
+ class NetworkConfigurationProperty:
5176
+ def __init__(
5177
+ self,
5178
+ *,
5179
+ private_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5180
+ public_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5181
+ ) -> None:
5182
+ '''The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
5183
+
5184
+ :param private_network_configuration: Specifies the network configuration for the private ingress point.
5185
+ :param public_network_configuration: Specifies the network configuration for the public ingress point.
5186
+
5187
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html
5188
+ :exampleMetadata: fixture=_generated
5189
+
5190
+ Example::
5191
+
5192
+ # The code below shows an example of how to instantiate this type.
5193
+ # The values are placeholders you should change.
5194
+ from aws_cdk import aws_ses as ses
5195
+
5196
+ network_configuration_property = ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty(
5197
+ private_network_configuration=ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
5198
+ vpc_endpoint_id="vpcEndpointId"
5199
+ ),
5200
+ public_network_configuration=ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
5201
+ ip_type="ipType"
5202
+ )
5203
+ )
5204
+ '''
5205
+ if __debug__:
5206
+ type_hints = typing.get_type_hints(_typecheckingstub__e92f82eaa7f5bbe8dc091ccf3d1447df4bd68dce8ee9521169489e610fdf9bca)
5207
+ check_type(argname="argument private_network_configuration", value=private_network_configuration, expected_type=type_hints["private_network_configuration"])
5208
+ check_type(argname="argument public_network_configuration", value=public_network_configuration, expected_type=type_hints["public_network_configuration"])
5209
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
5210
+ if private_network_configuration is not None:
5211
+ self._values["private_network_configuration"] = private_network_configuration
5212
+ if public_network_configuration is not None:
5213
+ self._values["public_network_configuration"] = public_network_configuration
5214
+
5215
+ @builtins.property
5216
+ def private_network_configuration(
5217
+ self,
5218
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty"]]:
5219
+ '''Specifies the network configuration for the private ingress point.
5220
+
5221
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html#cfn-ses-mailmanageringresspoint-networkconfiguration-privatenetworkconfiguration
5222
+ '''
5223
+ result = self._values.get("private_network_configuration")
5224
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty"]], result)
5225
+
5226
+ @builtins.property
5227
+ def public_network_configuration(
5228
+ self,
5229
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty"]]:
5230
+ '''Specifies the network configuration for the public ingress point.
5231
+
5232
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html#cfn-ses-mailmanageringresspoint-networkconfiguration-publicnetworkconfiguration
5233
+ '''
5234
+ result = self._values.get("public_network_configuration")
5235
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty"]], result)
5236
+
5237
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5238
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5239
+
5240
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5241
+ return not (rhs == self)
5242
+
5243
+ def __repr__(self) -> str:
5244
+ return "NetworkConfigurationProperty(%s)" % ", ".join(
5245
+ k + "=" + repr(v) for k, v in self._values.items()
5246
+ )
5247
+
5248
+ @jsii.data_type(
5249
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty",
5250
+ jsii_struct_bases=[],
5251
+ name_mapping={"vpc_endpoint_id": "vpcEndpointId"},
5252
+ )
5253
+ class PrivateNetworkConfigurationProperty:
5254
+ def __init__(self, *, vpc_endpoint_id: builtins.str) -> None:
5255
+ '''Specifies the network configuration for the private ingress point.
5256
+
5257
+ :param vpc_endpoint_id: The identifier of the VPC endpoint to associate with this private ingress point.
5258
+
5259
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-privatenetworkconfiguration.html
5260
+ :exampleMetadata: fixture=_generated
5261
+
5262
+ Example::
5263
+
5264
+ # The code below shows an example of how to instantiate this type.
5265
+ # The values are placeholders you should change.
5266
+ from aws_cdk import aws_ses as ses
5267
+
5268
+ private_network_configuration_property = ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
5269
+ vpc_endpoint_id="vpcEndpointId"
5270
+ )
5271
+ '''
5272
+ if __debug__:
5273
+ type_hints = typing.get_type_hints(_typecheckingstub__39ad05460de649e352f4049e7ce64b0e145719d25a16cf7e4823946f080e2b6a)
5274
+ check_type(argname="argument vpc_endpoint_id", value=vpc_endpoint_id, expected_type=type_hints["vpc_endpoint_id"])
5275
+ self._values: typing.Dict[builtins.str, typing.Any] = {
5276
+ "vpc_endpoint_id": vpc_endpoint_id,
5277
+ }
5278
+
5279
+ @builtins.property
5280
+ def vpc_endpoint_id(self) -> builtins.str:
5281
+ '''The identifier of the VPC endpoint to associate with this private ingress point.
5282
+
5283
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-privatenetworkconfiguration.html#cfn-ses-mailmanageringresspoint-privatenetworkconfiguration-vpcendpointid
5284
+ '''
5285
+ result = self._values.get("vpc_endpoint_id")
5286
+ assert result is not None, "Required property 'vpc_endpoint_id' is missing"
5287
+ return typing.cast(builtins.str, result)
5288
+
5289
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5290
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5291
+
5292
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5293
+ return not (rhs == self)
5294
+
5295
+ def __repr__(self) -> str:
5296
+ return "PrivateNetworkConfigurationProperty(%s)" % ", ".join(
5297
+ k + "=" + repr(v) for k, v in self._values.items()
5298
+ )
5299
+
5300
+ @jsii.data_type(
5301
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty",
5302
+ jsii_struct_bases=[],
5303
+ name_mapping={"ip_type": "ipType"},
5304
+ )
5305
+ class PublicNetworkConfigurationProperty:
5306
+ def __init__(self, *, ip_type: builtins.str) -> None:
5307
+ '''Specifies the network configuration for the public ingress point.
5308
+
5309
+ :param ip_type: The IP address type for the public ingress point. Valid values are IPV4 and DUAL_STACK.
5310
+
5311
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-publicnetworkconfiguration.html
5312
+ :exampleMetadata: fixture=_generated
5313
+
5314
+ Example::
5315
+
5316
+ # The code below shows an example of how to instantiate this type.
5317
+ # The values are placeholders you should change.
5318
+ from aws_cdk import aws_ses as ses
5319
+
5320
+ public_network_configuration_property = ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
5321
+ ip_type="ipType"
5322
+ )
5323
+ '''
5324
+ if __debug__:
5325
+ type_hints = typing.get_type_hints(_typecheckingstub__44de118258c4f2ec589299800463fecb183b1dbbd040e740d7547fd88ac18ef2)
5326
+ check_type(argname="argument ip_type", value=ip_type, expected_type=type_hints["ip_type"])
5327
+ self._values: typing.Dict[builtins.str, typing.Any] = {
5328
+ "ip_type": ip_type,
5329
+ }
5330
+
5331
+ @builtins.property
5332
+ def ip_type(self) -> builtins.str:
5333
+ '''The IP address type for the public ingress point.
5334
+
5335
+ Valid values are IPV4 and DUAL_STACK.
5336
+
5337
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-publicnetworkconfiguration.html#cfn-ses-mailmanageringresspoint-publicnetworkconfiguration-iptype
5338
+ '''
5339
+ result = self._values.get("ip_type")
5340
+ assert result is not None, "Required property 'ip_type' is missing"
5341
+ return typing.cast(builtins.str, result)
5342
+
5343
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
5344
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
5345
+
5346
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
5347
+ return not (rhs == self)
5348
+
5349
+ def __repr__(self) -> str:
5350
+ return "PublicNetworkConfigurationProperty(%s)" % ", ".join(
5351
+ k + "=" + repr(v) for k, v in self._values.items()
5352
+ )
5353
+
5123
5354
 
5124
5355
  @jsii.data_type(
5125
5356
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerIngressPointProps",
@@ -5130,6 +5361,7 @@ class CfnMailManagerIngressPoint(
5130
5361
  "type": "type",
5131
5362
  "ingress_point_configuration": "ingressPointConfiguration",
5132
5363
  "ingress_point_name": "ingressPointName",
5364
+ "network_configuration": "networkConfiguration",
5133
5365
  "status_to_update": "statusToUpdate",
5134
5366
  "tags": "tags",
5135
5367
  },
@@ -5143,6 +5375,7 @@ class CfnMailManagerIngressPointProps:
5143
5375
  type: builtins.str,
5144
5376
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.IngressPointConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5145
5377
  ingress_point_name: typing.Optional[builtins.str] = None,
5378
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.NetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
5146
5379
  status_to_update: typing.Optional[builtins.str] = None,
5147
5380
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
5148
5381
  ) -> None:
@@ -5153,6 +5386,7 @@ class CfnMailManagerIngressPointProps:
5153
5386
  :param type: The type of the ingress endpoint to create.
5154
5387
  :param ingress_point_configuration: The configuration of the ingress endpoint resource.
5155
5388
  :param ingress_point_name: A user friendly name for an ingress endpoint resource.
5389
+ :param network_configuration: The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
5156
5390
  :param status_to_update: The update status of an ingress endpoint.
5157
5391
  :param tags: The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
5158
5392
 
@@ -5176,6 +5410,14 @@ class CfnMailManagerIngressPointProps:
5176
5410
  smtp_password="smtpPassword"
5177
5411
  ),
5178
5412
  ingress_point_name="ingressPointName",
5413
+ network_configuration=ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty(
5414
+ private_network_configuration=ses.CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty(
5415
+ vpc_endpoint_id="vpcEndpointId"
5416
+ ),
5417
+ public_network_configuration=ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty(
5418
+ ip_type="ipType"
5419
+ )
5420
+ ),
5179
5421
  status_to_update="statusToUpdate",
5180
5422
  tags=[CfnTag(
5181
5423
  key="key",
@@ -5190,6 +5432,7 @@ class CfnMailManagerIngressPointProps:
5190
5432
  check_type(argname="argument type", value=type, expected_type=type_hints["type"])
5191
5433
  check_type(argname="argument ingress_point_configuration", value=ingress_point_configuration, expected_type=type_hints["ingress_point_configuration"])
5192
5434
  check_type(argname="argument ingress_point_name", value=ingress_point_name, expected_type=type_hints["ingress_point_name"])
5435
+ check_type(argname="argument network_configuration", value=network_configuration, expected_type=type_hints["network_configuration"])
5193
5436
  check_type(argname="argument status_to_update", value=status_to_update, expected_type=type_hints["status_to_update"])
5194
5437
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
5195
5438
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -5201,6 +5444,8 @@ class CfnMailManagerIngressPointProps:
5201
5444
  self._values["ingress_point_configuration"] = ingress_point_configuration
5202
5445
  if ingress_point_name is not None:
5203
5446
  self._values["ingress_point_name"] = ingress_point_name
5447
+ if network_configuration is not None:
5448
+ self._values["network_configuration"] = network_configuration
5204
5449
  if status_to_update is not None:
5205
5450
  self._values["status_to_update"] = status_to_update
5206
5451
  if tags is not None:
@@ -5256,6 +5501,17 @@ class CfnMailManagerIngressPointProps:
5256
5501
  result = self._values.get("ingress_point_name")
5257
5502
  return typing.cast(typing.Optional[builtins.str], result)
5258
5503
 
5504
+ @builtins.property
5505
+ def network_configuration(
5506
+ self,
5507
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMailManagerIngressPoint.NetworkConfigurationProperty]]:
5508
+ '''The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
5509
+
5510
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageringresspoint.html#cfn-ses-mailmanageringresspoint-networkconfiguration
5511
+ '''
5512
+ result = self._values.get("network_configuration")
5513
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMailManagerIngressPoint.NetworkConfigurationProperty]], result)
5514
+
5259
5515
  @builtins.property
5260
5516
  def status_to_update(self) -> typing.Optional[builtins.str]:
5261
5517
  '''The update status of an ingress endpoint.
@@ -5785,6 +6041,10 @@ class CfnMailManagerRuleSet(
5785
6041
  conditions=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
5786
6042
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
5787
6043
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
6044
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6045
+ analyzer="analyzer",
6046
+ result_field="resultField"
6047
+ ),
5788
6048
  attribute="attribute"
5789
6049
  ),
5790
6050
  operator="operator"
@@ -5809,6 +6069,10 @@ class CfnMailManagerRuleSet(
5809
6069
  ),
5810
6070
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
5811
6071
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
6072
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6073
+ analyzer="analyzer",
6074
+ result_field="resultField"
6075
+ ),
5812
6076
  attribute="attribute",
5813
6077
  mime_header_attribute="mimeHeaderAttribute"
5814
6078
  ),
@@ -5831,6 +6095,10 @@ class CfnMailManagerRuleSet(
5831
6095
  unless=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
5832
6096
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
5833
6097
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
6098
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6099
+ analyzer="analyzer",
6100
+ result_field="resultField"
6101
+ ),
5834
6102
  attribute="attribute"
5835
6103
  ),
5836
6104
  operator="operator"
@@ -5855,6 +6123,10 @@ class CfnMailManagerRuleSet(
5855
6123
  ),
5856
6124
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
5857
6125
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
6126
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
6127
+ analyzer="analyzer",
6128
+ result_field="resultField"
6129
+ ),
5858
6130
  attribute="attribute",
5859
6131
  mime_header_attribute="mimeHeaderAttribute"
5860
6132
  ),
@@ -6879,6 +7151,10 @@ class CfnMailManagerRuleSet(
6879
7151
 
6880
7152
  rule_boolean_expression_property = ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
6881
7153
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7154
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7155
+ analyzer="analyzer",
7156
+ result_field="resultField"
7157
+ ),
6882
7158
  attribute="attribute"
6883
7159
  ),
6884
7160
  operator="operator"
@@ -6929,12 +7205,18 @@ class CfnMailManagerRuleSet(
6929
7205
  @jsii.data_type(
6930
7206
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty",
6931
7207
  jsii_struct_bases=[],
6932
- name_mapping={"attribute": "attribute"},
7208
+ name_mapping={"analysis": "analysis", "attribute": "attribute"},
6933
7209
  )
6934
7210
  class RuleBooleanToEvaluateProperty:
6935
- def __init__(self, *, attribute: builtins.str) -> None:
7211
+ def __init__(
7212
+ self,
7213
+ *,
7214
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.AnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7215
+ attribute: typing.Optional[builtins.str] = None,
7216
+ ) -> None:
6936
7217
  '''The union type representing the allowed types of operands for a boolean condition.
6937
7218
 
7219
+ :param analysis: The Add On ARN and its returned value to evaluate in a boolean condition expression.
6938
7220
  :param attribute: The boolean type representing the allowed attribute types for an email.
6939
7221
 
6940
7222
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html
@@ -6947,25 +7229,42 @@ class CfnMailManagerRuleSet(
6947
7229
  from aws_cdk import aws_ses as ses
6948
7230
 
6949
7231
  rule_boolean_to_evaluate_property = ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7232
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7233
+ analyzer="analyzer",
7234
+ result_field="resultField"
7235
+ ),
6950
7236
  attribute="attribute"
6951
7237
  )
6952
7238
  '''
6953
7239
  if __debug__:
6954
7240
  type_hints = typing.get_type_hints(_typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d40ebc95)
7241
+ check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
6955
7242
  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
- }
7243
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
7244
+ if analysis is not None:
7245
+ self._values["analysis"] = analysis
7246
+ if attribute is not None:
7247
+ self._values["attribute"] = attribute
6959
7248
 
6960
7249
  @builtins.property
6961
- def attribute(self) -> builtins.str:
7250
+ def analysis(
7251
+ self,
7252
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]]:
7253
+ '''The Add On ARN and its returned value to evaluate in a boolean condition expression.
7254
+
7255
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html#cfn-ses-mailmanagerruleset-rulebooleantoevaluate-analysis
7256
+ '''
7257
+ result = self._values.get("analysis")
7258
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]], result)
7259
+
7260
+ @builtins.property
7261
+ def attribute(self) -> typing.Optional[builtins.str]:
6962
7262
  '''The boolean type representing the allowed attribute types for an email.
6963
7263
 
6964
7264
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html#cfn-ses-mailmanagerruleset-rulebooleantoevaluate-attribute
6965
7265
  '''
6966
7266
  result = self._values.get("attribute")
6967
- assert result is not None, "Required property 'attribute' is missing"
6968
- return typing.cast(builtins.str, result)
7267
+ return typing.cast(typing.Optional[builtins.str], result)
6969
7268
 
6970
7269
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
6971
7270
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -7026,6 +7325,10 @@ class CfnMailManagerRuleSet(
7026
7325
  rule_condition_property = ses.CfnMailManagerRuleSet.RuleConditionProperty(
7027
7326
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
7028
7327
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7328
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7329
+ analyzer="analyzer",
7330
+ result_field="resultField"
7331
+ ),
7029
7332
  attribute="attribute"
7030
7333
  ),
7031
7334
  operator="operator"
@@ -7050,6 +7353,10 @@ class CfnMailManagerRuleSet(
7050
7353
  ),
7051
7354
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7052
7355
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
7356
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7357
+ analyzer="analyzer",
7358
+ result_field="resultField"
7359
+ ),
7053
7360
  attribute="attribute",
7054
7361
  mime_header_attribute="mimeHeaderAttribute"
7055
7362
  ),
@@ -7633,6 +7940,10 @@ class CfnMailManagerRuleSet(
7633
7940
  conditions=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
7634
7941
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
7635
7942
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7943
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7944
+ analyzer="analyzer",
7945
+ result_field="resultField"
7946
+ ),
7636
7947
  attribute="attribute"
7637
7948
  ),
7638
7949
  operator="operator"
@@ -7657,6 +7968,10 @@ class CfnMailManagerRuleSet(
7657
7968
  ),
7658
7969
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7659
7970
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
7971
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7972
+ analyzer="analyzer",
7973
+ result_field="resultField"
7974
+ ),
7660
7975
  attribute="attribute",
7661
7976
  mime_header_attribute="mimeHeaderAttribute"
7662
7977
  ),
@@ -7679,6 +7994,10 @@ class CfnMailManagerRuleSet(
7679
7994
  unless=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
7680
7995
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
7681
7996
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
7997
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
7998
+ analyzer="analyzer",
7999
+ result_field="resultField"
8000
+ ),
7682
8001
  attribute="attribute"
7683
8002
  ),
7684
8003
  operator="operator"
@@ -7703,6 +8022,10 @@ class CfnMailManagerRuleSet(
7703
8022
  ),
7704
8023
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7705
8024
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8025
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8026
+ analyzer="analyzer",
8027
+ result_field="resultField"
8028
+ ),
7706
8029
  attribute="attribute",
7707
8030
  mime_header_attribute="mimeHeaderAttribute"
7708
8031
  ),
@@ -7831,6 +8154,10 @@ class CfnMailManagerRuleSet(
7831
8154
 
7832
8155
  rule_string_expression_property = ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
7833
8156
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8157
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8158
+ analyzer="analyzer",
8159
+ result_field="resultField"
8160
+ ),
7834
8161
  attribute="attribute",
7835
8162
  mime_header_attribute="mimeHeaderAttribute"
7836
8163
  ),
@@ -7898,6 +8225,7 @@ class CfnMailManagerRuleSet(
7898
8225
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty",
7899
8226
  jsii_struct_bases=[],
7900
8227
  name_mapping={
8228
+ "analysis": "analysis",
7901
8229
  "attribute": "attribute",
7902
8230
  "mime_header_attribute": "mimeHeaderAttribute",
7903
8231
  },
@@ -7906,6 +8234,7 @@ class CfnMailManagerRuleSet(
7906
8234
  def __init__(
7907
8235
  self,
7908
8236
  *,
8237
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.AnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7909
8238
  attribute: typing.Optional[builtins.str] = None,
7910
8239
  mime_header_attribute: typing.Optional[builtins.str] = None,
7911
8240
  ) -> None:
@@ -7915,6 +8244,7 @@ class CfnMailManagerRuleSet(
7915
8244
 
7916
8245
  This data type is a UNION, so only one of the following members can be specified when used or returned.
7917
8246
 
8247
+ :param analysis: The Add On ARN and its returned value to evaluate in a string condition expression.
7918
8248
  :param attribute: The email attribute to evaluate in a string condition expression.
7919
8249
  :param mime_header_attribute: The email MIME X-Header attribute to evaluate in a string condition expression.
7920
8250
 
@@ -7928,20 +8258,38 @@ class CfnMailManagerRuleSet(
7928
8258
  from aws_cdk import aws_ses as ses
7929
8259
 
7930
8260
  rule_string_to_evaluate_property = ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8261
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8262
+ analyzer="analyzer",
8263
+ result_field="resultField"
8264
+ ),
7931
8265
  attribute="attribute",
7932
8266
  mime_header_attribute="mimeHeaderAttribute"
7933
8267
  )
7934
8268
  '''
7935
8269
  if __debug__:
7936
8270
  type_hints = typing.get_type_hints(_typecheckingstub__2da4d9d015f3b7cc8e8bc228c621ebc8b1b100adb32a59eb61a9ceba92a64fd5)
8271
+ check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
7937
8272
  check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
7938
8273
  check_type(argname="argument mime_header_attribute", value=mime_header_attribute, expected_type=type_hints["mime_header_attribute"])
7939
8274
  self._values: typing.Dict[builtins.str, typing.Any] = {}
8275
+ if analysis is not None:
8276
+ self._values["analysis"] = analysis
7940
8277
  if attribute is not None:
7941
8278
  self._values["attribute"] = attribute
7942
8279
  if mime_header_attribute is not None:
7943
8280
  self._values["mime_header_attribute"] = mime_header_attribute
7944
8281
 
8282
+ @builtins.property
8283
+ def analysis(
8284
+ self,
8285
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]]:
8286
+ '''The Add On ARN and its returned value to evaluate in a string condition expression.
8287
+
8288
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringtoevaluate.html#cfn-ses-mailmanagerruleset-rulestringtoevaluate-analysis
8289
+ '''
8290
+ result = self._values.get("analysis")
8291
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.AnalysisProperty"]], result)
8292
+
7945
8293
  @builtins.property
7946
8294
  def attribute(self) -> typing.Optional[builtins.str]:
7947
8295
  '''The email attribute to evaluate in a string condition expression.
@@ -8449,6 +8797,10 @@ class CfnMailManagerRuleSetProps:
8449
8797
  conditions=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
8450
8798
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
8451
8799
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
8800
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8801
+ analyzer="analyzer",
8802
+ result_field="resultField"
8803
+ ),
8452
8804
  attribute="attribute"
8453
8805
  ),
8454
8806
  operator="operator"
@@ -8473,6 +8825,10 @@ class CfnMailManagerRuleSetProps:
8473
8825
  ),
8474
8826
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
8475
8827
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8828
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8829
+ analyzer="analyzer",
8830
+ result_field="resultField"
8831
+ ),
8476
8832
  attribute="attribute",
8477
8833
  mime_header_attribute="mimeHeaderAttribute"
8478
8834
  ),
@@ -8495,6 +8851,10 @@ class CfnMailManagerRuleSetProps:
8495
8851
  unless=[ses.CfnMailManagerRuleSet.RuleConditionProperty(
8496
8852
  boolean_expression=ses.CfnMailManagerRuleSet.RuleBooleanExpressionProperty(
8497
8853
  evaluate=ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty(
8854
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8855
+ analyzer="analyzer",
8856
+ result_field="resultField"
8857
+ ),
8498
8858
  attribute="attribute"
8499
8859
  ),
8500
8860
  operator="operator"
@@ -8519,6 +8879,10 @@ class CfnMailManagerRuleSetProps:
8519
8879
  ),
8520
8880
  string_expression=ses.CfnMailManagerRuleSet.RuleStringExpressionProperty(
8521
8881
  evaluate=ses.CfnMailManagerRuleSet.RuleStringToEvaluateProperty(
8882
+ analysis=ses.CfnMailManagerRuleSet.AnalysisProperty(
8883
+ analyzer="analyzer",
8884
+ result_field="resultField"
8885
+ ),
8522
8886
  attribute="attribute",
8523
8887
  mime_header_attribute="mimeHeaderAttribute"
8524
8888
  ),
@@ -8643,8 +9007,19 @@ class CfnMailManagerTrafficPolicy(
8643
9007
  operator="operator",
8644
9008
  values=["values"]
8645
9009
  ),
9010
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
9011
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
9012
+ attribute="attribute"
9013
+ ),
9014
+ operator="operator",
9015
+ values=["values"]
9016
+ ),
8646
9017
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
8647
9018
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
9019
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9020
+ analyzer="analyzer",
9021
+ result_field="resultField"
9022
+ ),
8648
9023
  attribute="attribute"
8649
9024
  ),
8650
9025
  operator="operator",
@@ -9189,6 +9564,146 @@ class CfnMailManagerTrafficPolicy(
9189
9564
  k + "=" + repr(v) for k, v in self._values.items()
9190
9565
  )
9191
9566
 
9567
+ @jsii.data_type(
9568
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty",
9569
+ jsii_struct_bases=[],
9570
+ name_mapping={
9571
+ "evaluate": "evaluate",
9572
+ "operator": "operator",
9573
+ "values": "values",
9574
+ },
9575
+ )
9576
+ class IngressIpv6ExpressionProperty:
9577
+ def __init__(
9578
+ self,
9579
+ *,
9580
+ evaluate: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty", typing.Dict[builtins.str, typing.Any]]],
9581
+ operator: builtins.str,
9582
+ values: typing.Sequence[builtins.str],
9583
+ ) -> None:
9584
+ '''
9585
+ :param evaluate:
9586
+ :param operator:
9587
+ :param values:
9588
+
9589
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html
9590
+ :exampleMetadata: fixture=_generated
9591
+
9592
+ Example::
9593
+
9594
+ # The code below shows an example of how to instantiate this type.
9595
+ # The values are placeholders you should change.
9596
+ from aws_cdk import aws_ses as ses
9597
+
9598
+ ingress_ipv6_expression_property = ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
9599
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
9600
+ attribute="attribute"
9601
+ ),
9602
+ operator="operator",
9603
+ values=["values"]
9604
+ )
9605
+ '''
9606
+ if __debug__:
9607
+ type_hints = typing.get_type_hints(_typecheckingstub__466f6fc45cc786424b25d62d8ee6b11ee8502c69bd8f436961b31e9360d6dbca)
9608
+ check_type(argname="argument evaluate", value=evaluate, expected_type=type_hints["evaluate"])
9609
+ check_type(argname="argument operator", value=operator, expected_type=type_hints["operator"])
9610
+ check_type(argname="argument values", value=values, expected_type=type_hints["values"])
9611
+ self._values: typing.Dict[builtins.str, typing.Any] = {
9612
+ "evaluate": evaluate,
9613
+ "operator": operator,
9614
+ "values": values,
9615
+ }
9616
+
9617
+ @builtins.property
9618
+ def evaluate(
9619
+ self,
9620
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty"]:
9621
+ '''
9622
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-evaluate
9623
+ '''
9624
+ result = self._values.get("evaluate")
9625
+ assert result is not None, "Required property 'evaluate' is missing"
9626
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty"], result)
9627
+
9628
+ @builtins.property
9629
+ def operator(self) -> builtins.str:
9630
+ '''
9631
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-operator
9632
+ '''
9633
+ result = self._values.get("operator")
9634
+ assert result is not None, "Required property 'operator' is missing"
9635
+ return typing.cast(builtins.str, result)
9636
+
9637
+ @builtins.property
9638
+ def values(self) -> typing.List[builtins.str]:
9639
+ '''
9640
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-values
9641
+ '''
9642
+ result = self._values.get("values")
9643
+ assert result is not None, "Required property 'values' is missing"
9644
+ return typing.cast(typing.List[builtins.str], result)
9645
+
9646
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9647
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9648
+
9649
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9650
+ return not (rhs == self)
9651
+
9652
+ def __repr__(self) -> str:
9653
+ return "IngressIpv6ExpressionProperty(%s)" % ", ".join(
9654
+ k + "=" + repr(v) for k, v in self._values.items()
9655
+ )
9656
+
9657
+ @jsii.data_type(
9658
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty",
9659
+ jsii_struct_bases=[],
9660
+ name_mapping={"attribute": "attribute"},
9661
+ )
9662
+ class IngressIpv6ToEvaluateProperty:
9663
+ def __init__(self, *, attribute: builtins.str) -> None:
9664
+ '''
9665
+ :param attribute:
9666
+
9667
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6toevaluate.html
9668
+ :exampleMetadata: fixture=_generated
9669
+
9670
+ Example::
9671
+
9672
+ # The code below shows an example of how to instantiate this type.
9673
+ # The values are placeholders you should change.
9674
+ from aws_cdk import aws_ses as ses
9675
+
9676
+ ingress_ipv6_to_evaluate_property = ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
9677
+ attribute="attribute"
9678
+ )
9679
+ '''
9680
+ if __debug__:
9681
+ type_hints = typing.get_type_hints(_typecheckingstub__f68a4c434cfdeacf5dcff0a6cf5c8e887cc1ed9849ea5b6b80bbd66457f4ee0c)
9682
+ check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
9683
+ self._values: typing.Dict[builtins.str, typing.Any] = {
9684
+ "attribute": attribute,
9685
+ }
9686
+
9687
+ @builtins.property
9688
+ def attribute(self) -> builtins.str:
9689
+ '''
9690
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6toevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6toevaluate-attribute
9691
+ '''
9692
+ result = self._values.get("attribute")
9693
+ assert result is not None, "Required property 'attribute' is missing"
9694
+ return typing.cast(builtins.str, result)
9695
+
9696
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
9697
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
9698
+
9699
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
9700
+ return not (rhs == self)
9701
+
9702
+ def __repr__(self) -> str:
9703
+ return "IngressIpv6ToEvaluateProperty(%s)" % ", ".join(
9704
+ k + "=" + repr(v) for k, v in self._values.items()
9705
+ )
9706
+
9192
9707
  @jsii.data_type(
9193
9708
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty",
9194
9709
  jsii_struct_bases=[],
@@ -9223,6 +9738,10 @@ class CfnMailManagerTrafficPolicy(
9223
9738
 
9224
9739
  ingress_string_expression_property = ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9225
9740
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
9741
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9742
+ analyzer="analyzer",
9743
+ result_field="resultField"
9744
+ ),
9226
9745
  attribute="attribute"
9227
9746
  ),
9228
9747
  operator="operator",
@@ -9285,12 +9804,18 @@ class CfnMailManagerTrafficPolicy(
9285
9804
  @jsii.data_type(
9286
9805
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty",
9287
9806
  jsii_struct_bases=[],
9288
- name_mapping={"attribute": "attribute"},
9807
+ name_mapping={"analysis": "analysis", "attribute": "attribute"},
9289
9808
  )
9290
9809
  class IngressStringToEvaluateProperty:
9291
- def __init__(self, *, attribute: builtins.str) -> None:
9810
+ def __init__(
9811
+ self,
9812
+ *,
9813
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressAnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9814
+ attribute: typing.Optional[builtins.str] = None,
9815
+ ) -> None:
9292
9816
  '''The union type representing the allowed types for the left hand side of a string condition.
9293
9817
 
9818
+ :param analysis:
9294
9819
  :param attribute: The enum type representing the allowed attribute types for a string condition.
9295
9820
 
9296
9821
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html
@@ -9303,25 +9828,41 @@ class CfnMailManagerTrafficPolicy(
9303
9828
  from aws_cdk import aws_ses as ses
9304
9829
 
9305
9830
  ingress_string_to_evaluate_property = ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
9831
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9832
+ analyzer="analyzer",
9833
+ result_field="resultField"
9834
+ ),
9306
9835
  attribute="attribute"
9307
9836
  )
9308
9837
  '''
9309
9838
  if __debug__:
9310
9839
  type_hints = typing.get_type_hints(_typecheckingstub__3c9e450d2f2ff23fc01d2665ec4ed8c7483fa7d75c8c5484472b23f8a2c583fc)
9840
+ check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
9311
9841
  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
- }
9842
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
9843
+ if analysis is not None:
9844
+ self._values["analysis"] = analysis
9845
+ if attribute is not None:
9846
+ self._values["attribute"] = attribute
9315
9847
 
9316
9848
  @builtins.property
9317
- def attribute(self) -> builtins.str:
9849
+ def analysis(
9850
+ self,
9851
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]]:
9852
+ '''
9853
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressstringtoevaluate-analysis
9854
+ '''
9855
+ result = self._values.get("analysis")
9856
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]], result)
9857
+
9858
+ @builtins.property
9859
+ def attribute(self) -> typing.Optional[builtins.str]:
9318
9860
  '''The enum type representing the allowed attribute types for a string condition.
9319
9861
 
9320
9862
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressstringtoevaluate-attribute
9321
9863
  '''
9322
9864
  result = self._values.get("attribute")
9323
- assert result is not None, "Required property 'attribute' is missing"
9324
- return typing.cast(builtins.str, result)
9865
+ return typing.cast(typing.Optional[builtins.str], result)
9325
9866
 
9326
9867
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
9327
9868
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -9486,6 +10027,7 @@ class CfnMailManagerTrafficPolicy(
9486
10027
  name_mapping={
9487
10028
  "boolean_expression": "booleanExpression",
9488
10029
  "ip_expression": "ipExpression",
10030
+ "ipv6_expression": "ipv6Expression",
9489
10031
  "string_expression": "stringExpression",
9490
10032
  "tls_expression": "tlsExpression",
9491
10033
  },
@@ -9496,6 +10038,7 @@ class CfnMailManagerTrafficPolicy(
9496
10038
  *,
9497
10039
  boolean_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9498
10040
  ip_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
10041
+ ipv6_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9499
10042
  string_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressStringExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9500
10043
  tls_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9501
10044
  ) -> None:
@@ -9507,6 +10050,7 @@ class CfnMailManagerTrafficPolicy(
9507
10050
 
9508
10051
  :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
10052
  :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'.
10053
+ :param ipv6_expression:
9510
10054
  :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
10055
  :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
10056
 
@@ -9536,8 +10080,19 @@ class CfnMailManagerTrafficPolicy(
9536
10080
  operator="operator",
9537
10081
  values=["values"]
9538
10082
  ),
10083
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
10084
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
10085
+ attribute="attribute"
10086
+ ),
10087
+ operator="operator",
10088
+ values=["values"]
10089
+ ),
9539
10090
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9540
10091
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
10092
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10093
+ analyzer="analyzer",
10094
+ result_field="resultField"
10095
+ ),
9541
10096
  attribute="attribute"
9542
10097
  ),
9543
10098
  operator="operator",
@@ -9556,6 +10111,7 @@ class CfnMailManagerTrafficPolicy(
9556
10111
  type_hints = typing.get_type_hints(_typecheckingstub__cb7b0b679bef5a6b24b2249f4b258188dd4f805799243b563fb1a1699e938bb6)
9557
10112
  check_type(argname="argument boolean_expression", value=boolean_expression, expected_type=type_hints["boolean_expression"])
9558
10113
  check_type(argname="argument ip_expression", value=ip_expression, expected_type=type_hints["ip_expression"])
10114
+ check_type(argname="argument ipv6_expression", value=ipv6_expression, expected_type=type_hints["ipv6_expression"])
9559
10115
  check_type(argname="argument string_expression", value=string_expression, expected_type=type_hints["string_expression"])
9560
10116
  check_type(argname="argument tls_expression", value=tls_expression, expected_type=type_hints["tls_expression"])
9561
10117
  self._values: typing.Dict[builtins.str, typing.Any] = {}
@@ -9563,6 +10119,8 @@ class CfnMailManagerTrafficPolicy(
9563
10119
  self._values["boolean_expression"] = boolean_expression
9564
10120
  if ip_expression is not None:
9565
10121
  self._values["ip_expression"] = ip_expression
10122
+ if ipv6_expression is not None:
10123
+ self._values["ipv6_expression"] = ipv6_expression
9566
10124
  if string_expression is not None:
9567
10125
  self._values["string_expression"] = string_expression
9568
10126
  if tls_expression is not None:
@@ -9594,6 +10152,16 @@ class CfnMailManagerTrafficPolicy(
9594
10152
  result = self._values.get("ip_expression")
9595
10153
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty"]], result)
9596
10154
 
10155
+ @builtins.property
10156
+ def ipv6_expression(
10157
+ self,
10158
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty"]]:
10159
+ '''
10160
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-policycondition.html#cfn-ses-mailmanagertrafficpolicy-policycondition-ipv6expression
10161
+ '''
10162
+ result = self._values.get("ipv6_expression")
10163
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty"]], result)
10164
+
9597
10165
  @builtins.property
9598
10166
  def string_expression(
9599
10167
  self,
@@ -9676,8 +10244,19 @@ class CfnMailManagerTrafficPolicy(
9676
10244
  operator="operator",
9677
10245
  values=["values"]
9678
10246
  ),
10247
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
10248
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
10249
+ attribute="attribute"
10250
+ ),
10251
+ operator="operator",
10252
+ values=["values"]
10253
+ ),
9679
10254
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9680
10255
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
10256
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10257
+ analyzer="analyzer",
10258
+ result_field="resultField"
10259
+ ),
9681
10260
  attribute="attribute"
9682
10261
  ),
9683
10262
  operator="operator",
@@ -9795,8 +10374,19 @@ class CfnMailManagerTrafficPolicyProps:
9795
10374
  operator="operator",
9796
10375
  values=["values"]
9797
10376
  ),
10377
+ ipv6_expression=ses.CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty(
10378
+ evaluate=ses.CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty(
10379
+ attribute="attribute"
10380
+ ),
10381
+ operator="operator",
10382
+ values=["values"]
10383
+ ),
9798
10384
  string_expression=ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty(
9799
10385
  evaluate=ses.CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty(
10386
+ analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10387
+ analyzer="analyzer",
10388
+ result_field="resultField"
10389
+ ),
9800
10390
  attribute="attribute"
9801
10391
  ),
9802
10392
  operator="operator",
@@ -16784,6 +17374,27 @@ class EmailIdentity(
16784
17374
 
16785
17375
  jsii.create(self.__class__, self, [scope, id, props])
16786
17376
 
17377
+ @jsii.member(jsii_name="fromEmailIdentityArn")
17378
+ @builtins.classmethod
17379
+ def from_email_identity_arn(
17380
+ cls,
17381
+ scope: _constructs_77d1e7e8.Construct,
17382
+ id: builtins.str,
17383
+ email_identity_arn: builtins.str,
17384
+ ) -> IEmailIdentity:
17385
+ '''Import an email identity by ARN.
17386
+
17387
+ :param scope: -
17388
+ :param id: -
17389
+ :param email_identity_arn: -
17390
+ '''
17391
+ if __debug__:
17392
+ type_hints = typing.get_type_hints(_typecheckingstub__2de9549a4fca6f40216fb37a5702ca1bed885d852e1611aee32de9a296311f79)
17393
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
17394
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
17395
+ check_type(argname="argument email_identity_arn", value=email_identity_arn, expected_type=type_hints["email_identity_arn"])
17396
+ return typing.cast(IEmailIdentity, jsii.sinvoke(cls, "fromEmailIdentityArn", [scope, id, email_identity_arn]))
17397
+
16787
17398
  @jsii.member(jsii_name="fromEmailIdentityName")
16788
17399
  @builtins.classmethod
16789
17400
  def from_email_identity_name(
@@ -17662,6 +18273,7 @@ def _typecheckingstub__1ceb1a8308b4e72eecdc0962cf663d2c0564dbffbabebaa887b776484
17662
18273
  type: builtins.str,
17663
18274
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.IngressPointConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17664
18275
  ingress_point_name: typing.Optional[builtins.str] = None,
18276
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.NetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17665
18277
  status_to_update: typing.Optional[builtins.str] = None,
17666
18278
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
17667
18279
  ) -> None:
@@ -17710,6 +18322,12 @@ def _typecheckingstub__47a33bb2ac7c6600470d2eeac418be17d66b98bcd085e465db6dba93b
17710
18322
  """Type checking stubs"""
17711
18323
  pass
17712
18324
 
18325
+ def _typecheckingstub__fde2e4577760382a77b31bc0573fe3d8360be0fb229556d97fbde4dad4dd5248(
18326
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMailManagerIngressPoint.NetworkConfigurationProperty]],
18327
+ ) -> None:
18328
+ """Type checking stubs"""
18329
+ pass
18330
+
17713
18331
  def _typecheckingstub__681e417ef520acfe754a35e65d8ecb2a8e270ef54acf705fd91dd2427921f20d(
17714
18332
  value: typing.Optional[builtins.str],
17715
18333
  ) -> None:
@@ -17730,6 +18348,28 @@ def _typecheckingstub__3799ee40c4fb2a5153cb73f62102e77ad68fed1ac1eec8eef79d4bb8f
17730
18348
  """Type checking stubs"""
17731
18349
  pass
17732
18350
 
18351
+ def _typecheckingstub__e92f82eaa7f5bbe8dc091ccf3d1447df4bd68dce8ee9521169489e610fdf9bca(
18352
+ *,
18353
+ private_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.PrivateNetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18354
+ public_network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18355
+ ) -> None:
18356
+ """Type checking stubs"""
18357
+ pass
18358
+
18359
+ def _typecheckingstub__39ad05460de649e352f4049e7ce64b0e145719d25a16cf7e4823946f080e2b6a(
18360
+ *,
18361
+ vpc_endpoint_id: builtins.str,
18362
+ ) -> None:
18363
+ """Type checking stubs"""
18364
+ pass
18365
+
18366
+ def _typecheckingstub__44de118258c4f2ec589299800463fecb183b1dbbd040e740d7547fd88ac18ef2(
18367
+ *,
18368
+ ip_type: builtins.str,
18369
+ ) -> None:
18370
+ """Type checking stubs"""
18371
+ pass
18372
+
17733
18373
  def _typecheckingstub__4a58faebfc97ab1b10162e7546f05d5e8ed2912a90a84602bdbf7d61271bfdd1(
17734
18374
  *,
17735
18375
  rule_set_id: builtins.str,
@@ -17737,6 +18377,7 @@ def _typecheckingstub__4a58faebfc97ab1b10162e7546f05d5e8ed2912a90a84602bdbf7d612
17737
18377
  type: builtins.str,
17738
18378
  ingress_point_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.IngressPointConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17739
18379
  ingress_point_name: typing.Optional[builtins.str] = None,
18380
+ network_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerIngressPoint.NetworkConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
17740
18381
  status_to_update: typing.Optional[builtins.str] = None,
17741
18382
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
17742
18383
  ) -> None:
@@ -17942,7 +18583,8 @@ def _typecheckingstub__688b96a0a95702a17f251ed7d15e4b0d218b7df748dc4b0dae35ee5be
17942
18583
 
17943
18584
  def _typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d40ebc95(
17944
18585
  *,
17945
- attribute: builtins.str,
18586
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.AnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18587
+ attribute: typing.Optional[builtins.str] = None,
17946
18588
  ) -> None:
17947
18589
  """Type checking stubs"""
17948
18590
  pass
@@ -18020,6 +18662,7 @@ def _typecheckingstub__ac58a8ffbfedfd8a37ee59f94996c3194a29e1aa4e2893a82291934e7
18020
18662
 
18021
18663
  def _typecheckingstub__2da4d9d015f3b7cc8e8bc228c621ebc8b1b100adb32a59eb61a9ceba92a64fd5(
18022
18664
  *,
18665
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.AnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18023
18666
  attribute: typing.Optional[builtins.str] = None,
18024
18667
  mime_header_attribute: typing.Optional[builtins.str] = None,
18025
18668
  ) -> None:
@@ -18165,6 +18808,22 @@ def _typecheckingstub__1248838eeec484271fe69ec5cdab36ff11554891aebb417809a0af08e
18165
18808
  """Type checking stubs"""
18166
18809
  pass
18167
18810
 
18811
+ def _typecheckingstub__466f6fc45cc786424b25d62d8ee6b11ee8502c69bd8f436961b31e9360d6dbca(
18812
+ *,
18813
+ evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIpv6ToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],
18814
+ operator: builtins.str,
18815
+ values: typing.Sequence[builtins.str],
18816
+ ) -> None:
18817
+ """Type checking stubs"""
18818
+ pass
18819
+
18820
+ def _typecheckingstub__f68a4c434cfdeacf5dcff0a6cf5c8e887cc1ed9849ea5b6b80bbd66457f4ee0c(
18821
+ *,
18822
+ attribute: builtins.str,
18823
+ ) -> None:
18824
+ """Type checking stubs"""
18825
+ pass
18826
+
18168
18827
  def _typecheckingstub__ade2199cf4a326636b60ff7fe58a2b746de093bc3c1b7294612d9b84ad813746(
18169
18828
  *,
18170
18829
  evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],
@@ -18176,7 +18835,8 @@ def _typecheckingstub__ade2199cf4a326636b60ff7fe58a2b746de093bc3c1b7294612d9b84a
18176
18835
 
18177
18836
  def _typecheckingstub__3c9e450d2f2ff23fc01d2665ec4ed8c7483fa7d75c8c5484472b23f8a2c583fc(
18178
18837
  *,
18179
- attribute: builtins.str,
18838
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressAnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18839
+ attribute: typing.Optional[builtins.str] = None,
18180
18840
  ) -> None:
18181
18841
  """Type checking stubs"""
18182
18842
  pass
@@ -18201,6 +18861,7 @@ def _typecheckingstub__cb7b0b679bef5a6b24b2249f4b258188dd4f805799243b563fb1a1699
18201
18861
  *,
18202
18862
  boolean_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18203
18863
  ip_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18864
+ ipv6_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIpv6ExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18204
18865
  string_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressStringExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18205
18866
  tls_expression: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18206
18867
  ) -> None:
@@ -19061,6 +19722,14 @@ def _typecheckingstub__a0d44bf733be67b29d51a6c681c3faafee6103884474147b68d4b466a
19061
19722
  """Type checking stubs"""
19062
19723
  pass
19063
19724
 
19725
+ def _typecheckingstub__2de9549a4fca6f40216fb37a5702ca1bed885d852e1611aee32de9a296311f79(
19726
+ scope: _constructs_77d1e7e8.Construct,
19727
+ id: builtins.str,
19728
+ email_identity_arn: builtins.str,
19729
+ ) -> None:
19730
+ """Type checking stubs"""
19731
+ pass
19732
+
19064
19733
  def _typecheckingstub__eb1cb50e69249e3f61387a80db0e14cc9a9790c024548390466a511484409a85(
19065
19734
  scope: _constructs_77d1e7e8.Construct,
19066
19735
  id: builtins.str,