aws-cdk-lib 2.199.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 (49) 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.199.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_applicationautoscaling/__init__.py +4 -4
  7. aws_cdk/aws_aps/__init__.py +38 -30
  8. aws_cdk/aws_autoscaling/__init__.py +4 -4
  9. aws_cdk/aws_bedrock/__init__.py +73 -48
  10. aws_cdk/aws_cloudformation/__init__.py +17 -23
  11. aws_cdk/aws_cloudfront_origins/__init__.py +1 -1
  12. aws_cdk/aws_cloudtrail/__init__.py +4 -4
  13. aws_cdk/aws_cloudwatch/__init__.py +50 -1
  14. aws_cdk/aws_codebuild/__init__.py +116 -0
  15. aws_cdk/aws_datazone/__init__.py +699 -9
  16. aws_cdk/aws_deadline/__init__.py +38 -10
  17. aws_cdk/aws_ec2/__init__.py +78 -20
  18. aws_cdk/aws_elasticloadbalancingv2/__init__.py +7 -7
  19. aws_cdk/aws_emr/__init__.py +36 -2
  20. aws_cdk/aws_fsx/__init__.py +122 -0
  21. aws_cdk/aws_glue/__init__.py +55 -26
  22. aws_cdk/aws_iam/__init__.py +376 -2
  23. aws_cdk/aws_iot/__init__.py +57 -5
  24. aws_cdk/aws_kinesisfirehose/__init__.py +5 -1
  25. aws_cdk/aws_lambda/__init__.py +65 -45
  26. aws_cdk/aws_lex/__init__.py +27 -13
  27. aws_cdk/aws_lightsail/__init__.py +452 -0
  28. aws_cdk/aws_medialive/__init__.py +699 -497
  29. aws_cdk/aws_msk/__init__.py +4 -4
  30. aws_cdk/aws_networkfirewall/__init__.py +9 -5
  31. aws_cdk/aws_nimblestudio/__init__.py +208 -400
  32. aws_cdk/aws_panorama/__init__.py +30 -3
  33. aws_cdk/aws_pcs/__init__.py +12 -5
  34. aws_cdk/aws_rds/__init__.py +22 -10
  35. aws_cdk/aws_s3/__init__.py +367 -6
  36. aws_cdk/aws_s3express/__init__.py +789 -0
  37. aws_cdk/aws_ses/__init__.py +300 -32
  38. aws_cdk/aws_sns_subscriptions/__init__.py +256 -1
  39. aws_cdk/aws_stepfunctions/__init__.py +55 -17
  40. aws_cdk/aws_synthetics/__init__.py +26 -16
  41. aws_cdk/aws_voiceid/__init__.py +13 -3
  42. aws_cdk/cloud_assembly_schema/__init__.py +137 -42
  43. aws_cdk/cx_api/__init__.py +7 -7
  44. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/METADATA +2 -2
  45. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/RECORD +49 -49
  46. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/LICENSE +0 -0
  47. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/NOTICE +0 -0
  48. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/WHEEL +0 -0
  49. {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/top_level.txt +0 -0
@@ -6278,7 +6278,11 @@ class CfnMailManagerRuleSet(
6278
6278
  analyzer="analyzer",
6279
6279
  result_field="resultField"
6280
6280
  ),
6281
- attribute="attribute"
6281
+ attribute="attribute",
6282
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
6283
+ address_lists=["addressLists"],
6284
+ attribute="attribute"
6285
+ )
6282
6286
  ),
6283
6287
  operator="operator"
6284
6288
  ),
@@ -6332,7 +6336,11 @@ class CfnMailManagerRuleSet(
6332
6336
  analyzer="analyzer",
6333
6337
  result_field="resultField"
6334
6338
  ),
6335
- attribute="attribute"
6339
+ attribute="attribute",
6340
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
6341
+ address_lists=["addressLists"],
6342
+ attribute="attribute"
6343
+ )
6336
6344
  ),
6337
6345
  operator="operator"
6338
6346
  ),
@@ -7145,7 +7153,7 @@ class CfnMailManagerRuleSet(
7145
7153
  :param deliver_to_mailbox: This action delivers an email to a WorkMail mailbox.
7146
7154
  :param deliver_to_q_business: This action delivers an email to an Amazon Q Business application for ingestion into its knowledge base.
7147
7155
  :param drop: This action terminates the evaluation of rules in the rule set.
7148
- :param publish_to_sns:
7156
+ :param publish_to_sns: This action publishes the email content to an Amazon SNS topic.
7149
7157
  :param relay: This action relays the email to another SMTP server.
7150
7158
  :param replace_recipient: The action replaces certain or all recipients with a different set of recipients.
7151
7159
  :param send: This action sends the email to the internet.
@@ -7320,7 +7328,8 @@ class CfnMailManagerRuleSet(
7320
7328
  def publish_to_sns(
7321
7329
  self,
7322
7330
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerRuleSet.SnsActionProperty"]]:
7323
- '''
7331
+ '''This action publishes the email content to an Amazon SNS topic.
7332
+
7324
7333
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleaction.html#cfn-ses-mailmanagerruleset-ruleaction-publishtosns
7325
7334
  '''
7326
7335
  result = self._values.get("publish_to_sns")
@@ -7413,7 +7422,11 @@ class CfnMailManagerRuleSet(
7413
7422
  analyzer="analyzer",
7414
7423
  result_field="resultField"
7415
7424
  ),
7416
- attribute="attribute"
7425
+ attribute="attribute",
7426
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
7427
+ address_lists=["addressLists"],
7428
+ attribute="attribute"
7429
+ )
7417
7430
  ),
7418
7431
  operator="operator"
7419
7432
  )
@@ -7463,7 +7476,11 @@ class CfnMailManagerRuleSet(
7463
7476
  @jsii.data_type(
7464
7477
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty",
7465
7478
  jsii_struct_bases=[],
7466
- name_mapping={"analysis": "analysis", "attribute": "attribute"},
7479
+ name_mapping={
7480
+ "analysis": "analysis",
7481
+ "attribute": "attribute",
7482
+ "is_in_address_list": "isInAddressList",
7483
+ },
7467
7484
  )
7468
7485
  class RuleBooleanToEvaluateProperty:
7469
7486
  def __init__(
@@ -7471,11 +7488,13 @@ class CfnMailManagerRuleSet(
7471
7488
  *,
7472
7489
  analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMailManagerRuleSet.AnalysisProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
7473
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,
7474
7492
  ) -> None:
7475
7493
  '''The union type representing the allowed types of operands for a boolean condition.
7476
7494
 
7477
7495
  :param analysis: The Add On ARN and its returned value to evaluate in a boolean condition expression.
7478
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.
7479
7498
 
7480
7499
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html
7481
7500
  :exampleMetadata: fixture=_generated
@@ -7491,18 +7510,25 @@ class CfnMailManagerRuleSet(
7491
7510
  analyzer="analyzer",
7492
7511
  result_field="resultField"
7493
7512
  ),
7494
- attribute="attribute"
7513
+ attribute="attribute",
7514
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
7515
+ address_lists=["addressLists"],
7516
+ attribute="attribute"
7517
+ )
7495
7518
  )
7496
7519
  '''
7497
7520
  if __debug__:
7498
7521
  type_hints = typing.get_type_hints(_typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d40ebc95)
7499
7522
  check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
7500
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"])
7501
7525
  self._values: typing.Dict[builtins.str, typing.Any] = {}
7502
7526
  if analysis is not None:
7503
7527
  self._values["analysis"] = analysis
7504
7528
  if attribute is not None:
7505
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
7506
7532
 
7507
7533
  @builtins.property
7508
7534
  def analysis(
@@ -7524,6 +7550,17 @@ class CfnMailManagerRuleSet(
7524
7550
  result = self._values.get("attribute")
7525
7551
  return typing.cast(typing.Optional[builtins.str], result)
7526
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
+
7527
7564
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
7528
7565
  return isinstance(rhs, self.__class__) and rhs._values == self._values
7529
7566
 
@@ -7587,7 +7624,11 @@ class CfnMailManagerRuleSet(
7587
7624
  analyzer="analyzer",
7588
7625
  result_field="resultField"
7589
7626
  ),
7590
- attribute="attribute"
7627
+ attribute="attribute",
7628
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
7629
+ address_lists=["addressLists"],
7630
+ attribute="attribute"
7631
+ )
7591
7632
  ),
7592
7633
  operator="operator"
7593
7634
  ),
@@ -7954,6 +7995,77 @@ class CfnMailManagerRuleSet(
7954
7995
  k + "=" + repr(v) for k, v in self._values.items()
7955
7996
  )
7956
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
+
7957
8069
  @jsii.data_type(
7958
8070
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerRuleSet.RuleNumberExpressionProperty",
7959
8071
  jsii_struct_bases=[],
@@ -8211,7 +8323,11 @@ class CfnMailManagerRuleSet(
8211
8323
  analyzer="analyzer",
8212
8324
  result_field="resultField"
8213
8325
  ),
8214
- attribute="attribute"
8326
+ attribute="attribute",
8327
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
8328
+ address_lists=["addressLists"],
8329
+ attribute="attribute"
8330
+ )
8215
8331
  ),
8216
8332
  operator="operator"
8217
8333
  ),
@@ -8265,7 +8381,11 @@ class CfnMailManagerRuleSet(
8265
8381
  analyzer="analyzer",
8266
8382
  result_field="resultField"
8267
8383
  ),
8268
- attribute="attribute"
8384
+ attribute="attribute",
8385
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
8386
+ address_lists=["addressLists"],
8387
+ attribute="attribute"
8388
+ )
8269
8389
  ),
8270
8390
  operator="operator"
8271
8391
  ),
@@ -8994,12 +9114,15 @@ class CfnMailManagerRuleSet(
8994
9114
  encoding: typing.Optional[builtins.str] = None,
8995
9115
  payload_type: typing.Optional[builtins.str] = None,
8996
9116
  ) -> None:
8997
- '''
8998
- :param role_arn:
8999
- :param topic_arn:
9000
- :param action_failure_policy:
9001
- :param encoding:
9002
- :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`` .
9003
9126
 
9004
9127
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html
9005
9128
  :exampleMetadata: fixture=_generated
@@ -9040,7 +9163,10 @@ class CfnMailManagerRuleSet(
9040
9163
 
9041
9164
  @builtins.property
9042
9165
  def role_arn(self) -> builtins.str:
9043
- '''
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
+
9044
9170
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-rolearn
9045
9171
  '''
9046
9172
  result = self._values.get("role_arn")
@@ -9049,7 +9175,8 @@ class CfnMailManagerRuleSet(
9049
9175
 
9050
9176
  @builtins.property
9051
9177
  def topic_arn(self) -> builtins.str:
9052
- '''
9178
+ '''The Amazon Resource Name (ARN) of the Amazon SNS Topic to which notification for the email received will be published.
9179
+
9053
9180
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-topicarn
9054
9181
  '''
9055
9182
  result = self._values.get("topic_arn")
@@ -9058,7 +9185,10 @@ class CfnMailManagerRuleSet(
9058
9185
 
9059
9186
  @builtins.property
9060
9187
  def action_failure_policy(self) -> typing.Optional[builtins.str]:
9061
- '''
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
+
9062
9192
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-actionfailurepolicy
9063
9193
  '''
9064
9194
  result = self._values.get("action_failure_policy")
@@ -9066,7 +9196,10 @@ class CfnMailManagerRuleSet(
9066
9196
 
9067
9197
  @builtins.property
9068
9198
  def encoding(self) -> typing.Optional[builtins.str]:
9069
- '''
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
+
9070
9203
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-encoding
9071
9204
  '''
9072
9205
  result = self._values.get("encoding")
@@ -9074,7 +9207,10 @@ class CfnMailManagerRuleSet(
9074
9207
 
9075
9208
  @builtins.property
9076
9209
  def payload_type(self) -> typing.Optional[builtins.str]:
9077
- '''
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
+
9078
9214
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-snsaction.html#cfn-ses-mailmanagerruleset-snsaction-payloadtype
9079
9215
  '''
9080
9216
  result = self._values.get("payload_type")
@@ -9195,7 +9331,11 @@ class CfnMailManagerRuleSetProps:
9195
9331
  analyzer="analyzer",
9196
9332
  result_field="resultField"
9197
9333
  ),
9198
- attribute="attribute"
9334
+ attribute="attribute",
9335
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
9336
+ address_lists=["addressLists"],
9337
+ attribute="attribute"
9338
+ )
9199
9339
  ),
9200
9340
  operator="operator"
9201
9341
  ),
@@ -9249,7 +9389,11 @@ class CfnMailManagerRuleSetProps:
9249
9389
  analyzer="analyzer",
9250
9390
  result_field="resultField"
9251
9391
  ),
9252
- attribute="attribute"
9392
+ attribute="attribute",
9393
+ is_in_address_list=ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty(
9394
+ address_lists=["addressLists"],
9395
+ attribute="attribute"
9396
+ )
9253
9397
  ),
9254
9398
  operator="operator"
9255
9399
  ),
@@ -9390,6 +9534,10 @@ class CfnMailManagerTrafficPolicy(
9390
9534
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9391
9535
  analyzer="analyzer",
9392
9536
  result_field="resultField"
9537
+ ),
9538
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
9539
+ address_lists=["addressLists"],
9540
+ attribute="attribute"
9393
9541
  )
9394
9542
  ),
9395
9543
  operator="operator"
@@ -9704,6 +9852,10 @@ class CfnMailManagerTrafficPolicy(
9704
9852
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9705
9853
  analyzer="analyzer",
9706
9854
  result_field="resultField"
9855
+ ),
9856
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
9857
+ address_lists=["addressLists"],
9858
+ attribute="attribute"
9707
9859
  )
9708
9860
  ),
9709
9861
  operator="operator"
@@ -9754,17 +9906,19 @@ class CfnMailManagerTrafficPolicy(
9754
9906
  @jsii.data_type(
9755
9907
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty",
9756
9908
  jsii_struct_bases=[],
9757
- name_mapping={"analysis": "analysis"},
9909
+ name_mapping={"analysis": "analysis", "is_in_address_list": "isInAddressList"},
9758
9910
  )
9759
9911
  class IngressBooleanToEvaluateProperty:
9760
9912
  def __init__(
9761
9913
  self,
9762
9914
  *,
9763
- 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,
9764
9917
  ) -> None:
9765
9918
  '''The union type representing the allowed types of operands for a boolean condition.
9766
9919
 
9767
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:
9768
9922
 
9769
9923
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate.html
9770
9924
  :exampleMetadata: fixture=_generated
@@ -9779,27 +9933,43 @@ class CfnMailManagerTrafficPolicy(
9779
9933
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
9780
9934
  analyzer="analyzer",
9781
9935
  result_field="resultField"
9936
+ ),
9937
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
9938
+ address_lists=["addressLists"],
9939
+ attribute="attribute"
9782
9940
  )
9783
9941
  )
9784
9942
  '''
9785
9943
  if __debug__:
9786
9944
  type_hints = typing.get_type_hints(_typecheckingstub__f984617bda8a2e4d661237f8f2d083ff4f9510ebc7ccbff62ef023d22ebe961f)
9787
9945
  check_type(argname="argument analysis", value=analysis, expected_type=type_hints["analysis"])
9788
- self._values: typing.Dict[builtins.str, typing.Any] = {
9789
- "analysis": analysis,
9790
- }
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
9791
9952
 
9792
9953
  @builtins.property
9793
9954
  def analysis(
9794
9955
  self,
9795
- ) -> typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]:
9956
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMailManagerTrafficPolicy.IngressAnalysisProperty"]]:
9796
9957
  '''The structure type for a boolean condition stating the Add On ARN and its returned value.
9797
9958
 
9798
9959
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate.html#cfn-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate-analysis
9799
9960
  '''
9800
9961
  result = self._values.get("analysis")
9801
- assert result is not None, "Required property 'analysis' is missing"
9802
- 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)
9803
9973
 
9804
9974
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
9805
9975
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -10098,6 +10268,74 @@ class CfnMailManagerTrafficPolicy(
10098
10268
  k + "=" + repr(v) for k, v in self._values.items()
10099
10269
  )
10100
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
+
10101
10339
  @jsii.data_type(
10102
10340
  jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerTrafficPolicy.IngressStringExpressionProperty",
10103
10341
  jsii_struct_bases=[],
@@ -10463,6 +10701,10 @@ class CfnMailManagerTrafficPolicy(
10463
10701
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10464
10702
  analyzer="analyzer",
10465
10703
  result_field="resultField"
10704
+ ),
10705
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
10706
+ address_lists=["addressLists"],
10707
+ attribute="attribute"
10466
10708
  )
10467
10709
  ),
10468
10710
  operator="operator"
@@ -10627,6 +10869,10 @@ class CfnMailManagerTrafficPolicy(
10627
10869
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10628
10870
  analyzer="analyzer",
10629
10871
  result_field="resultField"
10872
+ ),
10873
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
10874
+ address_lists=["addressLists"],
10875
+ attribute="attribute"
10630
10876
  )
10631
10877
  ),
10632
10878
  operator="operator"
@@ -10757,6 +11003,10 @@ class CfnMailManagerTrafficPolicyProps:
10757
11003
  analysis=ses.CfnMailManagerTrafficPolicy.IngressAnalysisProperty(
10758
11004
  analyzer="analyzer",
10759
11005
  result_field="resultField"
11006
+ ),
11007
+ is_in_address_list=ses.CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty(
11008
+ address_lists=["addressLists"],
11009
+ attribute="attribute"
10760
11010
  )
10761
11011
  ),
10762
11012
  operator="operator"
@@ -19109,6 +19359,7 @@ def _typecheckingstub__837a4286b4e8b71b3f01d430cb3025b92d9655011a10dc38d56eb207d
19109
19359
  *,
19110
19360
  analysis: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.AnalysisProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
19111
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,
19112
19363
  ) -> None:
19113
19364
  """Type checking stubs"""
19114
19365
  pass
@@ -19149,6 +19400,14 @@ def _typecheckingstub__3a8c2b9cf0bccc9e370467c278e9d38253a9c27c0d0536268fbf47e4a
19149
19400
  """Type checking stubs"""
19150
19401
  pass
19151
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
+
19152
19411
  def _typecheckingstub__83799e1775b2d85cafb6fe8436a34354f3fb2f96ece05a92a7ff5946391395b2(
19153
19412
  *,
19154
19413
  evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerRuleSet.RuleNumberToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],
@@ -19322,7 +19581,8 @@ def _typecheckingstub__e11e4c9f67eb243bdb70a5e11d25dcc15331b3869022e75e712d05bc3
19322
19581
 
19323
19582
  def _typecheckingstub__f984617bda8a2e4d661237f8f2d083ff4f9510ebc7ccbff62ef023d22ebe961f(
19324
19583
  *,
19325
- 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,
19326
19586
  ) -> None:
19327
19587
  """Type checking stubs"""
19328
19588
  pass
@@ -19359,6 +19619,14 @@ def _typecheckingstub__f68a4c434cfdeacf5dcff0a6cf5c8e887cc1ed9849ea5b6b80bbd6645
19359
19619
  """Type checking stubs"""
19360
19620
  pass
19361
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
+
19362
19630
  def _typecheckingstub__ade2199cf4a326636b60ff7fe58a2b746de093bc3c1b7294612d9b84ad813746(
19363
19631
  *,
19364
19632
  evaluate: typing.Union[_IResolvable_da3f097b, typing.Union[CfnMailManagerTrafficPolicy.IngressStringToEvaluateProperty, typing.Dict[builtins.str, typing.Any]]],