aws-cdk-lib 2.125.0__py3-none-any.whl → 2.127.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 (69) hide show
  1. aws_cdk/__init__.py +0 -2
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.125.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +18 -6
  5. aws_cdk/aws_amazonmq/__init__.py +3 -2
  6. aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
  7. aws_cdk/aws_apigateway/__init__.py +7 -3
  8. aws_cdk/aws_appconfig/__init__.py +108 -19
  9. aws_cdk/aws_appsync/__init__.py +43 -0
  10. aws_cdk/aws_autoscaling/__init__.py +37 -14
  11. aws_cdk/aws_cassandra/__init__.py +810 -4
  12. aws_cdk/aws_cloudfront/__init__.py +35 -37
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
  14. aws_cdk/aws_codebuild/__init__.py +43 -3
  15. aws_cdk/aws_codecommit/__init__.py +1 -0
  16. aws_cdk/aws_codepipeline/__init__.py +7 -3
  17. aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
  18. aws_cdk/aws_codestarnotifications/__init__.py +24 -15
  19. aws_cdk/aws_cognito/__init__.py +180 -116
  20. aws_cdk/aws_datasync/__init__.py +8 -4
  21. aws_cdk/aws_dynamodb/__init__.py +80 -11
  22. aws_cdk/aws_ec2/__init__.py +207 -45
  23. aws_cdk/aws_ecs/__init__.py +171 -78
  24. aws_cdk/aws_ecs_patterns/__init__.py +24 -0
  25. aws_cdk/aws_efs/__init__.py +64 -8
  26. aws_cdk/aws_eks/__init__.py +52 -41
  27. aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
  28. aws_cdk/aws_fis/__init__.py +32 -12
  29. aws_cdk/aws_fsx/__init__.py +61 -43
  30. aws_cdk/aws_glue/__init__.py +449 -0
  31. aws_cdk/aws_guardduty/__init__.py +0 -8
  32. aws_cdk/aws_iam/__init__.py +3 -3
  33. aws_cdk/aws_inspectorv2/__init__.py +989 -0
  34. aws_cdk/aws_internetmonitor/__init__.py +10 -12
  35. aws_cdk/aws_iot/__init__.py +112 -0
  36. aws_cdk/aws_iotwireless/__init__.py +32 -19
  37. aws_cdk/aws_lambda/__init__.py +129 -32
  38. aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
  39. aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
  40. aws_cdk/aws_location/__init__.py +8 -2
  41. aws_cdk/aws_logs/__init__.py +7 -3
  42. aws_cdk/aws_networkmanager/__init__.py +1 -1
  43. aws_cdk/aws_opensearchserverless/__init__.py +4 -4
  44. aws_cdk/aws_osis/__init__.py +13 -13
  45. aws_cdk/aws_personalize/__init__.py +1 -1
  46. aws_cdk/aws_pinpoint/__init__.py +5 -5
  47. aws_cdk/aws_pipes/__init__.py +7 -10
  48. aws_cdk/aws_rds/__init__.py +449 -8
  49. aws_cdk/aws_redshiftserverless/__init__.py +282 -0
  50. aws_cdk/aws_rolesanywhere/__init__.py +53 -41
  51. aws_cdk/aws_route53/__init__.py +282 -0
  52. aws_cdk/aws_s3/__init__.py +11 -6
  53. aws_cdk/aws_sagemaker/__init__.py +1398 -39
  54. aws_cdk/aws_sns/__init__.py +56 -13
  55. aws_cdk/aws_sqs/__init__.py +13 -10
  56. aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
  57. aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
  58. aws_cdk/aws_transfer/__init__.py +1 -1
  59. aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
  60. aws_cdk/aws_workspacesweb/__init__.py +6 -3
  61. aws_cdk/cx_api/__init__.py +17 -0
  62. aws_cdk/triggers/__init__.py +21 -0
  63. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
  64. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
  65. aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
  66. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
  67. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
  68. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
  69. {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
@@ -101,7 +101,7 @@ class CfnNotificationRule(
101
101
  ):
102
102
  '''Creates a notification rule for a resource.
103
103
 
104
- The rule specifies the events you want notifications about and the targets (such as AWS Chatbot topics or AWS Chatbot clients configured for Slack) where you want to receive them.
104
+ The rule specifies the events you want notifications about and the targets (such as Amazon Simple Notification Service topics or AWS Chatbot clients configured for Slack) where you want to receive them.
105
105
 
106
106
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html
107
107
  :cloudformationResource: AWS::CodeStarNotifications::NotificationRule
@@ -157,12 +157,12 @@ class CfnNotificationRule(
157
157
  :param event_type_ids: A list of event types associated with this notification rule. For a complete list of event types and IDs, see `Notification concepts <https://docs.aws.amazon.com/dtconsole/latest/userguide/concepts.html#concepts-api>`_ in the *Developer Tools Console User Guide* .
158
158
  :param name: The name for the notification rule. Notification rule names must be unique in your AWS account .
159
159
  :param resource: The Amazon Resource Name (ARN) of the resource to associate with the notification rule. Supported resources include pipelines in AWS CodePipeline , repositories in AWS CodeCommit , and build projects in AWS CodeBuild .
160
- :param targets: A list of Amazon Resource Names (ARNs) of Amazon Simple Notification Service topics and AWS Chatbot clients to associate with the notification rule.
161
- :param created_by:
162
- :param event_type_id:
160
+ :param targets: A list of Amazon Resource Names (ARNs) of Amazon SNS topics and AWS Chatbot clients to associate with the notification rule.
161
+ :param created_by: The name or email alias of the person who created the notification rule.
162
+ :param event_type_id: The event type associated with this notification rule. For a complete list of event types and IDs, see `Notification concepts <https://docs.aws.amazon.com/dtconsole/latest/userguide/concepts.html#concepts-api>`_ in the *Developer Tools Console User Guide* .
163
163
  :param status: The status of the notification rule. The default value is ``ENABLED`` . If the status is set to ``DISABLED`` , notifications aren't sent for the notification rule.
164
164
  :param tags: A list of tags to apply to this notification rule. Key names cannot start with " ``aws`` ".
165
- :param target_address:
165
+ :param target_address: The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.
166
166
  '''
167
167
  if __debug__:
168
168
  type_hints = typing.get_type_hints(_typecheckingstub__724996b7b605c1ccec7fc232a8e933db042d262c4932936112f67cf6c1086ace)
@@ -290,7 +290,7 @@ class CfnNotificationRule(
290
290
  def targets(
291
291
  self,
292
292
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnNotificationRule.TargetProperty"]]]:
293
- '''A list of Amazon Resource Names (ARNs) of Amazon Simple Notification Service topics and AWS Chatbot clients to associate with the notification rule.'''
293
+ '''A list of Amazon Resource Names (ARNs) of Amazon SNS topics and AWS Chatbot clients to associate with the notification rule.'''
294
294
  return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnNotificationRule.TargetProperty"]]], jsii.get(self, "targets"))
295
295
 
296
296
  @targets.setter
@@ -306,6 +306,7 @@ class CfnNotificationRule(
306
306
  @builtins.property
307
307
  @jsii.member(jsii_name="createdBy")
308
308
  def created_by(self) -> typing.Optional[builtins.str]:
309
+ '''The name or email alias of the person who created the notification rule.'''
309
310
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "createdBy"))
310
311
 
311
312
  @created_by.setter
@@ -318,6 +319,7 @@ class CfnNotificationRule(
318
319
  @builtins.property
319
320
  @jsii.member(jsii_name="eventTypeId")
320
321
  def event_type_id(self) -> typing.Optional[builtins.str]:
322
+ '''The event type associated with this notification rule.'''
321
323
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "eventTypeId"))
322
324
 
323
325
  @event_type_id.setter
@@ -359,6 +361,7 @@ class CfnNotificationRule(
359
361
  @builtins.property
360
362
  @jsii.member(jsii_name="targetAddress")
361
363
  def target_address(self) -> typing.Optional[builtins.str]:
364
+ '''The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.'''
362
365
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "targetAddress"))
363
366
 
364
367
  @target_address.setter
@@ -383,7 +386,7 @@ class CfnNotificationRule(
383
386
  '''Information about the AWS Chatbot topics or AWS Chatbot clients associated with a notification rule.
384
387
 
385
388
  :param target_address: The Amazon Resource Name (ARN) of the AWS Chatbot topic or AWS Chatbot client.
386
- :param target_type: The target type. Can be an Amazon Simple Notification Service topic or AWS Chatbot client. - Amazon Simple Notification Service topics are specified as ``SNS`` . - AWS Chatbot clients are specified as ``AWSChatbotSlack`` .
389
+ :param target_type: The target type. Can be an Amazon Simple Notification Service topic or AWS Chatbot client. - Amazon Simple Notification Service topics are specified as ``SNS`` . - AWS Chatbot clients are specified as ``AWSChatbotSlack`` . - AWS Chatbot clients for Microsoft Teams are specified as ``AWSChatbotMicrosoftTeams`` .
387
390
 
388
391
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestarnotifications-notificationrule-target.html
389
392
  :exampleMetadata: fixture=_generated
@@ -424,6 +427,7 @@ class CfnNotificationRule(
424
427
 
425
428
  - Amazon Simple Notification Service topics are specified as ``SNS`` .
426
429
  - AWS Chatbot clients are specified as ``AWSChatbotSlack`` .
430
+ - AWS Chatbot clients for Microsoft Teams are specified as ``AWSChatbotMicrosoftTeams`` .
427
431
 
428
432
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestarnotifications-notificationrule-target.html#cfn-codestarnotifications-notificationrule-target-targettype
429
433
  '''
@@ -480,12 +484,12 @@ class CfnNotificationRuleProps:
480
484
  :param event_type_ids: A list of event types associated with this notification rule. For a complete list of event types and IDs, see `Notification concepts <https://docs.aws.amazon.com/dtconsole/latest/userguide/concepts.html#concepts-api>`_ in the *Developer Tools Console User Guide* .
481
485
  :param name: The name for the notification rule. Notification rule names must be unique in your AWS account .
482
486
  :param resource: The Amazon Resource Name (ARN) of the resource to associate with the notification rule. Supported resources include pipelines in AWS CodePipeline , repositories in AWS CodeCommit , and build projects in AWS CodeBuild .
483
- :param targets: A list of Amazon Resource Names (ARNs) of Amazon Simple Notification Service topics and AWS Chatbot clients to associate with the notification rule.
484
- :param created_by:
485
- :param event_type_id:
487
+ :param targets: A list of Amazon Resource Names (ARNs) of Amazon SNS topics and AWS Chatbot clients to associate with the notification rule.
488
+ :param created_by: The name or email alias of the person who created the notification rule.
489
+ :param event_type_id: The event type associated with this notification rule. For a complete list of event types and IDs, see `Notification concepts <https://docs.aws.amazon.com/dtconsole/latest/userguide/concepts.html#concepts-api>`_ in the *Developer Tools Console User Guide* .
486
490
  :param status: The status of the notification rule. The default value is ``ENABLED`` . If the status is set to ``DISABLED`` , notifications aren't sent for the notification rule.
487
491
  :param tags: A list of tags to apply to this notification rule. Key names cannot start with " ``aws`` ".
488
- :param target_address:
492
+ :param target_address: The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.
489
493
 
490
494
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html
491
495
  :exampleMetadata: fixture=_generated
@@ -598,7 +602,7 @@ class CfnNotificationRuleProps:
598
602
  def targets(
599
603
  self,
600
604
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnNotificationRule.TargetProperty]]]:
601
- '''A list of Amazon Resource Names (ARNs) of Amazon Simple Notification Service topics and AWS Chatbot clients to associate with the notification rule.
605
+ '''A list of Amazon Resource Names (ARNs) of Amazon SNS topics and AWS Chatbot clients to associate with the notification rule.
602
606
 
603
607
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-targets
604
608
  '''
@@ -608,7 +612,8 @@ class CfnNotificationRuleProps:
608
612
 
609
613
  @builtins.property
610
614
  def created_by(self) -> typing.Optional[builtins.str]:
611
- '''
615
+ '''The name or email alias of the person who created the notification rule.
616
+
612
617
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-createdby
613
618
  '''
614
619
  result = self._values.get("created_by")
@@ -616,7 +621,10 @@ class CfnNotificationRuleProps:
616
621
 
617
622
  @builtins.property
618
623
  def event_type_id(self) -> typing.Optional[builtins.str]:
619
- '''
624
+ '''The event type associated with this notification rule.
625
+
626
+ For a complete list of event types and IDs, see `Notification concepts <https://docs.aws.amazon.com/dtconsole/latest/userguide/concepts.html#concepts-api>`_ in the *Developer Tools Console User Guide* .
627
+
620
628
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-eventtypeid
621
629
  '''
622
630
  result = self._values.get("event_type_id")
@@ -646,7 +654,8 @@ class CfnNotificationRuleProps:
646
654
 
647
655
  @builtins.property
648
656
  def target_address(self) -> typing.Optional[builtins.str]:
649
- '''
657
+ '''The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.
658
+
650
659
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html#cfn-codestarnotifications-notificationrule-targetaddress
651
660
  '''
652
661
  result = self._values.get("target_address")