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

Files changed (55) hide show
  1. aws_cdk/__init__.py +22 -24
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.198.0.jsii.tgz → aws-cdk-lib@2.200.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_apigateway/__init__.py +1 -1
  6. aws_cdk/aws_appconfig/__init__.py +296 -48
  7. aws_cdk/aws_applicationautoscaling/__init__.py +4 -4
  8. aws_cdk/aws_aps/__init__.py +365 -14
  9. aws_cdk/aws_autoscaling/__init__.py +4 -4
  10. aws_cdk/aws_bedrock/__init__.py +436 -28
  11. aws_cdk/aws_cloudformation/__init__.py +17 -23
  12. aws_cdk/aws_cloudfront_origins/__init__.py +1 -1
  13. aws_cdk/aws_cloudtrail/__init__.py +4 -4
  14. aws_cdk/aws_cloudwatch/__init__.py +50 -1
  15. aws_cdk/aws_codebuild/__init__.py +116 -0
  16. aws_cdk/aws_datazone/__init__.py +699 -9
  17. aws_cdk/aws_deadline/__init__.py +38 -10
  18. aws_cdk/aws_ec2/__init__.py +97 -28
  19. aws_cdk/aws_ecs_patterns/__init__.py +49 -3
  20. aws_cdk/aws_eks/__init__.py +40 -9
  21. aws_cdk/aws_elasticloadbalancingv2/__init__.py +7 -7
  22. aws_cdk/aws_emr/__init__.py +36 -2
  23. aws_cdk/aws_events_targets/__init__.py +78 -1
  24. aws_cdk/aws_fsx/__init__.py +122 -0
  25. aws_cdk/aws_glue/__init__.py +55 -26
  26. aws_cdk/aws_iam/__init__.py +376 -2
  27. aws_cdk/aws_iot/__init__.py +57 -5
  28. aws_cdk/aws_kinesisfirehose/__init__.py +5 -1
  29. aws_cdk/aws_lambda/__init__.py +65 -45
  30. aws_cdk/aws_lex/__init__.py +27 -13
  31. aws_cdk/aws_lightsail/__init__.py +452 -0
  32. aws_cdk/aws_medialive/__init__.py +699 -497
  33. aws_cdk/aws_msk/__init__.py +4 -4
  34. aws_cdk/aws_networkfirewall/__init__.py +9 -5
  35. aws_cdk/aws_nimblestudio/__init__.py +208 -400
  36. aws_cdk/aws_panorama/__init__.py +30 -3
  37. aws_cdk/aws_pcs/__init__.py +12 -5
  38. aws_cdk/aws_rds/__init__.py +28 -16
  39. aws_cdk/aws_s3/__init__.py +367 -6
  40. aws_cdk/aws_s3express/__init__.py +789 -0
  41. aws_cdk/aws_ses/__init__.py +549 -32
  42. aws_cdk/aws_sns_subscriptions/__init__.py +256 -1
  43. aws_cdk/aws_stepfunctions/__init__.py +55 -17
  44. aws_cdk/aws_stepfunctions_tasks/__init__.py +1502 -2
  45. aws_cdk/aws_synthetics/__init__.py +26 -16
  46. aws_cdk/aws_voiceid/__init__.py +13 -3
  47. aws_cdk/aws_vpclattice/__init__.py +219 -209
  48. aws_cdk/cloud_assembly_schema/__init__.py +137 -42
  49. aws_cdk/cx_api/__init__.py +7 -7
  50. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/METADATA +2 -2
  51. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/RECORD +55 -55
  52. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/LICENSE +0 -0
  53. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/NOTICE +0 -0
  54. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/WHEEL +0 -0
  55. {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/top_level.txt +0 -0
@@ -4468,6 +4468,211 @@ class CfnMailManagerAddonSubscriptionProps:
4468
4468
  )
4469
4469
 
4470
4470
 
4471
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
4472
+ class CfnMailManagerAddressList(
4473
+ _CfnResource_9df397a6,
4474
+ metaclass=jsii.JSIIMeta,
4475
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerAddressList",
4476
+ ):
4477
+ '''Definition of AWS::SES::MailManagerAddressList Resource Type.
4478
+
4479
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html
4480
+ :cloudformationResource: AWS::SES::MailManagerAddressList
4481
+ :exampleMetadata: fixture=_generated
4482
+
4483
+ Example::
4484
+
4485
+ # The code below shows an example of how to instantiate this type.
4486
+ # The values are placeholders you should change.
4487
+ from aws_cdk import aws_ses as ses
4488
+
4489
+ cfn_mail_manager_address_list = ses.CfnMailManagerAddressList(self, "MyCfnMailManagerAddressList",
4490
+ address_list_name="addressListName",
4491
+ tags=[CfnTag(
4492
+ key="key",
4493
+ value="value"
4494
+ )]
4495
+ )
4496
+ '''
4497
+
4498
+ def __init__(
4499
+ self,
4500
+ scope: _constructs_77d1e7e8.Construct,
4501
+ id: builtins.str,
4502
+ *,
4503
+ address_list_name: typing.Optional[builtins.str] = None,
4504
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
4505
+ ) -> None:
4506
+ '''
4507
+ :param scope: Scope in which this resource is defined.
4508
+ :param id: Construct identifier for this resource (unique in its scope).
4509
+ :param address_list_name:
4510
+ :param tags:
4511
+ '''
4512
+ if __debug__:
4513
+ type_hints = typing.get_type_hints(_typecheckingstub__6a8a172d98fe048a3419d1b92dcaf2e59e8461e9b0baf073f812b3916bcd4974)
4514
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
4515
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
4516
+ props = CfnMailManagerAddressListProps(
4517
+ address_list_name=address_list_name, tags=tags
4518
+ )
4519
+
4520
+ jsii.create(self.__class__, self, [scope, id, props])
4521
+
4522
+ @jsii.member(jsii_name="inspect")
4523
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
4524
+ '''Examines the CloudFormation resource and discloses attributes.
4525
+
4526
+ :param inspector: tree inspector to collect and process attributes.
4527
+ '''
4528
+ if __debug__:
4529
+ type_hints = typing.get_type_hints(_typecheckingstub__4f6a8901ab278ee698ce069b658195d6cc144f36006c6c634fd9c8598d24d83d)
4530
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
4531
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
4532
+
4533
+ @jsii.member(jsii_name="renderProperties")
4534
+ def _render_properties(
4535
+ self,
4536
+ props: typing.Mapping[builtins.str, typing.Any],
4537
+ ) -> typing.Mapping[builtins.str, typing.Any]:
4538
+ '''
4539
+ :param props: -
4540
+ '''
4541
+ if __debug__:
4542
+ type_hints = typing.get_type_hints(_typecheckingstub__5a2a230c58a2c2b4b62e185b88fe729ffbc699c86e17f9fe3d25e95ae19ea40b)
4543
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
4544
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
4545
+
4546
+ @jsii.python.classproperty
4547
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
4548
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
4549
+ '''The CloudFormation resource type name for this resource class.'''
4550
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
4551
+
4552
+ @builtins.property
4553
+ @jsii.member(jsii_name="attrAddressListArn")
4554
+ def attr_address_list_arn(self) -> builtins.str:
4555
+ '''
4556
+ :cloudformationAttribute: AddressListArn
4557
+ '''
4558
+ return typing.cast(builtins.str, jsii.get(self, "attrAddressListArn"))
4559
+
4560
+ @builtins.property
4561
+ @jsii.member(jsii_name="attrAddressListId")
4562
+ def attr_address_list_id(self) -> builtins.str:
4563
+ '''
4564
+ :cloudformationAttribute: AddressListId
4565
+ '''
4566
+ return typing.cast(builtins.str, jsii.get(self, "attrAddressListId"))
4567
+
4568
+ @builtins.property
4569
+ @jsii.member(jsii_name="cdkTagManager")
4570
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
4571
+ '''Tag Manager which manages the tags for this resource.'''
4572
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
4573
+
4574
+ @builtins.property
4575
+ @jsii.member(jsii_name="cfnProperties")
4576
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
4577
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
4578
+
4579
+ @builtins.property
4580
+ @jsii.member(jsii_name="addressListName")
4581
+ def address_list_name(self) -> typing.Optional[builtins.str]:
4582
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "addressListName"))
4583
+
4584
+ @address_list_name.setter
4585
+ def address_list_name(self, value: typing.Optional[builtins.str]) -> None:
4586
+ if __debug__:
4587
+ type_hints = typing.get_type_hints(_typecheckingstub__53d1505dab469f39095f9e22ba4d8bdae2405adbe8d8d641e4d4a1abbf6b3770)
4588
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4589
+ jsii.set(self, "addressListName", value) # pyright: ignore[reportArgumentType]
4590
+
4591
+ @builtins.property
4592
+ @jsii.member(jsii_name="tags")
4593
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
4594
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
4595
+
4596
+ @tags.setter
4597
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
4598
+ if __debug__:
4599
+ type_hints = typing.get_type_hints(_typecheckingstub__f941c234d4973425d4ac187f87f54965bfdb82848d3fcf93664acc11143c1068)
4600
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
4601
+ jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
4602
+
4603
+
4604
+ @jsii.data_type(
4605
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerAddressListProps",
4606
+ jsii_struct_bases=[],
4607
+ name_mapping={"address_list_name": "addressListName", "tags": "tags"},
4608
+ )
4609
+ class CfnMailManagerAddressListProps:
4610
+ def __init__(
4611
+ self,
4612
+ *,
4613
+ address_list_name: typing.Optional[builtins.str] = None,
4614
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
4615
+ ) -> None:
4616
+ '''Properties for defining a ``CfnMailManagerAddressList``.
4617
+
4618
+ :param address_list_name:
4619
+ :param tags:
4620
+
4621
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html
4622
+ :exampleMetadata: fixture=_generated
4623
+
4624
+ Example::
4625
+
4626
+ # The code below shows an example of how to instantiate this type.
4627
+ # The values are placeholders you should change.
4628
+ from aws_cdk import aws_ses as ses
4629
+
4630
+ cfn_mail_manager_address_list_props = ses.CfnMailManagerAddressListProps(
4631
+ address_list_name="addressListName",
4632
+ tags=[CfnTag(
4633
+ key="key",
4634
+ value="value"
4635
+ )]
4636
+ )
4637
+ '''
4638
+ if __debug__:
4639
+ type_hints = typing.get_type_hints(_typecheckingstub__ec45e85ebcc385f7d054df8a6b207754f0fa06560d7270f49432e2594f0626f9)
4640
+ check_type(argname="argument address_list_name", value=address_list_name, expected_type=type_hints["address_list_name"])
4641
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
4642
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
4643
+ if address_list_name is not None:
4644
+ self._values["address_list_name"] = address_list_name
4645
+ if tags is not None:
4646
+ self._values["tags"] = tags
4647
+
4648
+ @builtins.property
4649
+ def address_list_name(self) -> typing.Optional[builtins.str]:
4650
+ '''
4651
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#cfn-ses-mailmanageraddresslist-addresslistname
4652
+ '''
4653
+ result = self._values.get("address_list_name")
4654
+ return typing.cast(typing.Optional[builtins.str], result)
4655
+
4656
+ @builtins.property
4657
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
4658
+ '''
4659
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#cfn-ses-mailmanageraddresslist-tags
4660
+ '''
4661
+ result = self._values.get("tags")
4662
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
4663
+
4664
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
4665
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
4666
+
4667
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
4668
+ return not (rhs == self)
4669
+
4670
+ def __repr__(self) -> str:
4671
+ return "CfnMailManagerAddressListProps(%s)" % ", ".join(
4672
+ k + "=" + repr(v) for k, v in self._values.items()
4673
+ )
4674
+
4675
+
4471
4676
  @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
4472
4677
  class CfnMailManagerArchive(
4473
4678
  _CfnResource_9df397a6,
@@ -6073,7 +6278,11 @@ class CfnMailManagerRuleSet(
6073
6278
  analyzer="analyzer",
6074
6279
  result_field="resultField"
6075
6280
  ),
6076
- attribute="attribute"
6281
+ attribute="attribute",
6282
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
6283
+ address_lists=["addressLists"],
6284
+ attribute="attribute"
6285
+ )
6077
6286
  ),
6078
6287
  operator="operator"
6079
6288
  ),
@@ -6127,7 +6336,11 @@ class CfnMailManagerRuleSet(
6127
6336
  analyzer="analyzer",
6128
6337
  result_field="resultField"
6129
6338
  ),
6130
- attribute="attribute"
6339
+ attribute="attribute",
6340
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
6341
+ address_lists=["addressLists"],
6342
+ attribute="attribute"
6343
+ )
6131
6344
  ),
6132
6345
  operator="operator"
6133
6346
  ),
@@ -6940,7 +7153,7 @@ class CfnMailManagerRuleSet(
6940
7153
  :param deliver_to_mailbox: This action delivers an email to a WorkMail mailbox.
6941
7154
  :param deliver_to_q_business: This action delivers an email to an Amazon Q Business application for ingestion into its knowledge base.
6942
7155
  :param drop: This action terminates the evaluation of rules in the rule set.
6943
- :param publish_to_sns:
7156
+ :param publish_to_sns: This action publishes the email content to an Amazon SNS topic.
6944
7157
  :param relay: This action relays the email to another SMTP server.
6945
7158
  :param replace_recipient: The action replaces certain or all recipients with a different set of recipients.
6946
7159
  :param send: This action sends the email to the internet.
@@ -7115,7 +7328,8 @@ class CfnMailManagerRuleSet(
7115
7328
  def publish_to_sns(
7116
7329
  self,
7117
7330
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.SnsActionProperty"]]:
7118
- '''
7331
+ '''This action publishes the email content to an Amazon SNS topic.
7332
+
7119
7333
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleaction.html#cfn-ses-mailmanagerruleset-ruleaction-publishtosns
7120
7334
  '''
7121
7335
  result = self._values.get("publish_to_sns")
@@ -7208,7 +7422,11 @@ class CfnMailManagerRuleSet(
7208
7422
  analyzer="analyzer",
7209
7423
  result_field="resultField"
7210
7424
  ),
7211
- attribute="attribute"
7425
+ attribute="attribute",
7426
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
7427
+ address_lists=["addressLists"],
7428
+ attribute="attribute"
7429
+ )
7212
7430
  ),
7213
7431
  operator="operator"
7214
7432
  )
@@ -7258,7 +7476,11 @@ class CfnMailManagerRuleSet(
7258
7476
  @jsii.data_type(
7259
7477
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty",
7260
7478
  jsii_struct_bases=[],
7261
- name_mapping={"analysis": "analysis", "attribute": "attribute"},
7479
+ name_mapping={
7480
+ "analysis": "analysis",
7481
+ "attribute": "attribute",
7482
+ "is_in_address_list": "isInAddressList",
7483
+ },
7262
7484
  )
7263
7485
  class RuleBooleanToEvaluateProperty:
7264
7486
  def __init__(
@@ -7266,11 +7488,13 @@ class CfnMailManagerRuleSet(
7266
7488
  *,
7267
7489
  analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.AnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7268
7490
  attribute: typing.Optional[builtins.str] = None,
7491
+ is_in_address_list: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.RuleIsInAddressListProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7269
7492
  ) -> None:
7270
7493
  '''The union type representing the allowed types of operands for a boolean condition.
7271
7494
 
7272
7495
  :param analysis: The Add On ARN and its returned value to evaluate in a boolean condition expression.
7273
7496
  :param attribute: The boolean type representing the allowed attribute types for an email.
7497
+ :param is_in_address_list: The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
7274
7498
 
7275
7499
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html
7276
7500
  :exampleMetadata: fixture=_generated
@@ -7286,18 +7510,25 @@ class CfnMailManagerRuleSet(
7286
7510
  analyzer="analyzer",
7287
7511
  result_field="resultField"
7288
7512
  ),
7289
- attribute="attribute"
7513
+ attribute="attribute",
7514
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
7515
+ address_lists=["addressLists"],
7516
+ attribute="attribute"
7517
+ )
7290
7518
  )
7291
7519
  '''
7292
7520
  if __debug__:
7293
7521
  type_hints = typing.get_type_hints(_typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d40ebc95)
7294
7522
  check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
7295
7523
  check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
7524
+ check_type(argname="argument is_in_address_list", value=is_in_address_list, expected_type=type_hints["is_in_address_list"])
7296
7525
  self._values: typing.Dict[builtins.str, typing.Any] = {}
7297
7526
  if analysis is not None:
7298
7527
  self._values["analysis"] = analysis
7299
7528
  if attribute is not None:
7300
7529
  self._values["attribute"] = attribute
7530
+ if is_in_address_list is not None:
7531
+ self._values["is_in_address_list"] = is_in_address_list
7301
7532
 
7302
7533
  @builtins.property
7303
7534
  def analysis(
@@ -7319,6 +7550,17 @@ class CfnMailManagerRuleSet(
7319
7550
  result = self._values.get("attribute")
7320
7551
  return typing.cast(typing.Optional[builtins.str], result)
7321
7552
 
7553
+ @builtins.property
7554
+ def is_in_address_list(
7555
+ self,
7556
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.RuleIsInAddressListProperty"]]:
7557
+ '''The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
7558
+
7559
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html#cfn-ses-mailmanagerruleset-rulebooleantoevaluate-isinaddresslist
7560
+ '''
7561
+ result = self._values.get("is_in_address_list")
7562
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.RuleIsInAddressListProperty"]], result)
7563
+
7322
7564
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
7323
7565
  return isinstance(rhs, self.__class__) and rhs._values == self._values
7324
7566
 
@@ -7382,7 +7624,11 @@ class CfnMailManagerRuleSet(
7382
7624
  analyzer="analyzer",
7383
7625
  result_field="resultField"
7384
7626
  ),
7385
- attribute="attribute"
7627
+ attribute="attribute",
7628
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
7629
+ address_lists=["addressLists"],
7630
+ attribute="attribute"
7631
+ )
7386
7632
  ),
7387
7633
  operator="operator"
7388
7634
  ),
@@ -7749,6 +7995,77 @@ class CfnMailManagerRuleSet(
7749
7995
  k + "=" + repr(v) for k, v in self._values.items()
7750
7996
  )
7751
7997
 
7998
+ @jsii.data_type(
7999
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty",
8000
+ jsii_struct_bases=[],
8001
+ name_mapping={"address_lists": "addressLists", "attribute": "attribute"},
8002
+ )
8003
+ class RuleIsInAddressListProperty:
8004
+ def __init__(
8005
+ self,
8006
+ *,
8007
+ address_lists: typing.Sequence[builtins.str],
8008
+ attribute: builtins.str,
8009
+ ) -> None:
8010
+ '''The structure type for a boolean condition that provides the address lists and address list attribute to evaluate.
8011
+
8012
+ :param address_lists: The address lists that will be used for evaluation.
8013
+ :param attribute: The email attribute that needs to be evaluated against the address list.
8014
+
8015
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleisinaddresslist.html
8016
+ :exampleMetadata: fixture=_generated
8017
+
8018
+ Example::
8019
+
8020
+ # The code below shows an example of how to instantiate this type.
8021
+ # The values are placeholders you should change.
8022
+ from aws_cdk import aws_ses as ses
8023
+
8024
+ rule_is_in_address_list_property = ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
8025
+ address_lists=["addressLists"],
8026
+ attribute="attribute"
8027
+ )
8028
+ '''
8029
+ if __debug__:
8030
+ type_hints = typing.get_type_hints(_typecheckingstub__c73eebae950a2c422d0d245422988b23abb78b0806a5c9c6767b4faf77f00de5)
8031
+ check_type(argname="argument address_lists", value=address_lists, expected_type=type_hints["address_lists"])
8032
+ check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
8033
+ self._values: typing.Dict[builtins.str, typing.Any] = {
8034
+ "address_lists": address_lists,
8035
+ "attribute": attribute,
8036
+ }
8037
+
8038
+ @builtins.property
8039
+ def address_lists(self) -> typing.List[builtins.str]:
8040
+ '''The address lists that will be used for evaluation.
8041
+
8042
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleisinaddresslist.html#cfn-ses-mailmanagerruleset-ruleisinaddresslist-addresslists
8043
+ '''
8044
+ result = self._values.get("address_lists")
8045
+ assert result is not None, "Required property 'address_lists' is missing"
8046
+ return typing.cast(typing.List[builtins.str], result)
8047
+
8048
+ @builtins.property
8049
+ def attribute(self) -> builtins.str:
8050
+ '''The email attribute that needs to be evaluated against the address list.
8051
+
8052
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleisinaddresslist.html#cfn-ses-mailmanagerruleset-ruleisinaddresslist-attribute
8053
+ '''
8054
+ result = self._values.get("attribute")
8055
+ assert result is not None, "Required property 'attribute' is missing"
8056
+ return typing.cast(builtins.str, result)
8057
+
8058
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
8059
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
8060
+
8061
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
8062
+ return not (rhs == self)
8063
+
8064
+ def __repr__(self) -> str:
8065
+ return "RuleIsInAddressListProperty(%s)" % ", ".join(
8066
+ k + "=" + repr(v) for k, v in self._values.items()
8067
+ )
8068
+
7752
8069
  @jsii.data_type(
7753
8070
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleNumberExpressionProperty",
7754
8071
  jsii_struct_bases=[],
@@ -8006,7 +8323,11 @@ class CfnMailManagerRuleSet(
8006
8323
  analyzer="analyzer",
8007
8324
  result_field="resultField"
8008
8325
  ),
8009
- attribute="attribute"
8326
+ attribute="attribute",
8327
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
8328
+ address_lists=["addressLists"],
8329
+ attribute="attribute"
8330
+ )
8010
8331
  ),
8011
8332
  operator="operator"
8012
8333
  ),
@@ -8060,7 +8381,11 @@ class CfnMailManagerRuleSet(
8060
8381
  analyzer="analyzer",
8061
8382
  result_field="resultField"
8062
8383
  ),
8063
- attribute="attribute"
8384
+ attribute="attribute",
8385
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
8386
+ address_lists=["addressLists"],
8387
+ attribute="attribute"
8388
+ )
8064
8389
  ),
8065
8390
  operator="operator"
8066
8391
  ),
@@ -8789,12 +9114,15 @@ class CfnMailManagerRuleSet(
8789
9114
  encoding: typing.Optional[builtins.str] = None,
8790
9115
  payload_type: typing.Optional[builtins.str] = None,
8791
9116
  ) -> None:
8792
- '''
8793
- :param role_arn:
8794
- :param topic_arn:
8795
- :param action_failure_policy:
8796
- :param encoding:
8797
- :param payload_type:
9117
+ '''The action to publish the email content to an Amazon SNS topic.
9118
+
9119
+ When executed, this action will send the email as a notification to the specified SNS topic.
9120
+
9121
+ :param role_arn: The Amazon Resource Name (ARN) of the IAM Role to use while writing to Amazon SNS. This role must have access to the ``sns:Publish`` API for the given topic.
9122
+ :param topic_arn: The Amazon Resource Name (ARN) of the Amazon SNS Topic to which notification for the email received will be published.
9123
+ :param action_failure_policy: A policy that states what to do in the case of failure. The action will fail if there are configuration errors. For example, specified SNS topic has been deleted or the role lacks necessary permissions to call the ``sns:Publish`` API.
9124
+ :param encoding: The encoding to use for the email within the Amazon SNS notification. The default value is ``UTF-8`` . Use ``BASE64`` if you need to preserve all special characters, especially when the original message uses a different encoding format.
9125
+ :param payload_type: The expected payload type within the Amazon SNS notification. ``CONTENT`` attempts to publish the full email content with 20KB of headers content. ``HEADERS`` extracts up to 100KB of header content to include in the notification, email content will not be included to the notification. The default value is ``CONTENT`` .
8798
9126
 
8799
9127
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html
8800
9128
  :exampleMetadata: fixture=_generated
@@ -8835,7 +9163,10 @@ class CfnMailManagerRuleSet(
8835
9163
 
8836
9164
  @builtins.property
8837
9165
  def role_arn(self) -> builtins.str:
8838
- '''
9166
+ '''The Amazon Resource Name (ARN) of the IAM Role to use while writing to Amazon SNS.
9167
+
9168
+ This role must have access to the ``sns:Publish`` API for the given topic.
9169
+
8839
9170
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-rolearn
8840
9171
  '''
8841
9172
  result = self._values.get("role_arn")
@@ -8844,7 +9175,8 @@ class CfnMailManagerRuleSet(
8844
9175
 
8845
9176
  @builtins.property
8846
9177
  def topic_arn(self) -> builtins.str:
8847
- '''
9178
+ '''The Amazon Resource Name (ARN) of the Amazon SNS Topic to which notification for the email received will be published.
9179
+
8848
9180
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-topicarn
8849
9181
  '''
8850
9182
  result = self._values.get("topic_arn")
@@ -8853,7 +9185,10 @@ class CfnMailManagerRuleSet(
8853
9185
 
8854
9186
  @builtins.property
8855
9187
  def action_failure_policy(self) -> typing.Optional[builtins.str]:
8856
- '''
9188
+ '''A policy that states what to do in the case of failure.
9189
+
9190
+ The action will fail if there are configuration errors. For example, specified SNS topic has been deleted or the role lacks necessary permissions to call the ``sns:Publish`` API.
9191
+
8857
9192
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-actionfailurepolicy
8858
9193
  '''
8859
9194
  result = self._values.get("action_failure_policy")
@@ -8861,7 +9196,10 @@ class CfnMailManagerRuleSet(
8861
9196
 
8862
9197
  @builtins.property
8863
9198
  def encoding(self) -> typing.Optional[builtins.str]:
8864
- '''
9199
+ '''The encoding to use for the email within the Amazon SNS notification.
9200
+
9201
+ The default value is ``UTF-8`` . Use ``BASE64`` if you need to preserve all special characters, especially when the original message uses a different encoding format.
9202
+
8865
9203
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-encoding
8866
9204
  '''
8867
9205
  result = self._values.get("encoding")
@@ -8869,7 +9207,10 @@ class CfnMailManagerRuleSet(
8869
9207
 
8870
9208
  @builtins.property
8871
9209
  def payload_type(self) -> typing.Optional[builtins.str]:
8872
- '''
9210
+ '''The expected payload type within the Amazon SNS notification.
9211
+
9212
+ ``CONTENT`` attempts to publish the full email content with 20KB of headers content. ``HEADERS`` extracts up to 100KB of header content to include in the notification, email content will not be included to the notification. The default value is ``CONTENT`` .
9213
+
8873
9214
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-payloadtype
8874
9215
  '''
8875
9216
  result = self._values.get("payload_type")
@@ -8990,7 +9331,11 @@ class CfnMailManagerRuleSetProps:
8990
9331
  analyzer="analyzer",
8991
9332
  result_field="resultField"
8992
9333
  ),
8993
- attribute="attribute"
9334
+ attribute="attribute",
9335
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
9336
+ address_lists=["addressLists"],
9337
+ attribute="attribute"
9338
+ )
8994
9339
  ),
8995
9340
  operator="operator"
8996
9341
  ),
@@ -9044,7 +9389,11 @@ class CfnMailManagerRuleSetProps:
9044
9389
  analyzer="analyzer",
9045
9390
  result_field="resultField"
9046
9391
  ),
9047
- attribute="attribute"
9392
+ attribute="attribute",
9393
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
9394
+ address_lists=["addressLists"],
9395
+ attribute="attribute"
9396
+ )
9048
9397
  ),
9049
9398
  operator="operator"
9050
9399
  ),
@@ -9185,6 +9534,10 @@ class CfnMailManagerTrafficPolicy(
9185
9534
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9186
9535
  analyzer="analyzer",
9187
9536
  result_field="resultField"
9537
+ ),
9538
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
9539
+ address_lists=["addressLists"],
9540
+ attribute="attribute"
9188
9541
  )
9189
9542
  ),
9190
9543
  operator="operator"
@@ -9499,6 +9852,10 @@ class CfnMailManagerTrafficPolicy(
9499
9852
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9500
9853
  analyzer="analyzer",
9501
9854
  result_field="resultField"
9855
+ ),
9856
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
9857
+ address_lists=["addressLists"],
9858
+ attribute="attribute"
9502
9859
  )
9503
9860
  ),
9504
9861
  operator="operator"
@@ -9549,17 +9906,19 @@ class CfnMailManagerTrafficPolicy(
9549
9906
  @jsii.data_type(
9550
9907
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty",
9551
9908
  jsii_struct_bases=[],
9552
- name_mapping={"analysis": "analysis"},
9909
+ name_mapping={"analysis": "analysis", "is_in_address_list": "isInAddressList"},
9553
9910
  )
9554
9911
  class IngressBooleanToEvaluateProperty:
9555
9912
  def __init__(
9556
9913
  self,
9557
9914
  *,
9558
- analysis: typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressAnalysisProperty", typing.Dict[builtins.str, typing.Any]]],
9915
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressAnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9916
+ is_in_address_list: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
9559
9917
  ) -> None:
9560
9918
  '''The union type representing the allowed types of operands for a boolean condition.
9561
9919
 
9562
9920
  :param analysis: The structure type for a boolean condition stating the Add On ARN and its returned value.
9921
+ :param is_in_address_list:
9563
9922
 
9564
9923
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate.html
9565
9924
  :exampleMetadata: fixture=_generated
@@ -9574,27 +9933,43 @@ class CfnMailManagerTrafficPolicy(
9574
9933
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9575
9934
  analyzer="analyzer",
9576
9935
  result_field="resultField"
9936
+ ),
9937
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
9938
+ address_lists=["addressLists"],
9939
+ attribute="attribute"
9577
9940
  )
9578
9941
  )
9579
9942
  '''
9580
9943
  if __debug__:
9581
9944
  type_hints = typing.get_type_hints(_typecheckingstub__f984617bda8a2e4d661237f8f2d083ff4f9510ebc7ccbff62ef023d22ebe961f)
9582
9945
  check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
9583
- self._values: typing.Dict[builtins.str, typing.Any] = {
9584
- "analysis": analysis,
9585
- }
9946
+ check_type(argname="argument is_in_address_list", value=is_in_address_list, expected_type=type_hints["is_in_address_list"])
9947
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
9948
+ if analysis is not None:
9949
+ self._values["analysis"] = analysis
9950
+ if is_in_address_list is not None:
9951
+ self._values["is_in_address_list"] = is_in_address_list
9586
9952
 
9587
9953
  @builtins.property
9588
9954
  def analysis(
9589
9955
  self,
9590
- ) -> typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]:
9956
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]]:
9591
9957
  '''The structure type for a boolean condition stating the Add On ARN and its returned value.
9592
9958
 
9593
9959
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate-analysis
9594
9960
  '''
9595
9961
  result = self._values.get("analysis")
9596
- assert result is not None, "Required property 'analysis' is missing"
9597
- return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"], result)
9962
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]], result)
9963
+
9964
+ @builtins.property
9965
+ def is_in_address_list(
9966
+ self,
9967
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty"]]:
9968
+ '''
9969
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate-isinaddresslist
9970
+ '''
9971
+ result = self._values.get("is_in_address_list")
9972
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty"]], result)
9598
9973
 
9599
9974
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
9600
9975
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -9893,6 +10268,74 @@ class CfnMailManagerTrafficPolicy(
9893
10268
  k + "=" + repr(v) for k, v in self._values.items()
9894
10269
  )
9895
10270
 
10271
+ @jsii.data_type(
10272
+ jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty",
10273
+ jsii_struct_bases=[],
10274
+ name_mapping={"address_lists": "addressLists", "attribute": "attribute"},
10275
+ )
10276
+ class IngressIsInAddressListProperty:
10277
+ def __init__(
10278
+ self,
10279
+ *,
10280
+ address_lists: typing.Sequence[builtins.str],
10281
+ attribute: builtins.str,
10282
+ ) -> None:
10283
+ '''
10284
+ :param address_lists:
10285
+ :param attribute:
10286
+
10287
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html
10288
+ :exampleMetadata: fixture=_generated
10289
+
10290
+ Example::
10291
+
10292
+ # The code below shows an example of how to instantiate this type.
10293
+ # The values are placeholders you should change.
10294
+ from aws_cdk import aws_ses as ses
10295
+
10296
+ ingress_is_in_address_list_property = ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
10297
+ address_lists=["addressLists"],
10298
+ attribute="attribute"
10299
+ )
10300
+ '''
10301
+ if __debug__:
10302
+ type_hints = typing.get_type_hints(_typecheckingstub__5756963845a73e3e00c9928d7ef48ca41a788f8ce93f22f31e10d1f99dbfe7fd)
10303
+ check_type(argname="argument address_lists", value=address_lists, expected_type=type_hints["address_lists"])
10304
+ check_type(argname="argument attribute", value=attribute, expected_type=type_hints["attribute"])
10305
+ self._values: typing.Dict[builtins.str, typing.Any] = {
10306
+ "address_lists": address_lists,
10307
+ "attribute": attribute,
10308
+ }
10309
+
10310
+ @builtins.property
10311
+ def address_lists(self) -> typing.List[builtins.str]:
10312
+ '''
10313
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html#cfn-ses-mailmanagertrafficpolicy-ingressisinaddresslist-addresslists
10314
+ '''
10315
+ result = self._values.get("address_lists")
10316
+ assert result is not None, "Required property 'address_lists' is missing"
10317
+ return typing.cast(typing.List[builtins.str], result)
10318
+
10319
+ @builtins.property
10320
+ def attribute(self) -> builtins.str:
10321
+ '''
10322
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html#cfn-ses-mailmanagertrafficpolicy-ingressisinaddresslist-attribute
10323
+ '''
10324
+ result = self._values.get("attribute")
10325
+ assert result is not None, "Required property 'attribute' is missing"
10326
+ return typing.cast(builtins.str, result)
10327
+
10328
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
10329
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
10330
+
10331
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
10332
+ return not (rhs == self)
10333
+
10334
+ def __repr__(self) -> str:
10335
+ return "IngressIsInAddressListProperty(%s)" % ", ".join(
10336
+ k + "=" + repr(v) for k, v in self._values.items()
10337
+ )
10338
+
9896
10339
  @jsii.data_type(
9897
10340
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty",
9898
10341
  jsii_struct_bases=[],
@@ -10258,6 +10701,10 @@ class CfnMailManagerTrafficPolicy(
10258
10701
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10259
10702
  analyzer="analyzer",
10260
10703
  result_field="resultField"
10704
+ ),
10705
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
10706
+ address_lists=["addressLists"],
10707
+ attribute="attribute"
10261
10708
  )
10262
10709
  ),
10263
10710
  operator="operator"
@@ -10422,6 +10869,10 @@ class CfnMailManagerTrafficPolicy(
10422
10869
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10423
10870
  analyzer="analyzer",
10424
10871
  result_field="resultField"
10872
+ ),
10873
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
10874
+ address_lists=["addressLists"],
10875
+ attribute="attribute"
10425
10876
  )
10426
10877
  ),
10427
10878
  operator="operator"
@@ -10552,6 +11003,10 @@ class CfnMailManagerTrafficPolicyProps:
10552
11003
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10553
11004
  analyzer="analyzer",
10554
11005
  result_field="resultField"
11006
+ ),
11007
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
11008
+ address_lists=["addressLists"],
11009
+ attribute="attribute"
10555
11010
  )
10556
11011
  ),
10557
11012
  operator="operator"
@@ -17812,6 +18267,8 @@ __all__ = [
17812
18267
  "CfnMailManagerAddonInstanceProps",
17813
18268
  "CfnMailManagerAddonSubscription",
17814
18269
  "CfnMailManagerAddonSubscriptionProps",
18270
+ "CfnMailManagerAddressList",
18271
+ "CfnMailManagerAddressListProps",
17815
18272
  "CfnMailManagerArchive",
17816
18273
  "CfnMailManagerArchiveProps",
17817
18274
  "CfnMailManagerIngressPoint",
@@ -18473,6 +18930,48 @@ def _typecheckingstub__60d068c00268064de7df238df2dd073326a0cbc422fee4d79433b91b5
18473
18930
  """Type checking stubs"""
18474
18931
  pass
18475
18932
 
18933
+ def _typecheckingstub__6a8a172d98fe048a3419d1b92dcaf2e59e8461e9b0baf073f812b3916bcd4974(
18934
+ scope: _constructs_77d1e7e8.Construct,
18935
+ id: builtins.str,
18936
+ *,
18937
+ address_list_name: typing.Optional[builtins.str] = None,
18938
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
18939
+ ) -> None:
18940
+ """Type checking stubs"""
18941
+ pass
18942
+
18943
+ def _typecheckingstub__4f6a8901ab278ee698ce069b658195d6cc144f36006c6c634fd9c8598d24d83d(
18944
+ inspector: _TreeInspector_488e0dd5,
18945
+ ) -> None:
18946
+ """Type checking stubs"""
18947
+ pass
18948
+
18949
+ def _typecheckingstub__5a2a230c58a2c2b4b62e185b88fe729ffbc699c86e17f9fe3d25e95ae19ea40b(
18950
+ props: typing.Mapping[builtins.str, typing.Any],
18951
+ ) -> None:
18952
+ """Type checking stubs"""
18953
+ pass
18954
+
18955
+ def _typecheckingstub__53d1505dab469f39095f9e22ba4d8bdae2405adbe8d8d641e4d4a1abbf6b3770(
18956
+ value: typing.Optional[builtins.str],
18957
+ ) -> None:
18958
+ """Type checking stubs"""
18959
+ pass
18960
+
18961
+ def _typecheckingstub__f941c234d4973425d4ac187f87f54965bfdb82848d3fcf93664acc11143c1068(
18962
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
18963
+ ) -> None:
18964
+ """Type checking stubs"""
18965
+ pass
18966
+
18967
+ def _typecheckingstub__ec45e85ebcc385f7d054df8a6b207754f0fa06560d7270f49432e2594f0626f9(
18968
+ *,
18969
+ address_list_name: typing.Optional[builtins.str] = None,
18970
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
18971
+ ) -> None:
18972
+ """Type checking stubs"""
18973
+ pass
18974
+
18476
18975
  def _typecheckingstub__22dd3c6f42e37a1d2959a6aa4871e671e1737ebb4110933d8bfa22c2c7f5d626(
18477
18976
  scope: _constructs_77d1e7e8.Construct,
18478
18977
  id: builtins.str,
@@ -18860,6 +19359,7 @@ def _typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d
18860
19359
  *,
18861
19360
  analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.AnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18862
19361
  attribute: typing.Optional[builtins.str] = None,
19362
+ is_in_address_list: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.RuleIsInAddressListProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
18863
19363
  ) -> None:
18864
19364
  """Type checking stubs"""
18865
19365
  pass
@@ -18900,6 +19400,14 @@ def _typecheckingstub__3a8c2b9cf0bccc9e370467c278e9d38253a9c27c0d0536268fbf47e4a
18900
19400
  """Type checking stubs"""
18901
19401
  pass
18902
19402
 
19403
+ def _typecheckingstub__c73eebae950a2c422d0d245422988b23abb78b0806a5c9c6767b4faf77f00de5(
19404
+ *,
19405
+ address_lists: typing.Sequence[builtins.str],
19406
+ attribute: builtins.str,
19407
+ ) -> None:
19408
+ """Type checking stubs"""
19409
+ pass
19410
+
18903
19411
  def _typecheckingstub__83799e1775b2d85cafb6fe8436a34354f3fb2f96ece05a92a7ff5946391395b2(
18904
19412
  *,
18905
19413
  evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.RuleNumberToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],
@@ -19073,7 +19581,8 @@ def _typecheckingstub__e11e4c9f67eb243bdb70a5e11d25dcc15331b3869022e75e712d05bc3
19073
19581
 
19074
19582
  def _typecheckingstub__f984617bda8a2e4d661237f8f2d083ff4f9510ebc7ccbff62ef023d22ebe961f(
19075
19583
  *,
19076
- analysis: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressAnalysisProperty, typing.Dict[builtins.str, typing.Any]]],
19584
+ analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressAnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
19585
+ is_in_address_list: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
19077
19586
  ) -> None:
19078
19587
  """Type checking stubs"""
19079
19588
  pass
@@ -19110,6 +19619,14 @@ def _typecheckingstub__f68a4c434cfdeacf5dcff0a6cf5c8e887cc1ed9849ea5b6b80bbd6645
19110
19619
  """Type checking stubs"""
19111
19620
  pass
19112
19621
 
19622
+ def _typecheckingstub__5756963845a73e3e00c9928d7ef48ca41a788f8ce93f22f31e10d1f99dbfe7fd(
19623
+ *,
19624
+ address_lists: typing.Sequence[builtins.str],
19625
+ attribute: builtins.str,
19626
+ ) -> None:
19627
+ """Type checking stubs"""
19628
+ pass
19629
+
19113
19630
  def _typecheckingstub__ade2199cf4a326636b60ff7fe58a2b746de093bc3c1b7294612d9b84ad813746(
19114
19631
  *,
19115
19632
  evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],