aws-cdk-lib 2.129.0__py3-none-any.whl → 2.131.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 (75) hide show
  1. aws_cdk/__init__.py +41 -21
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.129.0.jsii.tgz → aws-cdk-lib@2.131.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +52 -11
  5. aws_cdk/aws_apigatewayv2_integrations/__init__.py +286 -0
  6. aws_cdk/aws_appconfig/__init__.py +13062 -2713
  7. aws_cdk/aws_applicationautoscaling/__init__.py +80 -123
  8. aws_cdk/aws_applicationinsights/__init__.py +48 -0
  9. aws_cdk/aws_apprunner/__init__.py +8 -1
  10. aws_cdk/aws_appstream/__init__.py +8 -1
  11. aws_cdk/aws_appsync/__init__.py +324 -103
  12. aws_cdk/aws_athena/__init__.py +8 -1
  13. aws_cdk/aws_b2bi/__init__.py +30 -4
  14. aws_cdk/aws_backup/__init__.py +80 -56
  15. aws_cdk/aws_bedrock/__init__.py +13 -1
  16. aws_cdk/aws_cleanrooms/__init__.py +37 -5
  17. aws_cdk/aws_cloudtrail/__init__.py +23 -1
  18. aws_cdk/aws_codebuild/__init__.py +8 -1
  19. aws_cdk/aws_codestarconnections/__init__.py +8 -1
  20. aws_cdk/aws_cognito/__init__.py +21 -21
  21. aws_cdk/aws_comprehend/__init__.py +8 -1
  22. aws_cdk/aws_connect/__init__.py +57 -8
  23. aws_cdk/aws_controltower/__init__.py +27 -7
  24. aws_cdk/aws_customerprofiles/__init__.py +136 -123
  25. aws_cdk/aws_datapipeline/__init__.py +19 -11
  26. aws_cdk/aws_datasync/__init__.py +8 -1
  27. aws_cdk/aws_datazone/__init__.py +9 -1
  28. aws_cdk/aws_dms/__init__.py +29 -4
  29. aws_cdk/aws_docdb/__init__.py +131 -5
  30. aws_cdk/aws_ec2/__init__.py +178 -65
  31. aws_cdk/aws_ecs/__init__.py +43 -51
  32. aws_cdk/aws_ecs_patterns/__init__.py +214 -0
  33. aws_cdk/aws_eks/__init__.py +44 -3
  34. aws_cdk/aws_elasticache/__init__.py +8 -1
  35. aws_cdk/aws_elasticloadbalancingv2/__init__.py +8 -1
  36. aws_cdk/aws_emr/__init__.py +8 -1
  37. aws_cdk/aws_entityresolution/__init__.py +23 -3
  38. aws_cdk/aws_events/__init__.py +12 -1
  39. aws_cdk/aws_fms/__init__.py +8 -1
  40. aws_cdk/aws_glue/__init__.py +18 -4
  41. aws_cdk/aws_healthimaging/__init__.py +9 -1
  42. aws_cdk/aws_inspectorv2/__init__.py +9 -1
  43. aws_cdk/aws_iot/__init__.py +29 -4
  44. aws_cdk/aws_ivs/__init__.py +8 -1
  45. aws_cdk/aws_kms/__init__.py +1 -1
  46. aws_cdk/aws_lambda/__init__.py +3 -5
  47. aws_cdk/aws_location/__init__.py +44 -6
  48. aws_cdk/aws_logs/__init__.py +22 -3
  49. aws_cdk/aws_macie/__init__.py +15 -2
  50. aws_cdk/aws_medialive/__init__.py +8 -1
  51. aws_cdk/aws_mediapackagev2/__init__.py +23 -3
  52. aws_cdk/aws_mediatailor/__init__.py +29 -4
  53. aws_cdk/aws_msk/__init__.py +8 -1
  54. aws_cdk/aws_neptunegraph/__init__.py +9 -1
  55. aws_cdk/aws_networkfirewall/__init__.py +8 -1
  56. aws_cdk/aws_opensearchservice/__init__.py +6 -3
  57. aws_cdk/aws_pcaconnectorad/__init__.py +23 -3
  58. aws_cdk/aws_pinpointemail/__init__.py +23 -3
  59. aws_cdk/aws_quicksight/__init__.py +37 -0
  60. aws_cdk/aws_rds/__init__.py +52 -9
  61. aws_cdk/aws_route53resolver/__init__.py +8 -1
  62. aws_cdk/aws_s3/__init__.py +29 -4
  63. aws_cdk/aws_sagemaker/__init__.py +19 -8
  64. aws_cdk/aws_securityhub/__init__.py +8 -1
  65. aws_cdk/aws_shield/__init__.py +16 -2
  66. aws_cdk/aws_workspacesthinclient/__init__.py +9 -1
  67. aws_cdk/aws_workspacesweb/__init__.py +51 -7
  68. aws_cdk/aws_xray/__init__.py +16 -2
  69. aws_cdk/pipelines/__init__.py +3 -2
  70. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/METADATA +1 -1
  71. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/NOTICE +30 -0
  72. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/RECORD +75 -75
  73. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/LICENSE +0 -0
  74. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/WHEEL +0 -0
  75. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/top_level.txt +0 -0
@@ -55,11 +55,13 @@ from .. import (
55
55
  CfnTag as _CfnTag_f6864754,
56
56
  IInspectable as _IInspectable_c2943556,
57
57
  IResolvable as _IResolvable_da3f097b,
58
+ ITaggableV2 as _ITaggableV2_4e6798f8,
59
+ TagManager as _TagManager_0a598cb3,
58
60
  TreeInspector as _TreeInspector_488e0dd5,
59
61
  )
60
62
 
61
63
 
62
- @jsii.implements(_IInspectable_c2943556)
64
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
63
65
  class CfnAnalysisTemplate(
64
66
  _CfnResource_9df397a6,
65
67
  metaclass=jsii.JSIIMeta,
@@ -242,6 +244,12 @@ class CfnAnalysisTemplate(
242
244
  '''
243
245
  return typing.cast(typing.List[builtins.str], jsii.get(self, "attrSchemaReferencedTables"))
244
246
 
247
+ @builtins.property
248
+ @jsii.member(jsii_name="cdkTagManager")
249
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
250
+ '''Tag Manager which manages the tags for this resource.'''
251
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
252
+
245
253
  @builtins.property
246
254
  @jsii.member(jsii_name="cfnProperties")
247
255
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -721,7 +729,7 @@ class CfnAnalysisTemplateProps:
721
729
  )
722
730
 
723
731
 
724
- @jsii.implements(_IInspectable_c2943556)
732
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
725
733
  class CfnCollaboration(
726
734
  _CfnResource_9df397a6,
727
735
  metaclass=jsii.JSIIMeta,
@@ -875,6 +883,12 @@ class CfnCollaboration(
875
883
  '''
876
884
  return typing.cast(builtins.str, jsii.get(self, "attrCollaborationIdentifier"))
877
885
 
886
+ @builtins.property
887
+ @jsii.member(jsii_name="cdkTagManager")
888
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
889
+ '''Tag Manager which manages the tags for this resource.'''
890
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
891
+
878
892
  @builtins.property
879
893
  @jsii.member(jsii_name="cfnProperties")
880
894
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -1589,7 +1603,7 @@ class CfnCollaborationProps:
1589
1603
  )
1590
1604
 
1591
1605
 
1592
- @jsii.implements(_IInspectable_c2943556)
1606
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
1593
1607
  class CfnConfiguredTable(
1594
1608
  _CfnResource_9df397a6,
1595
1609
  metaclass=jsii.JSIIMeta,
@@ -1757,6 +1771,12 @@ class CfnConfiguredTable(
1757
1771
  '''
1758
1772
  return typing.cast(builtins.str, jsii.get(self, "attrConfiguredTableIdentifier"))
1759
1773
 
1774
+ @builtins.property
1775
+ @jsii.member(jsii_name="cdkTagManager")
1776
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
1777
+ '''Tag Manager which manages the tags for this resource.'''
1778
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
1779
+
1760
1780
  @builtins.property
1761
1781
  @jsii.member(jsii_name="cfnProperties")
1762
1782
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -2830,7 +2850,7 @@ class CfnConfiguredTable(
2830
2850
  )
2831
2851
 
2832
2852
 
2833
- @jsii.implements(_IInspectable_c2943556)
2853
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
2834
2854
  class CfnConfiguredTableAssociation(
2835
2855
  _CfnResource_9df397a6,
2836
2856
  metaclass=jsii.JSIIMeta,
@@ -2954,6 +2974,12 @@ class CfnConfiguredTableAssociation(
2954
2974
  '''
2955
2975
  return typing.cast(builtins.str, jsii.get(self, "attrConfiguredTableAssociationIdentifier"))
2956
2976
 
2977
+ @builtins.property
2978
+ @jsii.member(jsii_name="cdkTagManager")
2979
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
2980
+ '''Tag Manager which manages the tags for this resource.'''
2981
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
2982
+
2957
2983
  @builtins.property
2958
2984
  @jsii.member(jsii_name="cfnProperties")
2959
2985
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -3398,7 +3424,7 @@ class CfnConfiguredTableProps:
3398
3424
  )
3399
3425
 
3400
3426
 
3401
- @jsii.implements(_IInspectable_c2943556)
3427
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
3402
3428
  class CfnMembership(
3403
3429
  _CfnResource_9df397a6,
3404
3430
  metaclass=jsii.JSIIMeta,
@@ -3555,6 +3581,12 @@ class CfnMembership(
3555
3581
  '''
3556
3582
  return typing.cast(builtins.str, jsii.get(self, "attrMembershipIdentifier"))
3557
3583
 
3584
+ @builtins.property
3585
+ @jsii.member(jsii_name="cdkTagManager")
3586
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
3587
+ '''Tag Manager which manages the tags for this resource.'''
3588
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
3589
+
3558
3590
  @builtins.property
3559
3591
  @jsii.member(jsii_name="cfnProperties")
3560
3592
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -4253,7 +4253,7 @@ class Trail(
4253
4253
  my_key_alias = kms.Alias.from_alias_name(self, "myKey", "alias/aws/s3")
4254
4254
  trail = cloudtrail.Trail(self, "myCloudTrail",
4255
4255
  send_to_cloud_watch_logs=True,
4256
- kms_key=my_key_alias
4256
+ encryption_key=my_key_alias
4257
4257
  )
4258
4258
  '''
4259
4259
 
@@ -4272,6 +4272,7 @@ class Trail(
4272
4272
  is_multi_region_trail: typing.Optional[builtins.bool] = None,
4273
4273
  is_organization_trail: typing.Optional[builtins.bool] = None,
4274
4274
  management_events: typing.Optional[ReadWriteType] = None,
4275
+ org_id: typing.Optional[builtins.str] = None,
4275
4276
  s3_key_prefix: typing.Optional[builtins.str] = None,
4276
4277
  send_to_cloud_watch_logs: typing.Optional[builtins.bool] = None,
4277
4278
  sns_topic: typing.Optional[_ITopic_9eca4852] = None,
@@ -4290,6 +4291,7 @@ class Trail(
4290
4291
  :param is_multi_region_trail: Whether or not this trail delivers log files from multiple regions to a single S3 bucket for a single account. Default: true
4291
4292
  :param is_organization_trail: Specifies whether the trail is applied to all accounts in an organization in AWS Organizations, or only for the current AWS account. If this is set to true then the current account *must* be the management account. If it is not, then CloudFormation will throw an error. If this is set to true and the current account is a management account for an organization in AWS Organizations, the trail will be created in all AWS accounts that belong to the organization. If this is set to false, the trail will remain in the current AWS account but be deleted from all member accounts in the organization. Default: - false
4292
4293
  :param management_events: When an event occurs in your account, CloudTrail evaluates whether the event matches the settings for your trails. Only events that match your trail settings are delivered to your Amazon S3 bucket and Amazon CloudWatch Logs log group. This method sets the management configuration for this trail. Management events provide insight into management operations that are performed on resources in your AWS account. These are also known as control plane operations. Management events can also include non-API events that occur in your account. For example, when a user logs in to your account, CloudTrail logs the ConsoleLogin event. Default: ReadWriteType.ALL
4294
+ :param org_id: The orgId. Required when ``isOrganizationTrail`` is set to true to attach the necessary permissions. Default: - No orgId
4293
4295
  :param s3_key_prefix: An Amazon S3 object key prefix that precedes the name of all log files. Default: - No prefix.
4294
4296
  :param send_to_cloud_watch_logs: If CloudTrail pushes logs to CloudWatch Logs in addition to S3. Disabled for cost out of the box. Default: false
4295
4297
  :param sns_topic: SNS topic that is notified when new log files are published. Default: - No notifications.
@@ -4310,6 +4312,7 @@ class Trail(
4310
4312
  is_multi_region_trail=is_multi_region_trail,
4311
4313
  is_organization_trail=is_organization_trail,
4312
4314
  management_events=management_events,
4315
+ org_id=org_id,
4313
4316
  s3_key_prefix=s3_key_prefix,
4314
4317
  send_to_cloud_watch_logs=send_to_cloud_watch_logs,
4315
4318
  sns_topic=sns_topic,
@@ -4559,6 +4562,7 @@ class Trail(
4559
4562
  "is_multi_region_trail": "isMultiRegionTrail",
4560
4563
  "is_organization_trail": "isOrganizationTrail",
4561
4564
  "management_events": "managementEvents",
4565
+ "org_id": "orgId",
4562
4566
  "s3_key_prefix": "s3KeyPrefix",
4563
4567
  "send_to_cloud_watch_logs": "sendToCloudWatchLogs",
4564
4568
  "sns_topic": "snsTopic",
@@ -4579,6 +4583,7 @@ class TrailProps:
4579
4583
  is_multi_region_trail: typing.Optional[builtins.bool] = None,
4580
4584
  is_organization_trail: typing.Optional[builtins.bool] = None,
4581
4585
  management_events: typing.Optional[ReadWriteType] = None,
4586
+ org_id: typing.Optional[builtins.str] = None,
4582
4587
  s3_key_prefix: typing.Optional[builtins.str] = None,
4583
4588
  send_to_cloud_watch_logs: typing.Optional[builtins.bool] = None,
4584
4589
  sns_topic: typing.Optional[_ITopic_9eca4852] = None,
@@ -4596,6 +4601,7 @@ class TrailProps:
4596
4601
  :param is_multi_region_trail: Whether or not this trail delivers log files from multiple regions to a single S3 bucket for a single account. Default: true
4597
4602
  :param is_organization_trail: Specifies whether the trail is applied to all accounts in an organization in AWS Organizations, or only for the current AWS account. If this is set to true then the current account *must* be the management account. If it is not, then CloudFormation will throw an error. If this is set to true and the current account is a management account for an organization in AWS Organizations, the trail will be created in all AWS accounts that belong to the organization. If this is set to false, the trail will remain in the current AWS account but be deleted from all member accounts in the organization. Default: - false
4598
4603
  :param management_events: When an event occurs in your account, CloudTrail evaluates whether the event matches the settings for your trails. Only events that match your trail settings are delivered to your Amazon S3 bucket and Amazon CloudWatch Logs log group. This method sets the management configuration for this trail. Management events provide insight into management operations that are performed on resources in your AWS account. These are also known as control plane operations. Management events can also include non-API events that occur in your account. For example, when a user logs in to your account, CloudTrail logs the ConsoleLogin event. Default: ReadWriteType.ALL
4604
+ :param org_id: The orgId. Required when ``isOrganizationTrail`` is set to true to attach the necessary permissions. Default: - No orgId
4599
4605
  :param s3_key_prefix: An Amazon S3 object key prefix that precedes the name of all log files. Default: - No prefix.
4600
4606
  :param send_to_cloud_watch_logs: If CloudTrail pushes logs to CloudWatch Logs in addition to S3. Disabled for cost out of the box. Default: false
4601
4607
  :param sns_topic: SNS topic that is notified when new log files are published. Default: - No notifications.
@@ -4622,6 +4628,7 @@ class TrailProps:
4622
4628
  check_type(argname="argument is_multi_region_trail", value=is_multi_region_trail, expected_type=type_hints["is_multi_region_trail"])
4623
4629
  check_type(argname="argument is_organization_trail", value=is_organization_trail, expected_type=type_hints["is_organization_trail"])
4624
4630
  check_type(argname="argument management_events", value=management_events, expected_type=type_hints["management_events"])
4631
+ check_type(argname="argument org_id", value=org_id, expected_type=type_hints["org_id"])
4625
4632
  check_type(argname="argument s3_key_prefix", value=s3_key_prefix, expected_type=type_hints["s3_key_prefix"])
4626
4633
  check_type(argname="argument send_to_cloud_watch_logs", value=send_to_cloud_watch_logs, expected_type=type_hints["send_to_cloud_watch_logs"])
4627
4634
  check_type(argname="argument sns_topic", value=sns_topic, expected_type=type_hints["sns_topic"])
@@ -4647,6 +4654,8 @@ class TrailProps:
4647
4654
  self._values["is_organization_trail"] = is_organization_trail
4648
4655
  if management_events is not None:
4649
4656
  self._values["management_events"] = management_events
4657
+ if org_id is not None:
4658
+ self._values["org_id"] = org_id
4650
4659
  if s3_key_prefix is not None:
4651
4660
  self._values["s3_key_prefix"] = s3_key_prefix
4652
4661
  if send_to_cloud_watch_logs is not None:
@@ -4771,6 +4780,17 @@ class TrailProps:
4771
4780
  result = self._values.get("management_events")
4772
4781
  return typing.cast(typing.Optional[ReadWriteType], result)
4773
4782
 
4783
+ @builtins.property
4784
+ def org_id(self) -> typing.Optional[builtins.str]:
4785
+ '''The orgId.
4786
+
4787
+ Required when ``isOrganizationTrail`` is set to true to attach the necessary permissions.
4788
+
4789
+ :default: - No orgId
4790
+ '''
4791
+ result = self._values.get("org_id")
4792
+ return typing.cast(typing.Optional[builtins.str], result)
4793
+
4774
4794
  @builtins.property
4775
4795
  def s3_key_prefix(self) -> typing.Optional[builtins.str]:
4776
4796
  '''An Amazon S3 object key prefix that precedes the name of all log files.
@@ -5355,6 +5375,7 @@ def _typecheckingstub__7b48a378f80b4a1726c79900e866bb932a0819e2b9124d6c5818259bf
5355
5375
  is_multi_region_trail: typing.Optional[builtins.bool] = None,
5356
5376
  is_organization_trail: typing.Optional[builtins.bool] = None,
5357
5377
  management_events: typing.Optional[ReadWriteType] = None,
5378
+ org_id: typing.Optional[builtins.str] = None,
5358
5379
  s3_key_prefix: typing.Optional[builtins.str] = None,
5359
5380
  send_to_cloud_watch_logs: typing.Optional[builtins.bool] = None,
5360
5381
  sns_topic: typing.Optional[_ITopic_9eca4852] = None,
@@ -5419,6 +5440,7 @@ def _typecheckingstub__c5ff27b267882181cdb7a08f4ac78fe9eaffb7f3b50db3ce4f2dc9ce9
5419
5440
  is_multi_region_trail: typing.Optional[builtins.bool] = None,
5420
5441
  is_organization_trail: typing.Optional[builtins.bool] = None,
5421
5442
  management_events: typing.Optional[ReadWriteType] = None,
5443
+ org_id: typing.Optional[builtins.str] = None,
5422
5444
  s3_key_prefix: typing.Optional[builtins.str] = None,
5423
5445
  send_to_cloud_watch_logs: typing.Optional[builtins.bool] = None,
5424
5446
  sns_topic: typing.Optional[_ITopic_9eca4852] = None,
@@ -909,6 +909,7 @@ from .. import (
909
909
  IResolvable as _IResolvable_da3f097b,
910
910
  IResource as _IResource_c80c4260,
911
911
  ITaggable as _ITaggable_36806126,
912
+ ITaggableV2 as _ITaggableV2_4e6798f8,
912
913
  IgnoreMode as _IgnoreMode_655a98e8,
913
914
  RemovalPolicy as _RemovalPolicy_9f93c814,
914
915
  Resource as _Resource_45bc6135,
@@ -1991,7 +1992,7 @@ class _CacheProxy(Cache):
1991
1992
  typing.cast(typing.Any, Cache).__jsii_proxy_class__ = lambda : _CacheProxy
1992
1993
 
1993
1994
 
1994
- @jsii.implements(_IInspectable_c2943556)
1995
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
1995
1996
  class CfnFleet(
1996
1997
  _CfnResource_9df397a6,
1997
1998
  metaclass=jsii.JSIIMeta,
@@ -2094,6 +2095,12 @@ class CfnFleet(
2094
2095
  '''
2095
2096
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
2096
2097
 
2098
+ @builtins.property
2099
+ @jsii.member(jsii_name="cdkTagManager")
2100
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
2101
+ '''Tag Manager which manages the tags for this resource.'''
2102
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
2103
+
2097
2104
  @builtins.property
2098
2105
  @jsii.member(jsii_name="cfnProperties")
2099
2106
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -45,6 +45,7 @@ from .. import (
45
45
  CfnTag as _CfnTag_f6864754,
46
46
  IInspectable as _IInspectable_c2943556,
47
47
  ITaggable as _ITaggable_36806126,
48
+ ITaggableV2 as _ITaggableV2_4e6798f8,
48
49
  TagManager as _TagManager_0a598cb3,
49
50
  TreeInspector as _TreeInspector_488e0dd5,
50
51
  )
@@ -355,7 +356,7 @@ class CfnConnectionProps:
355
356
  )
356
357
 
357
358
 
358
- @jsii.implements(_IInspectable_c2943556)
359
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
359
360
  class CfnRepositoryLink(
360
361
  _CfnResource_9df397a6,
361
362
  metaclass=jsii.JSIIMeta,
@@ -478,6 +479,12 @@ class CfnRepositoryLink(
478
479
  '''
479
480
  return typing.cast(builtins.str, jsii.get(self, "attrRepositoryLinkId"))
480
481
 
482
+ @builtins.property
483
+ @jsii.member(jsii_name="cdkTagManager")
484
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
485
+ '''Tag Manager which manages the tags for this resource.'''
486
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
487
+
481
488
  @builtins.property
482
489
  @jsii.member(jsii_name="cfnProperties")
483
490
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -17173,7 +17173,7 @@ class UserPoolIdentityProviderAmazon(
17173
17173
  metaclass=jsii.JSIIMeta,
17174
17174
  jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProviderAmazon",
17175
17175
  ):
17176
- '''Represents a identity provider that integrates with 'Login with Amazon'.
17176
+ '''Represents an identity provider that integrates with Login with Amazon.
17177
17177
 
17178
17178
  :resource: AWS::Cognito::UserPoolIdentityProvider
17179
17179
  :exampleMetadata: infused
@@ -17210,8 +17210,8 @@ class UserPoolIdentityProviderAmazon(
17210
17210
  '''
17211
17211
  :param scope: -
17212
17212
  :param id: -
17213
- :param client_id: The client id recognized by 'Login with Amazon' APIs.
17214
- :param client_secret: The client secret to be accompanied with clientId for 'Login with Amazon' APIs to authenticate the client.
17213
+ :param client_id: The client id recognized by Login with Amazon APIs.
17214
+ :param client_secret: The client secret to be accompanied with clientId for Login with Amazon APIs to authenticate the client.
17215
17215
  :param scopes: The types of user profile data to obtain for the Amazon profile. Default: [ profile ]
17216
17216
  :param user_pool: The user pool to which this construct provides identities.
17217
17217
  :param attribute_mapping: Mapping attributes from the identity provider to standard and custom attributes of the user pool. Default: - no attribute mapping
@@ -17247,7 +17247,7 @@ class UserPoolIdentityProviderApple(
17247
17247
  metaclass=jsii.JSIIMeta,
17248
17248
  jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProviderApple",
17249
17249
  ):
17250
- '''Represents a identity provider that integrates with 'Apple'.
17250
+ '''Represents an identity provider that integrates with Apple.
17251
17251
 
17252
17252
  :resource: AWS::Cognito::UserPoolIdentityProvider
17253
17253
  :exampleMetadata: fixture=_generated
@@ -17352,7 +17352,7 @@ class UserPoolIdentityProviderFacebook(
17352
17352
  metaclass=jsii.JSIIMeta,
17353
17353
  jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProviderFacebook",
17354
17354
  ):
17355
- '''Represents a identity provider that integrates with 'Facebook Login'.
17355
+ '''Represents an identity provider that integrates with Facebook Login.
17356
17356
 
17357
17357
  :resource: AWS::Cognito::UserPoolIdentityProvider
17358
17358
  :exampleMetadata: fixture=_generated
@@ -17415,9 +17415,9 @@ class UserPoolIdentityProviderFacebook(
17415
17415
  :param scope: -
17416
17416
  :param id: -
17417
17417
  :param client_id: The client id recognized by Facebook APIs.
17418
- :param client_secret: The client secret to be accompanied with clientUd for Facebook to authenticate the client.
17418
+ :param client_secret: The client secret to be accompanied with clientId for Facebook to authenticate the client.
17419
17419
  :param api_version: The Facebook API version to use. Default: - to the oldest version supported by Facebook
17420
- :param scopes: The list of facebook permissions to obtain for getting access to the Facebook profile. Default: [ public_profile ]
17420
+ :param scopes: The list of Facebook permissions to obtain for getting access to the Facebook profile. Default: [ public_profile ]
17421
17421
  :param user_pool: The user pool to which this construct provides identities.
17422
17422
  :param attribute_mapping: Mapping attributes from the identity provider to standard and custom attributes of the user pool. Default: - no attribute mapping
17423
17423
  '''
@@ -17453,7 +17453,7 @@ class UserPoolIdentityProviderGoogle(
17453
17453
  metaclass=jsii.JSIIMeta,
17454
17454
  jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProviderGoogle",
17455
17455
  ):
17456
- '''Represents a identity provider that integrates with 'Google'.
17456
+ '''Represents an identity provider that integrates with Google.
17457
17457
 
17458
17458
  :resource: AWS::Cognito::UserPoolIdentityProvider
17459
17459
  :exampleMetadata: infused
@@ -17490,7 +17490,7 @@ class UserPoolIdentityProviderGoogle(
17490
17490
  :param client_id: The client id recognized by Google APIs.
17491
17491
  :param client_secret: (deprecated) The client secret to be accompanied with clientId for Google APIs to authenticate the client. Default: none
17492
17492
  :param client_secret_value: The client secret to be accompanied with clientId for Google APIs to authenticate the client as SecretValue. Default: none
17493
- :param scopes: The list of google permissions to obtain for getting access to the google profile. Default: [ profile ]
17493
+ :param scopes: The list of Google permissions to obtain for getting access to the Google profile. Default: [ profile ]
17494
17494
  :param user_pool: The user pool to which this construct provides identities.
17495
17495
  :param attribute_mapping: Mapping attributes from the identity provider to standard and custom attributes of the user pool. Default: - no attribute mapping
17496
17496
  '''
@@ -17526,7 +17526,7 @@ class UserPoolIdentityProviderOidc(
17526
17526
  metaclass=jsii.JSIIMeta,
17527
17527
  jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProviderOidc",
17528
17528
  ):
17529
- '''Represents a identity provider that integrates with OpenID Connect.
17529
+ '''Represents an identity provider that integrates with OpenID Connect.
17530
17530
 
17531
17531
  :resource: AWS::Cognito::UserPoolIdentityProvider
17532
17532
  :exampleMetadata: fixture=_generated
@@ -17744,7 +17744,7 @@ class UserPoolIdentityProviderSaml(
17744
17744
  metaclass=jsii.JSIIMeta,
17745
17745
  jsii_type="aws-cdk-lib.aws_cognito.UserPoolIdentityProviderSaml",
17746
17746
  ):
17747
- '''Represents a identity provider that integrates with SAML.
17747
+ '''Represents an identity provider that integrates with SAML.
17748
17748
 
17749
17749
  :resource: AWS::Cognito::UserPoolIdentityProvider
17750
17750
  :exampleMetadata: fixture=_generated
@@ -19714,8 +19714,8 @@ class UserPoolIdentityProviderAmazonProps(UserPoolIdentityProviderProps):
19714
19714
 
19715
19715
  :param user_pool: The user pool to which this construct provides identities.
19716
19716
  :param attribute_mapping: Mapping attributes from the identity provider to standard and custom attributes of the user pool. Default: - no attribute mapping
19717
- :param client_id: The client id recognized by 'Login with Amazon' APIs.
19718
- :param client_secret: The client secret to be accompanied with clientId for 'Login with Amazon' APIs to authenticate the client.
19717
+ :param client_id: The client id recognized by Login with Amazon APIs.
19718
+ :param client_secret: The client secret to be accompanied with clientId for Login with Amazon APIs to authenticate the client.
19719
19719
  :param scopes: The types of user profile data to obtain for the Amazon profile. Default: [ profile ]
19720
19720
 
19721
19721
  :exampleMetadata: infused
@@ -19774,7 +19774,7 @@ class UserPoolIdentityProviderAmazonProps(UserPoolIdentityProviderProps):
19774
19774
 
19775
19775
  @builtins.property
19776
19776
  def client_id(self) -> builtins.str:
19777
- '''The client id recognized by 'Login with Amazon' APIs.
19777
+ '''The client id recognized by Login with Amazon APIs.
19778
19778
 
19779
19779
  :see: https://developer.amazon.com/docs/login-with-amazon/security-profile.html#client-identifier
19780
19780
  '''
@@ -19784,7 +19784,7 @@ class UserPoolIdentityProviderAmazonProps(UserPoolIdentityProviderProps):
19784
19784
 
19785
19785
  @builtins.property
19786
19786
  def client_secret(self) -> builtins.str:
19787
- '''The client secret to be accompanied with clientId for 'Login with Amazon' APIs to authenticate the client.
19787
+ '''The client secret to be accompanied with clientId for Login with Amazon APIs to authenticate the client.
19788
19788
 
19789
19789
  :see: https://developer.amazon.com/docs/login-with-amazon/security-profile.html#client-identifier
19790
19790
  '''
@@ -20015,9 +20015,9 @@ class UserPoolIdentityProviderFacebookProps(UserPoolIdentityProviderProps):
20015
20015
  :param user_pool: The user pool to which this construct provides identities.
20016
20016
  :param attribute_mapping: Mapping attributes from the identity provider to standard and custom attributes of the user pool. Default: - no attribute mapping
20017
20017
  :param client_id: The client id recognized by Facebook APIs.
20018
- :param client_secret: The client secret to be accompanied with clientUd for Facebook to authenticate the client.
20018
+ :param client_secret: The client secret to be accompanied with clientId for Facebook to authenticate the client.
20019
20019
  :param api_version: The Facebook API version to use. Default: - to the oldest version supported by Facebook
20020
- :param scopes: The list of facebook permissions to obtain for getting access to the Facebook profile. Default: [ public_profile ]
20020
+ :param scopes: The list of Facebook permissions to obtain for getting access to the Facebook profile. Default: [ public_profile ]
20021
20021
 
20022
20022
  :exampleMetadata: fixture=_generated
20023
20023
 
@@ -20109,7 +20109,7 @@ class UserPoolIdentityProviderFacebookProps(UserPoolIdentityProviderProps):
20109
20109
 
20110
20110
  @builtins.property
20111
20111
  def client_secret(self) -> builtins.str:
20112
- '''The client secret to be accompanied with clientUd for Facebook to authenticate the client.
20112
+ '''The client secret to be accompanied with clientId for Facebook to authenticate the client.
20113
20113
 
20114
20114
  :see: https://developers.facebook.com/docs/facebook-login/security#appsecret
20115
20115
  '''
@@ -20128,7 +20128,7 @@ class UserPoolIdentityProviderFacebookProps(UserPoolIdentityProviderProps):
20128
20128
 
20129
20129
  @builtins.property
20130
20130
  def scopes(self) -> typing.Optional[typing.List[builtins.str]]:
20131
- '''The list of facebook permissions to obtain for getting access to the Facebook profile.
20131
+ '''The list of Facebook permissions to obtain for getting access to the Facebook profile.
20132
20132
 
20133
20133
  :default: [ public_profile ]
20134
20134
 
@@ -20179,7 +20179,7 @@ class UserPoolIdentityProviderGoogleProps(UserPoolIdentityProviderProps):
20179
20179
  :param client_id: The client id recognized by Google APIs.
20180
20180
  :param client_secret: (deprecated) The client secret to be accompanied with clientId for Google APIs to authenticate the client. Default: none
20181
20181
  :param client_secret_value: The client secret to be accompanied with clientId for Google APIs to authenticate the client as SecretValue. Default: none
20182
- :param scopes: The list of google permissions to obtain for getting access to the google profile. Default: [ profile ]
20182
+ :param scopes: The list of Google permissions to obtain for getting access to the Google profile. Default: [ profile ]
20183
20183
 
20184
20184
  :exampleMetadata: infused
20185
20185
 
@@ -20272,7 +20272,7 @@ class UserPoolIdentityProviderGoogleProps(UserPoolIdentityProviderProps):
20272
20272
 
20273
20273
  @builtins.property
20274
20274
  def scopes(self) -> typing.Optional[typing.List[builtins.str]]:
20275
- '''The list of google permissions to obtain for getting access to the google profile.
20275
+ '''The list of Google permissions to obtain for getting access to the Google profile.
20276
20276
 
20277
20277
  :default: [ profile ]
20278
20278
 
@@ -46,12 +46,13 @@ from .. import (
46
46
  IInspectable as _IInspectable_c2943556,
47
47
  IResolvable as _IResolvable_da3f097b,
48
48
  ITaggable as _ITaggable_36806126,
49
+ ITaggableV2 as _ITaggableV2_4e6798f8,
49
50
  TagManager as _TagManager_0a598cb3,
50
51
  TreeInspector as _TreeInspector_488e0dd5,
51
52
  )
52
53
 
53
54
 
54
- @jsii.implements(_IInspectable_c2943556)
55
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
55
56
  class CfnDocumentClassifier(
56
57
  _CfnResource_9df397a6,
57
58
  metaclass=jsii.JSIIMeta,
@@ -218,6 +219,12 @@ class CfnDocumentClassifier(
218
219
  '''
219
220
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
220
221
 
222
+ @builtins.property
223
+ @jsii.member(jsii_name="cdkTagManager")
224
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
225
+ '''Tag Manager which manages the tags for this resource.'''
226
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
227
+
221
228
  @builtins.property
222
229
  @jsii.member(jsii_name="cfnProperties")
223
230
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -46,6 +46,7 @@ from .. import (
46
46
  IInspectable as _IInspectable_c2943556,
47
47
  IResolvable as _IResolvable_da3f097b,
48
48
  ITaggable as _ITaggable_36806126,
49
+ ITaggableV2 as _ITaggableV2_4e6798f8,
49
50
  TagManager as _TagManager_0a598cb3,
50
51
  TreeInspector as _TreeInspector_488e0dd5,
51
52
  )
@@ -3779,7 +3780,7 @@ class CfnHoursOfOperationProps:
3779
3780
  )
3780
3781
 
3781
3782
 
3782
- @jsii.implements(_IInspectable_c2943556)
3783
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
3783
3784
  class CfnInstance(
3784
3785
  _CfnResource_9df397a6,
3785
3786
  metaclass=jsii.JSIIMeta,
@@ -3936,6 +3937,12 @@ class CfnInstance(
3936
3937
  '''
3937
3938
  return typing.cast(builtins.str, jsii.get(self, "attrServiceRole"))
3938
3939
 
3940
+ @builtins.property
3941
+ @jsii.member(jsii_name="cdkTagManager")
3942
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
3943
+ '''Tag Manager which manages the tags for this resource.'''
3944
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
3945
+
3939
3946
  @builtins.property
3940
3947
  @jsii.member(jsii_name="cfnProperties")
3941
3948
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -6044,7 +6051,7 @@ class CfnPredefinedAttributeProps:
6044
6051
  )
6045
6052
 
6046
6053
 
6047
- @jsii.implements(_IInspectable_c2943556)
6054
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
6048
6055
  class CfnPrompt(
6049
6056
  _CfnResource_9df397a6,
6050
6057
  metaclass=jsii.JSIIMeta,
@@ -6149,6 +6156,12 @@ class CfnPrompt(
6149
6156
  '''
6150
6157
  return typing.cast(builtins.str, jsii.get(self, "attrPromptArn"))
6151
6158
 
6159
+ @builtins.property
6160
+ @jsii.member(jsii_name="cdkTagManager")
6161
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
6162
+ '''Tag Manager which manages the tags for this resource.'''
6163
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
6164
+
6152
6165
  @builtins.property
6153
6166
  @jsii.member(jsii_name="cfnProperties")
6154
6167
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -6352,7 +6365,7 @@ class CfnPromptProps:
6352
6365
  )
6353
6366
 
6354
6367
 
6355
- @jsii.implements(_IInspectable_c2943556)
6368
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
6356
6369
  class CfnQueue(
6357
6370
  _CfnResource_9df397a6,
6358
6371
  metaclass=jsii.JSIIMeta,
@@ -6486,6 +6499,12 @@ class CfnQueue(
6486
6499
  '''
6487
6500
  return typing.cast(builtins.str, jsii.get(self, "attrType"))
6488
6501
 
6502
+ @builtins.property
6503
+ @jsii.member(jsii_name="cdkTagManager")
6504
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
6505
+ '''Tag Manager which manages the tags for this resource.'''
6506
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
6507
+
6489
6508
  @builtins.property
6490
6509
  @jsii.member(jsii_name="cfnProperties")
6491
6510
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -7598,7 +7617,7 @@ class CfnQuickConnectProps:
7598
7617
  )
7599
7618
 
7600
7619
 
7601
- @jsii.implements(_IInspectable_c2943556)
7620
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
7602
7621
  class CfnRoutingProfile(
7603
7622
  _CfnResource_9df397a6,
7604
7623
  metaclass=jsii.JSIIMeta,
@@ -7730,6 +7749,12 @@ class CfnRoutingProfile(
7730
7749
  '''
7731
7750
  return typing.cast(builtins.str, jsii.get(self, "attrRoutingProfileArn"))
7732
7751
 
7752
+ @builtins.property
7753
+ @jsii.member(jsii_name="cdkTagManager")
7754
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
7755
+ '''Tag Manager which manages the tags for this resource.'''
7756
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
7757
+
7733
7758
  @builtins.property
7734
7759
  @jsii.member(jsii_name="cfnProperties")
7735
7760
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -10190,7 +10215,7 @@ class CfnSecurityKeyProps:
10190
10215
  )
10191
10216
 
10192
10217
 
10193
- @jsii.implements(_IInspectable_c2943556)
10218
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
10194
10219
  class CfnSecurityProfile(
10195
10220
  _CfnResource_9df397a6,
10196
10221
  metaclass=jsii.JSIIMeta,
@@ -10306,6 +10331,12 @@ class CfnSecurityProfile(
10306
10331
  '''
10307
10332
  return typing.cast(builtins.str, jsii.get(self, "attrSecurityProfileArn"))
10308
10333
 
10334
+ @builtins.property
10335
+ @jsii.member(jsii_name="cdkTagManager")
10336
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
10337
+ '''Tag Manager which manages the tags for this resource.'''
10338
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
10339
+
10309
10340
  @builtins.property
10310
10341
  @jsii.member(jsii_name="cfnProperties")
10311
10342
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -11635,7 +11666,7 @@ class CfnTaskTemplateProps:
11635
11666
  )
11636
11667
 
11637
11668
 
11638
- @jsii.implements(_IInspectable_c2943556)
11669
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
11639
11670
  class CfnTrafficDistributionGroup(
11640
11671
  _CfnResource_9df397a6,
11641
11672
  metaclass=jsii.JSIIMeta,
@@ -11751,6 +11782,12 @@ class CfnTrafficDistributionGroup(
11751
11782
  '''
11752
11783
  return typing.cast(builtins.str, jsii.get(self, "attrTrafficDistributionGroupArn"))
11753
11784
 
11785
+ @builtins.property
11786
+ @jsii.member(jsii_name="cdkTagManager")
11787
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
11788
+ '''Tag Manager which manages the tags for this resource.'''
11789
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
11790
+
11754
11791
  @builtins.property
11755
11792
  @jsii.member(jsii_name="cfnProperties")
11756
11793
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -12593,7 +12630,7 @@ class CfnUser(
12593
12630
  )
12594
12631
 
12595
12632
 
12596
- @jsii.implements(_IInspectable_c2943556)
12633
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
12597
12634
  class CfnUserHierarchyGroup(
12598
12635
  _CfnResource_9df397a6,
12599
12636
  metaclass=jsii.JSIIMeta,
@@ -12694,6 +12731,12 @@ class CfnUserHierarchyGroup(
12694
12731
  '''
12695
12732
  return typing.cast(builtins.str, jsii.get(self, "attrUserHierarchyGroupArn"))
12696
12733
 
12734
+ @builtins.property
12735
+ @jsii.member(jsii_name="cdkTagManager")
12736
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
12737
+ '''Tag Manager which manages the tags for this resource.'''
12738
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
12739
+
12697
12740
  @builtins.property
12698
12741
  @jsii.member(jsii_name="cfnProperties")
12699
12742
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -13111,7 +13154,7 @@ class CfnUserProps:
13111
13154
  )
13112
13155
 
13113
13156
 
13114
- @jsii.implements(_IInspectable_c2943556)
13157
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
13115
13158
  class CfnView(
13116
13159
  _CfnResource_9df397a6,
13117
13160
  metaclass=jsii.JSIIMeta,
@@ -13244,6 +13287,12 @@ class CfnView(
13244
13287
  '''
13245
13288
  return typing.cast(builtins.str, jsii.get(self, "attrViewId"))
13246
13289
 
13290
+ @builtins.property
13291
+ @jsii.member(jsii_name="cdkTagManager")
13292
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
13293
+ '''Tag Manager which manages the tags for this resource.'''
13294
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
13295
+
13247
13296
  @builtins.property
13248
13297
  @jsii.member(jsii_name="cfnProperties")
13249
13298
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]: