aws-cdk-lib 2.148.1__py3-none-any.whl → 2.150.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 (51) hide show
  1. aws_cdk/__init__.py +4 -8
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.148.1.jsii.tgz → aws-cdk-lib@2.150.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_applicationautoscaling/__init__.py +16 -12
  5. aws_cdk/aws_bedrock/__init__.py +60 -28
  6. aws_cdk/aws_cloudformation/__init__.py +4 -8
  7. aws_cdk/aws_cloudtrail/__init__.py +30 -558
  8. aws_cdk/aws_cloudwatch/__init__.py +1 -1
  9. aws_cdk/aws_codebuild/__init__.py +57 -5
  10. aws_cdk/aws_codecommit/__init__.py +103 -0
  11. aws_cdk/aws_codedeploy/__init__.py +251 -5
  12. aws_cdk/aws_codepipeline/__init__.py +80 -5
  13. aws_cdk/aws_codestarnotifications/__init__.py +90 -4
  14. aws_cdk/aws_cognito/__init__.py +1 -2
  15. aws_cdk/aws_deadline/__init__.py +9 -15
  16. aws_cdk/aws_dms/__init__.py +10 -10
  17. aws_cdk/aws_ec2/__init__.py +86 -4
  18. aws_cdk/aws_ecs/__init__.py +10 -8
  19. aws_cdk/aws_eks/__init__.py +26 -20
  20. aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
  21. aws_cdk/aws_emr/__init__.py +26 -28
  22. aws_cdk/aws_events/__init__.py +1 -13
  23. aws_cdk/aws_fsx/__init__.py +25 -23
  24. aws_cdk/aws_glue/__init__.py +3 -3
  25. aws_cdk/aws_guardduty/__init__.py +6 -4
  26. aws_cdk/aws_iam/__init__.py +8 -5
  27. aws_cdk/aws_kinesisanalytics/__init__.py +11 -11
  28. aws_cdk/aws_kinesisanalyticsv2/__init__.py +11 -11
  29. aws_cdk/aws_lambda/__init__.py +19 -2
  30. aws_cdk/aws_logs/__init__.py +9 -0
  31. aws_cdk/aws_qbusiness/__init__.py +21 -7
  32. aws_cdk/aws_rds/__init__.py +18 -12
  33. aws_cdk/aws_rolesanywhere/__init__.py +22 -13
  34. aws_cdk/aws_route53profiles/__init__.py +4 -4
  35. aws_cdk/aws_s3/__init__.py +15 -117
  36. aws_cdk/aws_sagemaker/__init__.py +10 -10
  37. aws_cdk/aws_ses/__init__.py +119 -102
  38. aws_cdk/aws_stepfunctions_tasks/__init__.py +215 -24
  39. aws_cdk/aws_synthetics/__init__.py +15 -1
  40. aws_cdk/aws_verifiedpermissions/__init__.py +7 -9
  41. aws_cdk/aws_wafv2/__init__.py +10 -16
  42. aws_cdk/aws_workspaces/__init__.py +86 -56
  43. aws_cdk/custom_resources/__init__.py +91 -23
  44. aws_cdk/pipelines/__init__.py +1 -1
  45. aws_cdk/region_info/__init__.py +32 -12
  46. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/METADATA +1 -1
  47. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/RECORD +51 -51
  48. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/LICENSE +0 -0
  49. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/NOTICE +0 -0
  50. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/WHEEL +0 -0
  51. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.150.0.dist-info}/top_level.txt +0 -0
@@ -1187,6 +1187,7 @@ class IRepository(
1187
1187
  target: _INotificationRuleTarget_faa3b79b,
1188
1188
  *,
1189
1189
  events: typing.Sequence["RepositoryNotificationEvents"],
1190
+ created_by: typing.Optional[builtins.str] = None,
1190
1191
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1191
1192
  enabled: typing.Optional[builtins.bool] = None,
1192
1193
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1199,6 +1200,7 @@ class IRepository(
1199
1200
  :param id: -
1200
1201
  :param target: -
1201
1202
  :param events: A list of event types associated with this notification rule for CodeCommit repositories. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
1203
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1202
1204
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1203
1205
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1204
1206
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1213,6 +1215,7 @@ class IRepository(
1213
1215
  id: builtins.str,
1214
1216
  target: _INotificationRuleTarget_faa3b79b,
1215
1217
  *,
1218
+ created_by: typing.Optional[builtins.str] = None,
1216
1219
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1217
1220
  enabled: typing.Optional[builtins.bool] = None,
1218
1221
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1221,6 +1224,7 @@ class IRepository(
1221
1224
 
1222
1225
  :param id: -
1223
1226
  :param target: -
1227
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1224
1228
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1225
1229
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1226
1230
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1233,6 +1237,7 @@ class IRepository(
1233
1237
  id: builtins.str,
1234
1238
  target: _INotificationRuleTarget_faa3b79b,
1235
1239
  *,
1240
+ created_by: typing.Optional[builtins.str] = None,
1236
1241
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1237
1242
  enabled: typing.Optional[builtins.bool] = None,
1238
1243
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1241,6 +1246,7 @@ class IRepository(
1241
1246
 
1242
1247
  :param id: -
1243
1248
  :param target: -
1249
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1244
1250
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1245
1251
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1246
1252
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1253,6 +1259,7 @@ class IRepository(
1253
1259
  id: builtins.str,
1254
1260
  target: _INotificationRuleTarget_faa3b79b,
1255
1261
  *,
1262
+ created_by: typing.Optional[builtins.str] = None,
1256
1263
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1257
1264
  enabled: typing.Optional[builtins.bool] = None,
1258
1265
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1261,6 +1268,7 @@ class IRepository(
1261
1268
 
1262
1269
  :param id: -
1263
1270
  :param target: -
1271
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1264
1272
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1265
1273
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1266
1274
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1273,6 +1281,7 @@ class IRepository(
1273
1281
  id: builtins.str,
1274
1282
  target: _INotificationRuleTarget_faa3b79b,
1275
1283
  *,
1284
+ created_by: typing.Optional[builtins.str] = None,
1276
1285
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1277
1286
  enabled: typing.Optional[builtins.bool] = None,
1278
1287
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1281,6 +1290,7 @@ class IRepository(
1281
1290
 
1282
1291
  :param id: -
1283
1292
  :param target: -
1293
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1284
1294
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1285
1295
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1286
1296
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1293,6 +1303,7 @@ class IRepository(
1293
1303
  id: builtins.str,
1294
1304
  target: _INotificationRuleTarget_faa3b79b,
1295
1305
  *,
1306
+ created_by: typing.Optional[builtins.str] = None,
1296
1307
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1297
1308
  enabled: typing.Optional[builtins.bool] = None,
1298
1309
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1301,6 +1312,7 @@ class IRepository(
1301
1312
 
1302
1313
  :param id: -
1303
1314
  :param target: -
1315
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1304
1316
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1305
1317
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1306
1318
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1313,6 +1325,7 @@ class IRepository(
1313
1325
  id: builtins.str,
1314
1326
  target: _INotificationRuleTarget_faa3b79b,
1315
1327
  *,
1328
+ created_by: typing.Optional[builtins.str] = None,
1316
1329
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1317
1330
  enabled: typing.Optional[builtins.bool] = None,
1318
1331
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1321,6 +1334,7 @@ class IRepository(
1321
1334
 
1322
1335
  :param id: -
1323
1336
  :param target: -
1337
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1324
1338
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1325
1339
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1326
1340
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1333,6 +1347,7 @@ class IRepository(
1333
1347
  id: builtins.str,
1334
1348
  target: _INotificationRuleTarget_faa3b79b,
1335
1349
  *,
1350
+ created_by: typing.Optional[builtins.str] = None,
1336
1351
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1337
1352
  enabled: typing.Optional[builtins.bool] = None,
1338
1353
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1341,6 +1356,7 @@ class IRepository(
1341
1356
 
1342
1357
  :param id: -
1343
1358
  :param target: -
1359
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1344
1360
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1345
1361
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1346
1362
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1664,6 +1680,7 @@ class _IRepositoryProxy(
1664
1680
  target: _INotificationRuleTarget_faa3b79b,
1665
1681
  *,
1666
1682
  events: typing.Sequence["RepositoryNotificationEvents"],
1683
+ created_by: typing.Optional[builtins.str] = None,
1667
1684
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1668
1685
  enabled: typing.Optional[builtins.bool] = None,
1669
1686
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1676,6 +1693,7 @@ class _IRepositoryProxy(
1676
1693
  :param id: -
1677
1694
  :param target: -
1678
1695
  :param events: A list of event types associated with this notification rule for CodeCommit repositories. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
1696
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1679
1697
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1680
1698
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1681
1699
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1688,6 +1706,7 @@ class _IRepositoryProxy(
1688
1706
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1689
1707
  options = RepositoryNotifyOnOptions(
1690
1708
  events=events,
1709
+ created_by=created_by,
1691
1710
  detail_type=detail_type,
1692
1711
  enabled=enabled,
1693
1712
  notification_rule_name=notification_rule_name,
@@ -1701,6 +1720,7 @@ class _IRepositoryProxy(
1701
1720
  id: builtins.str,
1702
1721
  target: _INotificationRuleTarget_faa3b79b,
1703
1722
  *,
1723
+ created_by: typing.Optional[builtins.str] = None,
1704
1724
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1705
1725
  enabled: typing.Optional[builtins.bool] = None,
1706
1726
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1709,6 +1729,7 @@ class _IRepositoryProxy(
1709
1729
 
1710
1730
  :param id: -
1711
1731
  :param target: -
1732
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1712
1733
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1713
1734
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1714
1735
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1718,6 +1739,7 @@ class _IRepositoryProxy(
1718
1739
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1719
1740
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1720
1741
  options = _NotificationRuleOptions_dff73281(
1742
+ created_by=created_by,
1721
1743
  detail_type=detail_type,
1722
1744
  enabled=enabled,
1723
1745
  notification_rule_name=notification_rule_name,
@@ -1731,6 +1753,7 @@ class _IRepositoryProxy(
1731
1753
  id: builtins.str,
1732
1754
  target: _INotificationRuleTarget_faa3b79b,
1733
1755
  *,
1756
+ created_by: typing.Optional[builtins.str] = None,
1734
1757
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1735
1758
  enabled: typing.Optional[builtins.bool] = None,
1736
1759
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1739,6 +1762,7 @@ class _IRepositoryProxy(
1739
1762
 
1740
1763
  :param id: -
1741
1764
  :param target: -
1765
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1742
1766
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1743
1767
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1744
1768
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1748,6 +1772,7 @@ class _IRepositoryProxy(
1748
1772
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1749
1773
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1750
1774
  options = _NotificationRuleOptions_dff73281(
1775
+ created_by=created_by,
1751
1776
  detail_type=detail_type,
1752
1777
  enabled=enabled,
1753
1778
  notification_rule_name=notification_rule_name,
@@ -1761,6 +1786,7 @@ class _IRepositoryProxy(
1761
1786
  id: builtins.str,
1762
1787
  target: _INotificationRuleTarget_faa3b79b,
1763
1788
  *,
1789
+ created_by: typing.Optional[builtins.str] = None,
1764
1790
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1765
1791
  enabled: typing.Optional[builtins.bool] = None,
1766
1792
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1769,6 +1795,7 @@ class _IRepositoryProxy(
1769
1795
 
1770
1796
  :param id: -
1771
1797
  :param target: -
1798
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1772
1799
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1773
1800
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1774
1801
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1778,6 +1805,7 @@ class _IRepositoryProxy(
1778
1805
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1779
1806
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1780
1807
  options = _NotificationRuleOptions_dff73281(
1808
+ created_by=created_by,
1781
1809
  detail_type=detail_type,
1782
1810
  enabled=enabled,
1783
1811
  notification_rule_name=notification_rule_name,
@@ -1791,6 +1819,7 @@ class _IRepositoryProxy(
1791
1819
  id: builtins.str,
1792
1820
  target: _INotificationRuleTarget_faa3b79b,
1793
1821
  *,
1822
+ created_by: typing.Optional[builtins.str] = None,
1794
1823
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1795
1824
  enabled: typing.Optional[builtins.bool] = None,
1796
1825
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1799,6 +1828,7 @@ class _IRepositoryProxy(
1799
1828
 
1800
1829
  :param id: -
1801
1830
  :param target: -
1831
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1802
1832
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1803
1833
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1804
1834
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1808,6 +1838,7 @@ class _IRepositoryProxy(
1808
1838
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1809
1839
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1810
1840
  options = _NotificationRuleOptions_dff73281(
1841
+ created_by=created_by,
1811
1842
  detail_type=detail_type,
1812
1843
  enabled=enabled,
1813
1844
  notification_rule_name=notification_rule_name,
@@ -1821,6 +1852,7 @@ class _IRepositoryProxy(
1821
1852
  id: builtins.str,
1822
1853
  target: _INotificationRuleTarget_faa3b79b,
1823
1854
  *,
1855
+ created_by: typing.Optional[builtins.str] = None,
1824
1856
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1825
1857
  enabled: typing.Optional[builtins.bool] = None,
1826
1858
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1829,6 +1861,7 @@ class _IRepositoryProxy(
1829
1861
 
1830
1862
  :param id: -
1831
1863
  :param target: -
1864
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1832
1865
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1833
1866
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1834
1867
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1838,6 +1871,7 @@ class _IRepositoryProxy(
1838
1871
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1839
1872
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1840
1873
  options = _NotificationRuleOptions_dff73281(
1874
+ created_by=created_by,
1841
1875
  detail_type=detail_type,
1842
1876
  enabled=enabled,
1843
1877
  notification_rule_name=notification_rule_name,
@@ -1851,6 +1885,7 @@ class _IRepositoryProxy(
1851
1885
  id: builtins.str,
1852
1886
  target: _INotificationRuleTarget_faa3b79b,
1853
1887
  *,
1888
+ created_by: typing.Optional[builtins.str] = None,
1854
1889
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1855
1890
  enabled: typing.Optional[builtins.bool] = None,
1856
1891
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1859,6 +1894,7 @@ class _IRepositoryProxy(
1859
1894
 
1860
1895
  :param id: -
1861
1896
  :param target: -
1897
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1862
1898
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1863
1899
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1864
1900
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1868,6 +1904,7 @@ class _IRepositoryProxy(
1868
1904
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1869
1905
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1870
1906
  options = _NotificationRuleOptions_dff73281(
1907
+ created_by=created_by,
1871
1908
  detail_type=detail_type,
1872
1909
  enabled=enabled,
1873
1910
  notification_rule_name=notification_rule_name,
@@ -1881,6 +1918,7 @@ class _IRepositoryProxy(
1881
1918
  id: builtins.str,
1882
1919
  target: _INotificationRuleTarget_faa3b79b,
1883
1920
  *,
1921
+ created_by: typing.Optional[builtins.str] = None,
1884
1922
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
1885
1923
  enabled: typing.Optional[builtins.bool] = None,
1886
1924
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1889,6 +1927,7 @@ class _IRepositoryProxy(
1889
1927
 
1890
1928
  :param id: -
1891
1929
  :param target: -
1930
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1892
1931
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1893
1932
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1894
1933
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1898,6 +1937,7 @@ class _IRepositoryProxy(
1898
1937
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1899
1938
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
1900
1939
  options = _NotificationRuleOptions_dff73281(
1940
+ created_by=created_by,
1901
1941
  detail_type=detail_type,
1902
1942
  enabled=enabled,
1903
1943
  notification_rule_name=notification_rule_name,
@@ -2606,6 +2646,7 @@ class Repository(
2606
2646
  id: builtins.str,
2607
2647
  target: _INotificationRuleTarget_faa3b79b,
2608
2648
  *,
2649
+ created_by: typing.Optional[builtins.str] = None,
2609
2650
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2610
2651
  enabled: typing.Optional[builtins.bool] = None,
2611
2652
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2614,6 +2655,7 @@ class Repository(
2614
2655
 
2615
2656
  :param id: -
2616
2657
  :param target: -
2658
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2617
2659
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2618
2660
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2619
2661
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2623,6 +2665,7 @@ class Repository(
2623
2665
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2624
2666
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2625
2667
  options = _NotificationRuleOptions_dff73281(
2668
+ created_by=created_by,
2626
2669
  detail_type=detail_type,
2627
2670
  enabled=enabled,
2628
2671
  notification_rule_name=notification_rule_name,
@@ -2664,6 +2707,7 @@ class Repository(
2664
2707
  target: _INotificationRuleTarget_faa3b79b,
2665
2708
  *,
2666
2709
  events: typing.Sequence["RepositoryNotificationEvents"],
2710
+ created_by: typing.Optional[builtins.str] = None,
2667
2711
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2668
2712
  enabled: typing.Optional[builtins.bool] = None,
2669
2713
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2676,6 +2720,7 @@ class Repository(
2676
2720
  :param id: -
2677
2721
  :param target: -
2678
2722
  :param events: A list of event types associated with this notification rule for CodeCommit repositories. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
2723
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2679
2724
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2680
2725
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2681
2726
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2686,6 +2731,7 @@ class Repository(
2686
2731
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2687
2732
  options = RepositoryNotifyOnOptions(
2688
2733
  events=events,
2734
+ created_by=created_by,
2689
2735
  detail_type=detail_type,
2690
2736
  enabled=enabled,
2691
2737
  notification_rule_name=notification_rule_name,
@@ -2699,6 +2745,7 @@ class Repository(
2699
2745
  id: builtins.str,
2700
2746
  target: _INotificationRuleTarget_faa3b79b,
2701
2747
  *,
2748
+ created_by: typing.Optional[builtins.str] = None,
2702
2749
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2703
2750
  enabled: typing.Optional[builtins.bool] = None,
2704
2751
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2707,6 +2754,7 @@ class Repository(
2707
2754
 
2708
2755
  :param id: -
2709
2756
  :param target: -
2757
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2710
2758
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2711
2759
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2712
2760
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2716,6 +2764,7 @@ class Repository(
2716
2764
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2717
2765
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2718
2766
  options = _NotificationRuleOptions_dff73281(
2767
+ created_by=created_by,
2719
2768
  detail_type=detail_type,
2720
2769
  enabled=enabled,
2721
2770
  notification_rule_name=notification_rule_name,
@@ -2729,6 +2778,7 @@ class Repository(
2729
2778
  id: builtins.str,
2730
2779
  target: _INotificationRuleTarget_faa3b79b,
2731
2780
  *,
2781
+ created_by: typing.Optional[builtins.str] = None,
2732
2782
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2733
2783
  enabled: typing.Optional[builtins.bool] = None,
2734
2784
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2737,6 +2787,7 @@ class Repository(
2737
2787
 
2738
2788
  :param id: -
2739
2789
  :param target: -
2790
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2740
2791
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2741
2792
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2742
2793
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2746,6 +2797,7 @@ class Repository(
2746
2797
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2747
2798
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2748
2799
  options = _NotificationRuleOptions_dff73281(
2800
+ created_by=created_by,
2749
2801
  detail_type=detail_type,
2750
2802
  enabled=enabled,
2751
2803
  notification_rule_name=notification_rule_name,
@@ -2759,6 +2811,7 @@ class Repository(
2759
2811
  id: builtins.str,
2760
2812
  target: _INotificationRuleTarget_faa3b79b,
2761
2813
  *,
2814
+ created_by: typing.Optional[builtins.str] = None,
2762
2815
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2763
2816
  enabled: typing.Optional[builtins.bool] = None,
2764
2817
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2767,6 +2820,7 @@ class Repository(
2767
2820
 
2768
2821
  :param id: -
2769
2822
  :param target: -
2823
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2770
2824
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2771
2825
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2772
2826
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2776,6 +2830,7 @@ class Repository(
2776
2830
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2777
2831
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2778
2832
  options = _NotificationRuleOptions_dff73281(
2833
+ created_by=created_by,
2779
2834
  detail_type=detail_type,
2780
2835
  enabled=enabled,
2781
2836
  notification_rule_name=notification_rule_name,
@@ -2789,6 +2844,7 @@ class Repository(
2789
2844
  id: builtins.str,
2790
2845
  target: _INotificationRuleTarget_faa3b79b,
2791
2846
  *,
2847
+ created_by: typing.Optional[builtins.str] = None,
2792
2848
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2793
2849
  enabled: typing.Optional[builtins.bool] = None,
2794
2850
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2797,6 +2853,7 @@ class Repository(
2797
2853
 
2798
2854
  :param id: -
2799
2855
  :param target: -
2856
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2800
2857
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2801
2858
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2802
2859
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2806,6 +2863,7 @@ class Repository(
2806
2863
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2807
2864
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2808
2865
  options = _NotificationRuleOptions_dff73281(
2866
+ created_by=created_by,
2809
2867
  detail_type=detail_type,
2810
2868
  enabled=enabled,
2811
2869
  notification_rule_name=notification_rule_name,
@@ -2819,6 +2877,7 @@ class Repository(
2819
2877
  id: builtins.str,
2820
2878
  target: _INotificationRuleTarget_faa3b79b,
2821
2879
  *,
2880
+ created_by: typing.Optional[builtins.str] = None,
2822
2881
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2823
2882
  enabled: typing.Optional[builtins.bool] = None,
2824
2883
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2827,6 +2886,7 @@ class Repository(
2827
2886
 
2828
2887
  :param id: -
2829
2888
  :param target: -
2889
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2830
2890
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2831
2891
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2832
2892
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2836,6 +2896,7 @@ class Repository(
2836
2896
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2837
2897
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2838
2898
  options = _NotificationRuleOptions_dff73281(
2899
+ created_by=created_by,
2839
2900
  detail_type=detail_type,
2840
2901
  enabled=enabled,
2841
2902
  notification_rule_name=notification_rule_name,
@@ -2849,6 +2910,7 @@ class Repository(
2849
2910
  id: builtins.str,
2850
2911
  target: _INotificationRuleTarget_faa3b79b,
2851
2912
  *,
2913
+ created_by: typing.Optional[builtins.str] = None,
2852
2914
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2853
2915
  enabled: typing.Optional[builtins.bool] = None,
2854
2916
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2857,6 +2919,7 @@ class Repository(
2857
2919
 
2858
2920
  :param id: -
2859
2921
  :param target: -
2922
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2860
2923
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2861
2924
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2862
2925
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2866,6 +2929,7 @@ class Repository(
2866
2929
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2867
2930
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2868
2931
  options = _NotificationRuleOptions_dff73281(
2932
+ created_by=created_by,
2869
2933
  detail_type=detail_type,
2870
2934
  enabled=enabled,
2871
2935
  notification_rule_name=notification_rule_name,
@@ -2879,6 +2943,7 @@ class Repository(
2879
2943
  id: builtins.str,
2880
2944
  target: _INotificationRuleTarget_faa3b79b,
2881
2945
  *,
2946
+ created_by: typing.Optional[builtins.str] = None,
2882
2947
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
2883
2948
  enabled: typing.Optional[builtins.bool] = None,
2884
2949
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2887,6 +2952,7 @@ class Repository(
2887
2952
 
2888
2953
  :param id: -
2889
2954
  :param target: -
2955
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
2890
2956
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
2891
2957
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
2892
2958
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -2896,6 +2962,7 @@ class Repository(
2896
2962
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2897
2963
  check_type(argname="argument target", value=target, expected_type=type_hints["target"])
2898
2964
  options = _NotificationRuleOptions_dff73281(
2965
+ created_by=created_by,
2899
2966
  detail_type=detail_type,
2900
2967
  enabled=enabled,
2901
2968
  notification_rule_name=notification_rule_name,
@@ -3288,6 +3355,7 @@ class RepositoryNotificationEvents(enum.Enum):
3288
3355
  jsii_type="aws-cdk-lib.aws_codecommit.RepositoryNotifyOnOptions",
3289
3356
  jsii_struct_bases=[_NotificationRuleOptions_dff73281],
3290
3357
  name_mapping={
3358
+ "created_by": "createdBy",
3291
3359
  "detail_type": "detailType",
3292
3360
  "enabled": "enabled",
3293
3361
  "notification_rule_name": "notificationRuleName",
@@ -3298,6 +3366,7 @@ class RepositoryNotifyOnOptions(_NotificationRuleOptions_dff73281):
3298
3366
  def __init__(
3299
3367
  self,
3300
3368
  *,
3369
+ created_by: typing.Optional[builtins.str] = None,
3301
3370
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3302
3371
  enabled: typing.Optional[builtins.bool] = None,
3303
3372
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3305,6 +3374,7 @@ class RepositoryNotifyOnOptions(_NotificationRuleOptions_dff73281):
3305
3374
  ) -> None:
3306
3375
  '''Additional options to pass to the notification rule.
3307
3376
 
3377
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
3308
3378
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
3309
3379
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
3310
3380
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -3323,6 +3393,7 @@ class RepositoryNotifyOnOptions(_NotificationRuleOptions_dff73281):
3323
3393
  events=[codecommit.RepositoryNotificationEvents.COMMIT_COMMENT],
3324
3394
 
3325
3395
  # the properties below are optional
3396
+ created_by="createdBy",
3326
3397
  detail_type=codestarnotifications.DetailType.BASIC,
3327
3398
  enabled=False,
3328
3399
  notification_rule_name="notificationRuleName"
@@ -3330,6 +3401,7 @@ class RepositoryNotifyOnOptions(_NotificationRuleOptions_dff73281):
3330
3401
  '''
3331
3402
  if __debug__:
3332
3403
  type_hints = typing.get_type_hints(_typecheckingstub__16fd76e74f0043c5c5c8d74817ce13ba7cb586b9bf523ff287c1613ecca5ac20)
3404
+ check_type(argname="argument created_by", value=created_by, expected_type=type_hints["created_by"])
3333
3405
  check_type(argname="argument detail_type", value=detail_type, expected_type=type_hints["detail_type"])
3334
3406
  check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
3335
3407
  check_type(argname="argument notification_rule_name", value=notification_rule_name, expected_type=type_hints["notification_rule_name"])
@@ -3337,6 +3409,8 @@ class RepositoryNotifyOnOptions(_NotificationRuleOptions_dff73281):
3337
3409
  self._values: typing.Dict[builtins.str, typing.Any] = {
3338
3410
  "events": events,
3339
3411
  }
3412
+ if created_by is not None:
3413
+ self._values["created_by"] = created_by
3340
3414
  if detail_type is not None:
3341
3415
  self._values["detail_type"] = detail_type
3342
3416
  if enabled is not None:
@@ -3344,6 +3418,17 @@ class RepositoryNotifyOnOptions(_NotificationRuleOptions_dff73281):
3344
3418
  if notification_rule_name is not None:
3345
3419
  self._values["notification_rule_name"] = notification_rule_name
3346
3420
 
3421
+ @builtins.property
3422
+ def created_by(self) -> typing.Optional[builtins.str]:
3423
+ '''The name or email alias of the person who created the notification rule.
3424
+
3425
+ If not specified, it means that the creator's alias is not provided.
3426
+
3427
+ :default: - No alias provided
3428
+ '''
3429
+ result = self._values.get("created_by")
3430
+ return typing.cast(typing.Optional[builtins.str], result)
3431
+
3347
3432
  @builtins.property
3348
3433
  def detail_type(self) -> typing.Optional[_DetailType_cf8135e7]:
3349
3434
  '''The level of detail to include in the notifications for this resource.
@@ -3813,6 +3898,7 @@ def _typecheckingstub__4c7942184f6ef1171bc9e0c3554be4e156be2d930de75af76e6c7194d
3813
3898
  target: _INotificationRuleTarget_faa3b79b,
3814
3899
  *,
3815
3900
  events: typing.Sequence[RepositoryNotificationEvents],
3901
+ created_by: typing.Optional[builtins.str] = None,
3816
3902
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3817
3903
  enabled: typing.Optional[builtins.bool] = None,
3818
3904
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3824,6 +3910,7 @@ def _typecheckingstub__1eaa0e8d10ed3253a51fe07f30f2e5ccd87923daac9fa5cac304d64e8
3824
3910
  id: builtins.str,
3825
3911
  target: _INotificationRuleTarget_faa3b79b,
3826
3912
  *,
3913
+ created_by: typing.Optional[builtins.str] = None,
3827
3914
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3828
3915
  enabled: typing.Optional[builtins.bool] = None,
3829
3916
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3835,6 +3922,7 @@ def _typecheckingstub__e7bf91f05b1a4f3ae616bd9f41791280fc198c1c0da943398dda62249
3835
3922
  id: builtins.str,
3836
3923
  target: _INotificationRuleTarget_faa3b79b,
3837
3924
  *,
3925
+ created_by: typing.Optional[builtins.str] = None,
3838
3926
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3839
3927
  enabled: typing.Optional[builtins.bool] = None,
3840
3928
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3846,6 +3934,7 @@ def _typecheckingstub__cafbc61c624b37c5ad3d4b8a63e817009d77858ce7b25f3e44bba75d8
3846
3934
  id: builtins.str,
3847
3935
  target: _INotificationRuleTarget_faa3b79b,
3848
3936
  *,
3937
+ created_by: typing.Optional[builtins.str] = None,
3849
3938
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3850
3939
  enabled: typing.Optional[builtins.bool] = None,
3851
3940
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3857,6 +3946,7 @@ def _typecheckingstub__0275a2e8104bae4bd7ac1bba2e30688464d013a5007f7602a9ea90f44
3857
3946
  id: builtins.str,
3858
3947
  target: _INotificationRuleTarget_faa3b79b,
3859
3948
  *,
3949
+ created_by: typing.Optional[builtins.str] = None,
3860
3950
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3861
3951
  enabled: typing.Optional[builtins.bool] = None,
3862
3952
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3868,6 +3958,7 @@ def _typecheckingstub__6248afe48e2fb868c294f63ac413c00382e7856dc1949f9226aad2093
3868
3958
  id: builtins.str,
3869
3959
  target: _INotificationRuleTarget_faa3b79b,
3870
3960
  *,
3961
+ created_by: typing.Optional[builtins.str] = None,
3871
3962
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3872
3963
  enabled: typing.Optional[builtins.bool] = None,
3873
3964
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3879,6 +3970,7 @@ def _typecheckingstub__f02ad2ac0201a88eb92c38b6798b71bcc5a0c60f935ccccfd798c2212
3879
3970
  id: builtins.str,
3880
3971
  target: _INotificationRuleTarget_faa3b79b,
3881
3972
  *,
3973
+ created_by: typing.Optional[builtins.str] = None,
3882
3974
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3883
3975
  enabled: typing.Optional[builtins.bool] = None,
3884
3976
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -3890,6 +3982,7 @@ def _typecheckingstub__a979cb7a485f86b22849a4dd125f67228ce5778a7cf334f786600ef50
3890
3982
  id: builtins.str,
3891
3983
  target: _INotificationRuleTarget_faa3b79b,
3892
3984
  *,
3985
+ created_by: typing.Optional[builtins.str] = None,
3893
3986
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
3894
3987
  enabled: typing.Optional[builtins.bool] = None,
3895
3988
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4081,6 +4174,7 @@ def _typecheckingstub__e51541fedf5c8bb4467983a2551ed5f9efa788750c8ebec9fbcf9aaee
4081
4174
  id: builtins.str,
4082
4175
  target: _INotificationRuleTarget_faa3b79b,
4083
4176
  *,
4177
+ created_by: typing.Optional[builtins.str] = None,
4084
4178
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4085
4179
  enabled: typing.Optional[builtins.bool] = None,
4086
4180
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4104,6 +4198,7 @@ def _typecheckingstub__2749a2587821387b871505c0408414b596d663e34cdcf4cf4680c6ea4
4104
4198
  target: _INotificationRuleTarget_faa3b79b,
4105
4199
  *,
4106
4200
  events: typing.Sequence[RepositoryNotificationEvents],
4201
+ created_by: typing.Optional[builtins.str] = None,
4107
4202
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4108
4203
  enabled: typing.Optional[builtins.bool] = None,
4109
4204
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4115,6 +4210,7 @@ def _typecheckingstub__e63d1ce633a4f4266a796f6cdb67b39a645cc34554e1565e442106e47
4115
4210
  id: builtins.str,
4116
4211
  target: _INotificationRuleTarget_faa3b79b,
4117
4212
  *,
4213
+ created_by: typing.Optional[builtins.str] = None,
4118
4214
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4119
4215
  enabled: typing.Optional[builtins.bool] = None,
4120
4216
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4126,6 +4222,7 @@ def _typecheckingstub__fc8c6b048a43947387c3a5e34fc554543aa2e3e1d20768589eed5d96e
4126
4222
  id: builtins.str,
4127
4223
  target: _INotificationRuleTarget_faa3b79b,
4128
4224
  *,
4225
+ created_by: typing.Optional[builtins.str] = None,
4129
4226
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4130
4227
  enabled: typing.Optional[builtins.bool] = None,
4131
4228
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4137,6 +4234,7 @@ def _typecheckingstub__cb870921bbb9ab4ed9e1a62ba8ef6bf25612d59da0df03c9c1baa7101
4137
4234
  id: builtins.str,
4138
4235
  target: _INotificationRuleTarget_faa3b79b,
4139
4236
  *,
4237
+ created_by: typing.Optional[builtins.str] = None,
4140
4238
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4141
4239
  enabled: typing.Optional[builtins.bool] = None,
4142
4240
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4148,6 +4246,7 @@ def _typecheckingstub__590bcfde747b37888d42f2e95418df6766d69b978c2275b81a2d68c18
4148
4246
  id: builtins.str,
4149
4247
  target: _INotificationRuleTarget_faa3b79b,
4150
4248
  *,
4249
+ created_by: typing.Optional[builtins.str] = None,
4151
4250
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4152
4251
  enabled: typing.Optional[builtins.bool] = None,
4153
4252
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4159,6 +4258,7 @@ def _typecheckingstub__8945454cd0688bf69a49ca491edd2ce985eab8c28b695a4392ae84fbb
4159
4258
  id: builtins.str,
4160
4259
  target: _INotificationRuleTarget_faa3b79b,
4161
4260
  *,
4261
+ created_by: typing.Optional[builtins.str] = None,
4162
4262
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4163
4263
  enabled: typing.Optional[builtins.bool] = None,
4164
4264
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4170,6 +4270,7 @@ def _typecheckingstub__9584aecb592a6d74f000818947c6960318c665568cef4b2803439fb35
4170
4270
  id: builtins.str,
4171
4271
  target: _INotificationRuleTarget_faa3b79b,
4172
4272
  *,
4273
+ created_by: typing.Optional[builtins.str] = None,
4173
4274
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4174
4275
  enabled: typing.Optional[builtins.bool] = None,
4175
4276
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4181,6 +4282,7 @@ def _typecheckingstub__a56da01a2bfa53759d6ea1d05f82f37dbb5b0d0a992404afbafaabc9e
4181
4282
  id: builtins.str,
4182
4283
  target: _INotificationRuleTarget_faa3b79b,
4183
4284
  *,
4285
+ created_by: typing.Optional[builtins.str] = None,
4184
4286
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4185
4287
  enabled: typing.Optional[builtins.bool] = None,
4186
4288
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -4299,6 +4401,7 @@ def _typecheckingstub__1a5f61873c1de6801c610dc52c1b0aead08c4373e86647a8107cc8b1b
4299
4401
 
4300
4402
  def _typecheckingstub__16fd76e74f0043c5c5c8d74817ce13ba7cb586b9bf523ff287c1613ecca5ac20(
4301
4403
  *,
4404
+ created_by: typing.Optional[builtins.str] = None,
4302
4405
  detail_type: typing.Optional[_DetailType_cf8135e7] = None,
4303
4406
  enabled: typing.Optional[builtins.bool] = None,
4304
4407
  notification_rule_name: typing.Optional[builtins.str] = None,