aws-cdk-lib 2.210.0__py3-none-any.whl → 2.211.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 (57) hide show
  1. aws_cdk/__init__.py +6 -11
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.210.0.jsii.tgz → aws-cdk-lib@2.211.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +2 -1
  5. aws_cdk/aws_appconfig/__init__.py +9 -0
  6. aws_cdk/aws_arcregionswitch/__init__.py +4962 -0
  7. aws_cdk/aws_athena/__init__.py +23 -19
  8. aws_cdk/aws_autoscaling/__init__.py +6 -6
  9. aws_cdk/aws_batch/__init__.py +721 -51
  10. aws_cdk/aws_cassandra/__init__.py +28 -1
  11. aws_cdk/aws_cloudfront/__init__.py +20 -8
  12. aws_cdk/aws_cognito/__init__.py +9 -2
  13. aws_cdk/aws_datazone/__init__.py +118 -77
  14. aws_cdk/aws_dax/__init__.py +39 -0
  15. aws_cdk/aws_deadline/__init__.py +155 -7
  16. aws_cdk/aws_docdb/__init__.py +20 -11
  17. aws_cdk/aws_dynamodb/__init__.py +160 -20
  18. aws_cdk/aws_ec2/__init__.py +978 -256
  19. aws_cdk/aws_ecr/__init__.py +274 -0
  20. aws_cdk/aws_ecs/__init__.py +1642 -140
  21. aws_cdk/aws_eks/__init__.py +51 -3
  22. aws_cdk/aws_elasticloadbalancingv2/__init__.py +30 -16
  23. aws_cdk/aws_entityresolution/__init__.py +240 -45
  24. aws_cdk/aws_evs/__init__.py +20 -45
  25. aws_cdk/aws_iot/__init__.py +387 -0
  26. aws_cdk/aws_iotsitewise/__init__.py +1247 -139
  27. aws_cdk/aws_ivs/__init__.py +443 -33
  28. aws_cdk/aws_kinesisfirehose/__init__.py +2 -0
  29. aws_cdk/aws_lambda/__init__.py +3 -3
  30. aws_cdk/aws_lightsail/__init__.py +590 -0
  31. aws_cdk/aws_logs/__init__.py +97 -3
  32. aws_cdk/aws_medialive/__init__.py +270 -7
  33. aws_cdk/aws_mediapackagev2/__init__.py +204 -6
  34. aws_cdk/aws_neptune/__init__.py +41 -2
  35. aws_cdk/aws_networkfirewall/__init__.py +490 -134
  36. aws_cdk/aws_observabilityadmin/__init__.py +1468 -0
  37. aws_cdk/aws_opensearchserverless/__init__.py +2 -2
  38. aws_cdk/aws_opsworks/__init__.py +125 -125
  39. aws_cdk/aws_opsworkscm/__init__.py +1 -53
  40. aws_cdk/aws_pcs/__init__.py +36 -0
  41. aws_cdk/aws_qbusiness/__init__.py +3 -3
  42. aws_cdk/aws_quicksight/__init__.py +107 -0
  43. aws_cdk/aws_rds/__init__.py +274 -0
  44. aws_cdk/aws_s3/__init__.py +56 -1
  45. aws_cdk/aws_s3express/__init__.py +52 -1
  46. aws_cdk/aws_sagemaker/__init__.py +4033 -218
  47. aws_cdk/aws_ses/__init__.py +172 -9
  48. aws_cdk/aws_ssm/__init__.py +8 -4
  49. aws_cdk/aws_verifiedpermissions/__init__.py +23 -2
  50. aws_cdk/aws_wisdom/__init__.py +2 -2
  51. aws_cdk/aws_workspacesweb/__init__.py +949 -157
  52. {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/METADATA +8 -8
  53. {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/RECORD +57 -55
  54. {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/LICENSE +0 -0
  55. {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/NOTICE +0 -0
  56. {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/WHEEL +0 -0
  57. {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.211.0.dist-info}/top_level.txt +0 -0
@@ -9629,7 +9629,7 @@ class CfnMessageTemplate(
9629
9629
  '''Information about the message template attachment.
9630
9630
 
9631
9631
  :param attachment_name: The name of the attachment file being uploaded. The name should include the file extension.
9632
- :param s3_presigned_url: The S3 Presigned URL for the attachment file. When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI (https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html).
9632
+ :param s3_presigned_url: The S3 Presigned URL for the attachment file. When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI. For more information, see `Sharing objects with presigned URLs <https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html>`_ .
9633
9633
  :param attachment_id: The identifier of the attachment file.
9634
9634
 
9635
9635
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplateattachment.html
@@ -9677,7 +9677,7 @@ class CfnMessageTemplate(
9677
9677
  def s3_presigned_url(self) -> builtins.str:
9678
9678
  '''The S3 Presigned URL for the attachment file.
9679
9679
 
9680
- When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI (https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html).
9680
+ When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI. For more information, see `Sharing objects with presigned URLs <https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html>`_ .
9681
9681
 
9682
9682
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplateattachment.html#cfn-wisdom-messagetemplate-messagetemplateattachment-s3presignedurl
9683
9683
  '''