aws-cdk-lib 2.218.0__py3-none-any.whl → 2.220.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 (65) hide show
  1. aws_cdk/__init__.py +31 -36
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.220.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +98 -87
  5. aws_cdk/aws_apigateway/__init__.py +39 -0
  6. aws_cdk/aws_applicationsignals/__init__.py +450 -2
  7. aws_cdk/aws_arcregionswitch/__init__.py +8 -0
  8. aws_cdk/aws_backup/__init__.py +29 -0
  9. aws_cdk/aws_batch/__init__.py +109 -7
  10. aws_cdk/aws_bcmdataexports/__init__.py +9 -0
  11. aws_cdk/aws_bedrock/__init__.py +384 -1
  12. aws_cdk/aws_bedrockagentcore/__init__.py +7862 -1568
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +4 -0
  14. aws_cdk/aws_cloudfront_origins/__init__.py +87 -6
  15. aws_cdk/aws_cloudwatch/__init__.py +5 -5
  16. aws_cdk/aws_codebuild/__init__.py +339 -62
  17. aws_cdk/aws_cognito/__init__.py +6 -4
  18. aws_cdk/aws_connect/__init__.py +9 -9
  19. aws_cdk/aws_cur/__init__.py +5 -3
  20. aws_cdk/aws_datasync/__init__.py +44 -22
  21. aws_cdk/aws_datazone/__init__.py +35 -33
  22. aws_cdk/aws_dax/__init__.py +12 -3
  23. aws_cdk/aws_dms/__init__.py +3 -5
  24. aws_cdk/aws_ec2/__init__.py +2721 -30
  25. aws_cdk/aws_ecs/__init__.py +2900 -90
  26. aws_cdk/aws_eks/__init__.py +114 -9
  27. aws_cdk/aws_entityresolution/__init__.py +18 -0
  28. aws_cdk/aws_fsx/__init__.py +4 -4
  29. aws_cdk/aws_greengrassv2/__init__.py +29 -0
  30. aws_cdk/aws_imagebuilder/__init__.py +397 -0
  31. aws_cdk/aws_iotsitewise/__init__.py +136 -80
  32. aws_cdk/aws_kinesis/__init__.py +95 -4
  33. aws_cdk/aws_lambda/__init__.py +43 -0
  34. aws_cdk/aws_lightsail/__init__.py +584 -0
  35. aws_cdk/aws_logs/__init__.py +57 -0
  36. aws_cdk/aws_lookoutmetrics/__init__.py +14 -2
  37. aws_cdk/aws_m2/__init__.py +59 -13
  38. aws_cdk/aws_medialive/__init__.py +108 -0
  39. aws_cdk/aws_msk/__init__.py +4 -2
  40. aws_cdk/aws_mwaa/__init__.py +5 -5
  41. aws_cdk/aws_neptune/__init__.py +133 -70
  42. aws_cdk/aws_networkfirewall/__init__.py +6 -2
  43. aws_cdk/aws_networkmanager/__init__.py +29 -0
  44. aws_cdk/aws_observabilityadmin/__init__.py +1227 -83
  45. aws_cdk/aws_omics/__init__.py +7 -1
  46. aws_cdk/aws_opensearchservice/__init__.py +64 -0
  47. aws_cdk/aws_opsworkscm/__init__.py +0 -29
  48. aws_cdk/aws_pcs/__init__.py +224 -33
  49. aws_cdk/aws_pinpoint/__init__.py +58 -0
  50. aws_cdk/aws_quicksight/__init__.py +118 -0
  51. aws_cdk/aws_rds/__init__.py +62 -37
  52. aws_cdk/aws_refactorspaces/__init__.py +18 -6
  53. aws_cdk/aws_route53/__init__.py +138 -8
  54. aws_cdk/aws_s3/__init__.py +29 -2
  55. aws_cdk/aws_s3objectlambda/__init__.py +44 -12
  56. aws_cdk/aws_servicecatalog/__init__.py +103 -106
  57. aws_cdk/aws_smsvoice/__init__.py +319 -0
  58. aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
  59. aws_cdk/aws_synthetics/__init__.py +21 -1
  60. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/METADATA +2 -2
  61. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/RECORD +65 -65
  62. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/LICENSE +0 -0
  63. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/NOTICE +0 -0
  64. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/WHEEL +0 -0
  65. {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/top_level.txt +0 -0
@@ -1936,6 +1936,48 @@ class CfnConfigurationSet(
1936
1936
 
1937
1937
  jsii.create(self.__class__, self, [scope, id, props])
1938
1938
 
1939
+ @jsii.member(jsii_name="fromConfigurationSetArn")
1940
+ @builtins.classmethod
1941
+ def from_configuration_set_arn(
1942
+ cls,
1943
+ scope: _constructs_77d1e7e8.Construct,
1944
+ id: builtins.str,
1945
+ arn: builtins.str,
1946
+ ) -> IConfigurationSetRef:
1947
+ '''Creates a new IConfigurationSetRef from an ARN.
1948
+
1949
+ :param scope: -
1950
+ :param id: -
1951
+ :param arn: -
1952
+ '''
1953
+ if __debug__:
1954
+ type_hints = typing.get_type_hints(_typecheckingstub__bd09a8e0a95f96b6bf6ade58869d230ef8c16df306e2dba74636ef174182860e)
1955
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1956
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1957
+ check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
1958
+ return typing.cast(IConfigurationSetRef, jsii.sinvoke(cls, "fromConfigurationSetArn", [scope, id, arn]))
1959
+
1960
+ @jsii.member(jsii_name="fromConfigurationSetName")
1961
+ @builtins.classmethod
1962
+ def from_configuration_set_name(
1963
+ cls,
1964
+ scope: _constructs_77d1e7e8.Construct,
1965
+ id: builtins.str,
1966
+ configuration_set_name: builtins.str,
1967
+ ) -> IConfigurationSetRef:
1968
+ '''Creates a new IConfigurationSetRef from a configurationSetName.
1969
+
1970
+ :param scope: -
1971
+ :param id: -
1972
+ :param configuration_set_name: -
1973
+ '''
1974
+ if __debug__:
1975
+ type_hints = typing.get_type_hints(_typecheckingstub__b2808c7d63f3da460cc51d6d5193de4fa41ad6dd91676f0cdf055c67e7f58e61)
1976
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1977
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1978
+ check_type(argname="argument configuration_set_name", value=configuration_set_name, expected_type=type_hints["configuration_set_name"])
1979
+ return typing.cast(IConfigurationSetRef, jsii.sinvoke(cls, "fromConfigurationSetName", [scope, id, configuration_set_name]))
1980
+
1939
1981
  @jsii.member(jsii_name="inspect")
1940
1982
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
1941
1983
  '''Examines the CloudFormation resource and discloses attributes.
@@ -2495,6 +2537,48 @@ class CfnOptOutList(
2495
2537
 
2496
2538
  jsii.create(self.__class__, self, [scope, id, props])
2497
2539
 
2540
+ @jsii.member(jsii_name="fromOptOutListArn")
2541
+ @builtins.classmethod
2542
+ def from_opt_out_list_arn(
2543
+ cls,
2544
+ scope: _constructs_77d1e7e8.Construct,
2545
+ id: builtins.str,
2546
+ arn: builtins.str,
2547
+ ) -> IOptOutListRef:
2548
+ '''Creates a new IOptOutListRef from an ARN.
2549
+
2550
+ :param scope: -
2551
+ :param id: -
2552
+ :param arn: -
2553
+ '''
2554
+ if __debug__:
2555
+ type_hints = typing.get_type_hints(_typecheckingstub__124a7f8a72ebe536ef9b7171326a8506b93040fca900f1f72574cfb0fcf6615a)
2556
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2557
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2558
+ check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
2559
+ return typing.cast(IOptOutListRef, jsii.sinvoke(cls, "fromOptOutListArn", [scope, id, arn]))
2560
+
2561
+ @jsii.member(jsii_name="fromOptOutListName")
2562
+ @builtins.classmethod
2563
+ def from_opt_out_list_name(
2564
+ cls,
2565
+ scope: _constructs_77d1e7e8.Construct,
2566
+ id: builtins.str,
2567
+ opt_out_list_name: builtins.str,
2568
+ ) -> IOptOutListRef:
2569
+ '''Creates a new IOptOutListRef from a optOutListName.
2570
+
2571
+ :param scope: -
2572
+ :param id: -
2573
+ :param opt_out_list_name: -
2574
+ '''
2575
+ if __debug__:
2576
+ type_hints = typing.get_type_hints(_typecheckingstub__622c503ac8ae593c9642ed89cd09ede46c174901d31e6df008c2338639830854)
2577
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2578
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2579
+ check_type(argname="argument opt_out_list_name", value=opt_out_list_name, expected_type=type_hints["opt_out_list_name"])
2580
+ return typing.cast(IOptOutListRef, jsii.sinvoke(cls, "fromOptOutListName", [scope, id, opt_out_list_name]))
2581
+
2498
2582
  @jsii.member(jsii_name="inspect")
2499
2583
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
2500
2584
  '''Examines the CloudFormation resource and discloses attributes.
@@ -2686,6 +2770,48 @@ class CfnPhoneNumber(
2686
2770
 
2687
2771
  jsii.create(self.__class__, self, [scope, id, props])
2688
2772
 
2773
+ @jsii.member(jsii_name="fromPhoneNumberArn")
2774
+ @builtins.classmethod
2775
+ def from_phone_number_arn(
2776
+ cls,
2777
+ scope: _constructs_77d1e7e8.Construct,
2778
+ id: builtins.str,
2779
+ arn: builtins.str,
2780
+ ) -> IPhoneNumberRef:
2781
+ '''Creates a new IPhoneNumberRef from an ARN.
2782
+
2783
+ :param scope: -
2784
+ :param id: -
2785
+ :param arn: -
2786
+ '''
2787
+ if __debug__:
2788
+ type_hints = typing.get_type_hints(_typecheckingstub__5dfc18d9f79d711e366b295b9bc0e833aa10566992f8cba470cdf07bb5e180e7)
2789
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2790
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2791
+ check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
2792
+ return typing.cast(IPhoneNumberRef, jsii.sinvoke(cls, "fromPhoneNumberArn", [scope, id, arn]))
2793
+
2794
+ @jsii.member(jsii_name="fromPhoneNumberId")
2795
+ @builtins.classmethod
2796
+ def from_phone_number_id(
2797
+ cls,
2798
+ scope: _constructs_77d1e7e8.Construct,
2799
+ id: builtins.str,
2800
+ phone_number_id: builtins.str,
2801
+ ) -> IPhoneNumberRef:
2802
+ '''Creates a new IPhoneNumberRef from a phoneNumberId.
2803
+
2804
+ :param scope: -
2805
+ :param id: -
2806
+ :param phone_number_id: -
2807
+ '''
2808
+ if __debug__:
2809
+ type_hints = typing.get_type_hints(_typecheckingstub__1f23d5045dfaa44877e6d3c4cb6efd3e609dbb687fa2b056b6a62d4ef75a4f62)
2810
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2811
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2812
+ check_type(argname="argument phone_number_id", value=phone_number_id, expected_type=type_hints["phone_number_id"])
2813
+ return typing.cast(IPhoneNumberRef, jsii.sinvoke(cls, "fromPhoneNumberId", [scope, id, phone_number_id]))
2814
+
2689
2815
  @jsii.member(jsii_name="inspect")
2690
2816
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
2691
2817
  '''Examines the CloudFormation resource and discloses attributes.
@@ -3342,6 +3468,48 @@ class CfnPool(
3342
3468
 
3343
3469
  jsii.create(self.__class__, self, [scope, id, props])
3344
3470
 
3471
+ @jsii.member(jsii_name="fromPoolArn")
3472
+ @builtins.classmethod
3473
+ def from_pool_arn(
3474
+ cls,
3475
+ scope: _constructs_77d1e7e8.Construct,
3476
+ id: builtins.str,
3477
+ arn: builtins.str,
3478
+ ) -> IPoolRef:
3479
+ '''Creates a new IPoolRef from an ARN.
3480
+
3481
+ :param scope: -
3482
+ :param id: -
3483
+ :param arn: -
3484
+ '''
3485
+ if __debug__:
3486
+ type_hints = typing.get_type_hints(_typecheckingstub__44b74b415a2e8fb8ef92df3df07db6ad2cc85726f2444e9b9d644550e1c607ba)
3487
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
3488
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3489
+ check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
3490
+ return typing.cast(IPoolRef, jsii.sinvoke(cls, "fromPoolArn", [scope, id, arn]))
3491
+
3492
+ @jsii.member(jsii_name="fromPoolId")
3493
+ @builtins.classmethod
3494
+ def from_pool_id(
3495
+ cls,
3496
+ scope: _constructs_77d1e7e8.Construct,
3497
+ id: builtins.str,
3498
+ pool_id: builtins.str,
3499
+ ) -> IPoolRef:
3500
+ '''Creates a new IPoolRef from a poolId.
3501
+
3502
+ :param scope: -
3503
+ :param id: -
3504
+ :param pool_id: -
3505
+ '''
3506
+ if __debug__:
3507
+ type_hints = typing.get_type_hints(_typecheckingstub__5ce42e7a80b4b0868c7483a5f4ddc88ae813c01332c1d0dba0f0e1977d2a9e8f)
3508
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
3509
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3510
+ check_type(argname="argument pool_id", value=pool_id, expected_type=type_hints["pool_id"])
3511
+ return typing.cast(IPoolRef, jsii.sinvoke(cls, "fromPoolId", [scope, id, pool_id]))
3512
+
3345
3513
  @jsii.member(jsii_name="inspect")
3346
3514
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
3347
3515
  '''Examines the CloudFormation resource and discloses attributes.
@@ -3947,6 +4115,48 @@ class CfnProtectConfiguration(
3947
4115
 
3948
4116
  jsii.create(self.__class__, self, [scope, id, props])
3949
4117
 
4118
+ @jsii.member(jsii_name="fromProtectConfigurationArn")
4119
+ @builtins.classmethod
4120
+ def from_protect_configuration_arn(
4121
+ cls,
4122
+ scope: _constructs_77d1e7e8.Construct,
4123
+ id: builtins.str,
4124
+ arn: builtins.str,
4125
+ ) -> IProtectConfigurationRef:
4126
+ '''Creates a new IProtectConfigurationRef from an ARN.
4127
+
4128
+ :param scope: -
4129
+ :param id: -
4130
+ :param arn: -
4131
+ '''
4132
+ if __debug__:
4133
+ type_hints = typing.get_type_hints(_typecheckingstub__30a9d4af727d92ea133d23d5c13cb27130f80d90393dc02c481aa8e3278db26b)
4134
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
4135
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
4136
+ check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
4137
+ return typing.cast(IProtectConfigurationRef, jsii.sinvoke(cls, "fromProtectConfigurationArn", [scope, id, arn]))
4138
+
4139
+ @jsii.member(jsii_name="fromProtectConfigurationId")
4140
+ @builtins.classmethod
4141
+ def from_protect_configuration_id(
4142
+ cls,
4143
+ scope: _constructs_77d1e7e8.Construct,
4144
+ id: builtins.str,
4145
+ protect_configuration_id: builtins.str,
4146
+ ) -> IProtectConfigurationRef:
4147
+ '''Creates a new IProtectConfigurationRef from a protectConfigurationId.
4148
+
4149
+ :param scope: -
4150
+ :param id: -
4151
+ :param protect_configuration_id: -
4152
+ '''
4153
+ if __debug__:
4154
+ type_hints = typing.get_type_hints(_typecheckingstub__fa99a78e7c983e2ce15b9de8f681c35d2e97ff106cdb14797363208ff8fa2678)
4155
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
4156
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
4157
+ check_type(argname="argument protect_configuration_id", value=protect_configuration_id, expected_type=type_hints["protect_configuration_id"])
4158
+ return typing.cast(IProtectConfigurationRef, jsii.sinvoke(cls, "fromProtectConfigurationId", [scope, id, protect_configuration_id]))
4159
+
3950
4160
  @jsii.member(jsii_name="inspect")
3951
4161
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
3952
4162
  '''Examines the CloudFormation resource and discloses attributes.
@@ -4426,6 +4636,27 @@ class CfnSenderId(
4426
4636
 
4427
4637
  jsii.create(self.__class__, self, [scope, id, props])
4428
4638
 
4639
+ @jsii.member(jsii_name="fromSenderIdArn")
4640
+ @builtins.classmethod
4641
+ def from_sender_id_arn(
4642
+ cls,
4643
+ scope: _constructs_77d1e7e8.Construct,
4644
+ id: builtins.str,
4645
+ arn: builtins.str,
4646
+ ) -> ISenderIdRef:
4647
+ '''Creates a new ISenderIdRef from an ARN.
4648
+
4649
+ :param scope: -
4650
+ :param id: -
4651
+ :param arn: -
4652
+ '''
4653
+ if __debug__:
4654
+ type_hints = typing.get_type_hints(_typecheckingstub__0ed9f9558b69ae7c6d0f56f6f39794502d3498877fe17676f324c53d33940707)
4655
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
4656
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
4657
+ check_type(argname="argument arn", value=arn, expected_type=type_hints["arn"])
4658
+ return typing.cast(ISenderIdRef, jsii.sinvoke(cls, "fromSenderIdArn", [scope, id, arn]))
4659
+
4429
4660
  @jsii.member(jsii_name="inspect")
4430
4661
  def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
4431
4662
  '''Examines the CloudFormation resource and discloses attributes.
@@ -4721,6 +4952,22 @@ def _typecheckingstub__40dfc64df6dc2c0a72f2a15a90352d0f45df52177e2673d853e93c45f
4721
4952
  """Type checking stubs"""
4722
4953
  pass
4723
4954
 
4955
+ def _typecheckingstub__bd09a8e0a95f96b6bf6ade58869d230ef8c16df306e2dba74636ef174182860e(
4956
+ scope: _constructs_77d1e7e8.Construct,
4957
+ id: builtins.str,
4958
+ arn: builtins.str,
4959
+ ) -> None:
4960
+ """Type checking stubs"""
4961
+ pass
4962
+
4963
+ def _typecheckingstub__b2808c7d63f3da460cc51d6d5193de4fa41ad6dd91676f0cdf055c67e7f58e61(
4964
+ scope: _constructs_77d1e7e8.Construct,
4965
+ id: builtins.str,
4966
+ configuration_set_name: builtins.str,
4967
+ ) -> None:
4968
+ """Type checking stubs"""
4969
+ pass
4970
+
4724
4971
  def _typecheckingstub__0b8914b55c8c9175cb9d85ebbc19bd9b2ce8ee1fa9391da5cfe4b1d45d0285f4(
4725
4972
  inspector: _TreeInspector_488e0dd5,
4726
4973
  ) -> None:
@@ -4814,6 +5061,22 @@ def _typecheckingstub__ea38a41fadafddeabec02441f39c67873aa2e47aa1a61c10bd3923050
4814
5061
  """Type checking stubs"""
4815
5062
  pass
4816
5063
 
5064
+ def _typecheckingstub__124a7f8a72ebe536ef9b7171326a8506b93040fca900f1f72574cfb0fcf6615a(
5065
+ scope: _constructs_77d1e7e8.Construct,
5066
+ id: builtins.str,
5067
+ arn: builtins.str,
5068
+ ) -> None:
5069
+ """Type checking stubs"""
5070
+ pass
5071
+
5072
+ def _typecheckingstub__622c503ac8ae593c9642ed89cd09ede46c174901d31e6df008c2338639830854(
5073
+ scope: _constructs_77d1e7e8.Construct,
5074
+ id: builtins.str,
5075
+ opt_out_list_name: builtins.str,
5076
+ ) -> None:
5077
+ """Type checking stubs"""
5078
+ pass
5079
+
4817
5080
  def _typecheckingstub__5630a2d0159373226ec89552708a8f793a351be99f553dcc655511073c80a14d(
4818
5081
  inspector: _TreeInspector_488e0dd5,
4819
5082
  ) -> None:
@@ -4856,6 +5119,22 @@ def _typecheckingstub__32252c96682ee51fe1d1c58cae6b6350f48d46d59b1d32994ea664019
4856
5119
  """Type checking stubs"""
4857
5120
  pass
4858
5121
 
5122
+ def _typecheckingstub__5dfc18d9f79d711e366b295b9bc0e833aa10566992f8cba470cdf07bb5e180e7(
5123
+ scope: _constructs_77d1e7e8.Construct,
5124
+ id: builtins.str,
5125
+ arn: builtins.str,
5126
+ ) -> None:
5127
+ """Type checking stubs"""
5128
+ pass
5129
+
5130
+ def _typecheckingstub__1f23d5045dfaa44877e6d3c4cb6efd3e609dbb687fa2b056b6a62d4ef75a4f62(
5131
+ scope: _constructs_77d1e7e8.Construct,
5132
+ id: builtins.str,
5133
+ phone_number_id: builtins.str,
5134
+ ) -> None:
5135
+ """Type checking stubs"""
5136
+ pass
5137
+
4859
5138
  def _typecheckingstub__3790bd7e3f6d7b04591d9b408e55b3ef461fabc7e864e5952080929d0ba44a15(
4860
5139
  inspector: _TreeInspector_488e0dd5,
4861
5140
  ) -> None:
@@ -4978,6 +5257,22 @@ def _typecheckingstub__59ec152307c1b9f9d8e2674741d58c16f421e0af6e557203e2d5863f8
4978
5257
  """Type checking stubs"""
4979
5258
  pass
4980
5259
 
5260
+ def _typecheckingstub__44b74b415a2e8fb8ef92df3df07db6ad2cc85726f2444e9b9d644550e1c607ba(
5261
+ scope: _constructs_77d1e7e8.Construct,
5262
+ id: builtins.str,
5263
+ arn: builtins.str,
5264
+ ) -> None:
5265
+ """Type checking stubs"""
5266
+ pass
5267
+
5268
+ def _typecheckingstub__5ce42e7a80b4b0868c7483a5f4ddc88ae813c01332c1d0dba0f0e1977d2a9e8f(
5269
+ scope: _constructs_77d1e7e8.Construct,
5270
+ id: builtins.str,
5271
+ pool_id: builtins.str,
5272
+ ) -> None:
5273
+ """Type checking stubs"""
5274
+ pass
5275
+
4981
5276
  def _typecheckingstub__646191d64123d913d9874d1256f9666fa44f2c2849e5f6977d435e871d608fea(
4982
5277
  inspector: _TreeInspector_488e0dd5,
4983
5278
  ) -> None:
@@ -5088,6 +5383,22 @@ def _typecheckingstub__3395de3209762a050f467d1fe0a98e4e81c55a9fa41d448e97b764225
5088
5383
  """Type checking stubs"""
5089
5384
  pass
5090
5385
 
5386
+ def _typecheckingstub__30a9d4af727d92ea133d23d5c13cb27130f80d90393dc02c481aa8e3278db26b(
5387
+ scope: _constructs_77d1e7e8.Construct,
5388
+ id: builtins.str,
5389
+ arn: builtins.str,
5390
+ ) -> None:
5391
+ """Type checking stubs"""
5392
+ pass
5393
+
5394
+ def _typecheckingstub__fa99a78e7c983e2ce15b9de8f681c35d2e97ff106cdb14797363208ff8fa2678(
5395
+ scope: _constructs_77d1e7e8.Construct,
5396
+ id: builtins.str,
5397
+ protect_configuration_id: builtins.str,
5398
+ ) -> None:
5399
+ """Type checking stubs"""
5400
+ pass
5401
+
5091
5402
  def _typecheckingstub__f6093fb47c5b0a611eabf40e86a7bee9346024756d80420e8a57fe0de5453a18(
5092
5403
  inspector: _TreeInspector_488e0dd5,
5093
5404
  ) -> None:
@@ -5181,6 +5492,14 @@ def _typecheckingstub__579e8861eeec43305720b40c1d4cd3b273ca5261f965f0fa1cc4ee0e0
5181
5492
  """Type checking stubs"""
5182
5493
  pass
5183
5494
 
5495
+ def _typecheckingstub__0ed9f9558b69ae7c6d0f56f6f39794502d3498877fe17676f324c53d33940707(
5496
+ scope: _constructs_77d1e7e8.Construct,
5497
+ id: builtins.str,
5498
+ arn: builtins.str,
5499
+ ) -> None:
5500
+ """Type checking stubs"""
5501
+ pass
5502
+
5184
5503
  def _typecheckingstub__824bd75372c0cb805352438204088f4be0bdaf1e2b369e61edb178255f394f92(
5185
5504
  inspector: _TreeInspector_488e0dd5,
5186
5505
  ) -> None:
@@ -538,7 +538,7 @@ class CfnConfigurationManager(
538
538
  ) -> None:
539
539
  '''The definition of a Quick Setup configuration.
540
540
 
541
- :param parameters: The parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. The following lists outline the parameters for each configuration type. - **AWS Config Recording (Type: AWS QuickSetupType-CFGRecording)** - - ``RecordAllResources`` - Description: (Optional) A boolean value that determines whether all supported resources are recorded. The default value is " ``true`` ". - ``ResourceTypesToRecord`` - Description: (Optional) A comma separated list of resource types you want to record. - ``RecordGlobalResourceTypes`` - Description: (Optional) A boolean value that determines whether global resources are recorded with all resource configurations. The default value is " ``false`` ". - ``GlobalResourceTypesRegion`` - Description: (Optional) Determines the AWS Region where global resources are recorded. - ``UseCustomBucket`` - Description: (Optional) A boolean value that determines whether a custom Amazon S3 bucket is used for delivery. The default value is " ``false`` ". - ``DeliveryBucketName`` - Description: (Optional) The name of the Amazon S3 bucket you want AWS Config to deliver configuration snapshots and configuration history files to. - ``DeliveryBucketPrefix`` - Description: (Optional) The key prefix you want to use in the custom Amazon S3 bucket. - ``NotificationOptions`` - Description: (Optional) Determines the notification configuration for the recorder. The valid values are ``NoStreaming`` , ``UseExistingTopic`` , and ``CreateTopic`` . The default value is ``NoStreaming`` . - ``CustomDeliveryTopicAccountId`` - Description: (Optional) The ID of the AWS account where the Amazon SNS topic you want to use for notifications resides. You must specify a value for this parameter if you use the ``UseExistingTopic`` notification option. - ``CustomDeliveryTopicName`` - Description: (Optional) The name of the Amazon SNS topic you want to use for notifications. You must specify a value for this parameter if you use the ``UseExistingTopic`` notification option. - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(7 days)`` , ``rate(1 days)`` , and ``none`` . The default value is " ``none`` ". - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) The ID of the root of your Organization. This configuration type doesn't currently support choosing specific OUs. The configuration will be deployed to all the OUs in the Organization. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Change Manager (Type: AWS QuickSetupType-SSMChangeMgr)** - - ``DelegatedAccountId`` - Description: (Required) The ID of the delegated administrator account. - ``JobFunction`` - Description: (Required) The name for the Change Manager job function. - ``PermissionType`` - Description: (Optional) Specifies whether you want to use default administrator permissions for the job function role, or provide a custom IAM policy. The valid values are ``CustomPermissions`` and ``AdminPermissions`` . The default value for the parameter is ``CustomerPermissions`` . - ``CustomPermissions`` - Description: (Optional) A JSON string containing the IAM policy you want your job function to use. You must provide a value for this parameter if you specify ``CustomPermissions`` for the ``PermissionType`` parameter. - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Conformance Packs (Type: AWS QuickSetupType-CFGCPacks)** - - ``DelegatedAccountId`` - Description: (Optional) The ID of the delegated administrator account. This parameter is required for Organization deployments. - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(14 days)`` , ``rate(2 days)`` , and ``none`` . The default value is " ``none`` ". - ``CPackNames`` - Description: (Required) A comma separated list of AWS Config conformance packs. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) The ID of the root of your Organization. This configuration type doesn't currently support choosing specific OUs. The configuration will be deployed to all the OUs in the Organization. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Default Host Management Configuration (Type: AWS QuickSetupType-DHMC)** - - ``UpdateSSMAgent`` - Description: (Optional) A boolean value that determines whether the SSM Agent is updated on the target instances every 2 weeks. The default value is " ``true`` ". - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **DevOps Guru (Type: AWS QuickSetupType-DevOpsGuru)** - - ``AnalyseAllResources`` - Description: (Optional) A boolean value that determines whether DevOps Guru analyzes all AWS CloudFormation stacks in the account. The default value is " ``false`` ". - ``EnableSnsNotifications`` - Description: (Optional) A boolean value that determines whether DevOps Guru sends notifications when an insight is created. The default value is " ``true`` ". - ``EnableSsmOpsItems`` - Description: (Optional) A boolean value that determines whether DevOps Guru creates an OpsCenter OpsItem when an insight is created. The default value is " ``true`` ". - ``EnableDriftRemediation`` - Description: (Optional) A boolean value that determines whether a drift remediation schedule is used. The default value is " ``false`` ". - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(14 days)`` , ``rate(1 days)`` , and ``none`` . The default value is " ``none`` ". - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Distributor (Type: AWS QuickSetupType-Distributor)** - - ``PackagesToInstall`` - Description: (Required) A comma separated list of packages you want to install on the target instances. The valid values are ``AWSEFSTools`` , ``AWSCWAgent`` , and ``AWSEC2LaunchAgent`` . - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(14 days)`` , ``rate(2 days)`` , and ``none`` . The default value is " ``rate(30 days)`` ". - ``IsPolicyAttachAllowed`` - Description: (Optional) A boolean value that determines whether Quick Setup attaches policies to instances profiles already associated with the target instances. The default value is " ``false`` ". - ``TargetType`` - Description: (Optional) Determines how instances are targeted for local account deployments. Don't specify a value for this parameter if you're deploying to OUs. The valid values are ``*`` , ``InstanceIds`` , ``ResourceGroups`` , and ``Tags`` . Use ``*`` to target all instances in the account. - ``TargetInstances`` - Description: (Optional) A comma separated list of instance IDs. You must provide a value for this parameter if you specify ``InstanceIds`` for the ``TargetType`` parameter. - ``TargetTagKey`` - Description: (Required) The tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``TargetTagValue`` - Description: (Required) The value of the tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``ResourceGroupName`` - Description: (Required) The name of the resource group associated with the instances you want to target. You must provide a value for this parameter if you specify ``ResourceGroups`` for the ``TargetType`` parameter. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Host Management (Type: AWS QuickSetupType-SSMHostMgmt)** - - ``UpdateSSMAgent`` - Description: (Optional) A boolean value that determines whether the SSM Agent is updated on the target instances every 2 weeks. The default value is " ``true`` ". - ``UpdateEc2LaunchAgent`` - Description: (Optional) A boolean value that determines whether the EC2 Launch agent is updated on the target instances every month. The default value is " ``false`` ". - ``CollectInventory`` - Description: (Optional) A boolean value that determines whether instance metadata is collected on the target instances every 30 minutes. The default value is " ``true`` ". - ``ScanInstances`` - Description: (Optional) A boolean value that determines whether the target instances are scanned daily for available patches. The default value is " ``true`` ". - ``InstallCloudWatchAgent`` - Description: (Optional) A boolean value that determines whether the Amazon CloudWatch agent is installed on the target instances. The default value is " ``false`` ". - ``UpdateCloudWatchAgent`` - Description: (Optional) A boolean value that determines whether the Amazon CloudWatch agent is updated on the target instances every month. The default value is " ``false`` ". - ``IsPolicyAttachAllowed`` - Description: (Optional) A boolean value that determines whether Quick Setup attaches policies to instances profiles already associated with the target instances. The default value is " ``false`` ". - ``TargetType`` - Description: (Optional) Determines how instances are targeted for local account deployments. Don't specify a value for this parameter if you're deploying to OUs. The valid values are ``*`` , ``InstanceIds`` , ``ResourceGroups`` , and ``Tags`` . Use ``*`` to target all instances in the account. - ``TargetInstances`` - Description: (Optional) A comma separated list of instance IDs. You must provide a value for this parameter if you specify ``InstanceIds`` for the ``TargetType`` parameter. - ``TargetTagKey`` - Description: (Optional) The tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``TargetTagValue`` - Description: (Optional) The value of the tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``ResourceGroupName`` - Description: (Optional) The name of the resource group associated with the instances you want to target. You must provide a value for this parameter if you specify ``ResourceGroups`` for the ``TargetType`` parameter. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **OpsCenter (Type: AWS QuickSetupType-SSMOpsCenter)** - - ``DelegatedAccountId`` - Description: (Required) The ID of the delegated administrator account. - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Patch Policy (Type: AWS QuickSetupType-PatchPolicy)** - - ``PatchPolicyName`` - Description: (Required) A name for the patch policy. The value you provide is applied to target Amazon EC2 instances as a tag. - ``SelectedPatchBaselines`` - Description: (Required) An array of JSON objects containing the information for the patch baselines to include in your patch policy. - ``PatchBaselineUseDefault`` - Description: (Optional) A value that determines whether the selected patch baselines are all AWS provided. Supported values are ``default`` and ``custom`` . - ``PatchBaselineRegion`` - Description: (Required) The AWS Region where the patch baseline exist. - ``ConfigurationOptionsPatchOperation`` - Description: (Optional) Determines whether target instances scan for available patches, or scan and install available patches. The valid values are ``Scan`` and ``ScanAndInstall`` . The default value for the parameter is ``Scan`` . - ``ConfigurationOptionsScanValue`` - Description: (Optional) A cron expression that is used as the schedule for when instances scan for available patches. - ``ConfigurationOptionsInstallValue`` - Description: (Optional) A cron expression that is used as the schedule for when instances install available patches. - ``ConfigurationOptionsScanNextInterval`` - Description: (Optional) A boolean value that determines whether instances should scan for available patches at the next cron interval. The default value is " ``false`` ". - ``ConfigurationOptionsInstallNextInterval`` - Description: (Optional) A boolean value that determines whether instances should scan for available patches at the next cron interval. The default value is " ``false`` ". - ``RebootOption`` - Description: (Optional) Determines whether instances are rebooted after patches are installed. Valid values are ``RebootIfNeeded`` and ``NoReboot`` . - ``IsPolicyAttachAllowed`` - Description: (Optional) A boolean value that determines whether Quick Setup attaches policies to instances profiles already associated with the target instances. The default value is " ``false`` ". - ``OutputLogEnableS3`` - Description: (Optional) A boolean value that determines whether command output logs are sent to Amazon S3. - ``OutputS3Location`` - Description: (Optional) Information about the Amazon S3 bucket where you want to store the output details of the request. - ``OutputBucketRegion`` - Description: (Optional) The AWS Region where the Amazon S3 bucket you want to deliver command output to is located. - ``OutputS3BucketName`` - Description: (Optional) The name of the Amazon S3 bucket you want to deliver command output to. - ``OutputS3KeyPrefix`` - Description: (Optional) The key prefix you want to use in the custom Amazon S3 bucket. - ``TargetType`` - Description: (Optional) Determines how instances are targeted for local account deployments. Don't specify a value for this parameter if you're deploying to OUs. The valid values are ``*`` , ``InstanceIds`` , ``ResourceGroups`` , and ``Tags`` . Use ``*`` to target all instances in the account. - ``TargetInstances`` - Description: (Optional) A comma separated list of instance IDs. You must provide a value for this parameter if you specify ``InstanceIds`` for the ``TargetType`` parameter. - ``TargetTagKey`` - Description: (Required) The tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``TargetTagValue`` - Description: (Required) The value of the tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``ResourceGroupName`` - Description: (Required) The name of the resource group associated with the instances you want to target. You must provide a value for this parameter if you specify ``ResourceGroups`` for the ``TargetType`` parameter. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Resource Explorer (Type: AWS QuickSetupType-ResourceExplorer)** - - ``SelectedAggregatorRegion`` - Description: (Required) The AWS Region where you want to create the aggregator index. - ``ReplaceExistingAggregator`` - Description: (Required) A boolean value that determines whether to demote an existing aggregator if it is in a Region that differs from the value you specify for the ``SelectedAggregatorRegion`` . - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Resource Scheduler (Type: AWS QuickSetupType-Scheduler)** - - ``TargetTagKey`` - Description: (Required) The tag key assigned to the instances you want to target. - ``TargetTagValue`` - Description: (Required) The value of the tag key assigned to the instances you want to target. - ``ICalendarString`` - Description: (Required) An iCalendar formatted string containing the schedule you want Change Manager to use. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to.
541
+ :param parameters: The parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. The following lists outline the parameters for each configuration type. - **AWS Config Recording (Type: AWS QuickSetupType-CFGRecording)** - - ``RecordAllResources`` - Description: (Optional) A boolean value that determines whether all supported resources are recorded. The default value is " ``true`` ". - ``ResourceTypesToRecord`` - Description: (Optional) A comma separated list of resource types you want to record. - ``RecordGlobalResourceTypes`` - Description: (Optional) A boolean value that determines whether global resources are recorded with all resource configurations. The default value is " ``false`` ". - ``GlobalResourceTypesRegion`` - Description: (Optional) Determines the AWS Region where global resources are recorded. - ``UseCustomBucket`` - Description: (Optional) A boolean value that determines whether a custom Amazon S3 bucket is used for delivery. The default value is " ``false`` ". - ``DeliveryBucketName`` - Description: (Optional) The name of the Amazon S3 bucket you want AWS Config to deliver configuration snapshots and configuration history files to. - ``DeliveryBucketPrefix`` - Description: (Optional) The key prefix you want to use in the custom Amazon S3 bucket. - ``NotificationOptions`` - Description: (Optional) Determines the notification configuration for the recorder. The valid values are ``NoStreaming`` , ``UseExistingTopic`` , and ``CreateTopic`` . The default value is ``NoStreaming`` . - ``CustomDeliveryTopicAccountId`` - Description: (Optional) The ID of the AWS account where the Amazon SNS topic you want to use for notifications resides. You must specify a value for this parameter if you use the ``UseExistingTopic`` notification option. - ``CustomDeliveryTopicName`` - Description: (Optional) The name of the Amazon SNS topic you want to use for notifications. You must specify a value for this parameter if you use the ``UseExistingTopic`` notification option. - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(7 days)`` , ``rate(1 days)`` , and ``none`` . The default value is " ``none`` ". - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) The ID of the root of your Organization. This configuration type doesn't currently support choosing specific OUs. The configuration will be deployed to all the OUs in the Organization. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Change Manager (Type: AWS QuickSetupType-SSMChangeMgr)** - - ``DelegatedAccountId`` - Description: (Required) The ID of the delegated administrator account. - ``JobFunction`` - Description: (Required) The name for the Change Manager job function. - ``PermissionType`` - Description: (Optional) Specifies whether you want to use default administrator permissions for the job function role, or provide a custom IAM policy. The valid values are ``CustomPermissions`` and ``AdminPermissions`` . The default value for the parameter is ``CustomerPermissions`` . - ``CustomPermissions`` - Description: (Optional) A JSON string containing the IAM policy you want your job function to use. You must provide a value for this parameter if you specify ``CustomPermissions`` for the ``PermissionType`` parameter. - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Conformance Packs (Type: AWS QuickSetupType-CFGCPacks)** - - ``DelegatedAccountId`` - Description: (Optional) The ID of the delegated administrator account. This parameter is required for Organization deployments. - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(14 days)`` , ``rate(2 days)`` , and ``none`` . The default value is " ``none`` ". - ``CPackNames`` - Description: (Required) A comma separated list of AWS Config conformance packs. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) The ID of the root of your Organization. This configuration type doesn't currently support choosing specific OUs. The configuration will be deployed to all the OUs in the Organization. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Default Host Management Configuration (Type: AWS QuickSetupType-DHMC)** - - ``UpdateSsmAgent`` - Description: (Optional) A boolean value that determines whether the SSM Agent is updated on the target instances every 2 weeks. The default value is " ``true`` ". - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **DevOps Guru (Type: AWS QuickSetupType-DevOpsGuru)** - - ``AnalyseAllResources`` - Description: (Optional) A boolean value that determines whether DevOps Guru analyzes all AWS CloudFormation stacks in the account. The default value is " ``false`` ". - ``EnableSnsNotifications`` - Description: (Optional) A boolean value that determines whether DevOps Guru sends notifications when an insight is created. The default value is " ``true`` ". - ``EnableSsmOpsItems`` - Description: (Optional) A boolean value that determines whether DevOps Guru creates an OpsCenter OpsItem when an insight is created. The default value is " ``true`` ". - ``EnableDriftRemediation`` - Description: (Optional) A boolean value that determines whether a drift remediation schedule is used. The default value is " ``false`` ". - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(14 days)`` , ``rate(1 days)`` , and ``none`` . The default value is " ``none`` ". - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Distributor (Type: AWS QuickSetupType-Distributor)** - - ``PackagesToInstall`` - Description: (Required) A comma separated list of packages you want to install on the target instances. The valid values are ``AWSEFSTools`` , ``AWSCWAgent`` , and ``AWSEC2LaunchAgent`` . - ``RemediationSchedule`` - Description: (Optional) A rate expression that defines the schedule for drift remediation. The valid values are ``rate(30 days)`` , ``rate(14 days)`` , ``rate(2 days)`` , and ``none`` . The default value is " ``rate(30 days)`` ". - ``IsPolicyAttachAllowed`` - Description: (Optional) A boolean value that determines whether Quick Setup attaches policies to instances profiles already associated with the target instances. The default value is " ``false`` ". - ``TargetType`` - Description: (Optional) Determines how instances are targeted for local account deployments. Don't specify a value for this parameter if you're deploying to OUs. The valid values are ``*`` , ``InstanceIds`` , ``ResourceGroups`` , and ``Tags`` . Use ``*`` to target all instances in the account. - ``TargetInstances`` - Description: (Optional) A comma separated list of instance IDs. You must provide a value for this parameter if you specify ``InstanceIds`` for the ``TargetType`` parameter. - ``TargetTagKey`` - Description: (Required) The tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``TargetTagValue`` - Description: (Required) The value of the tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``ResourceGroupName`` - Description: (Required) The name of the resource group associated with the instances you want to target. You must provide a value for this parameter if you specify ``ResourceGroups`` for the ``TargetType`` parameter. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Host Management (Type: AWS QuickSetupType-SSMHostMgmt)** - - ``UpdateSsmAgent`` - Description: (Optional) A boolean value that determines whether the SSM Agent is updated on the target instances every 2 weeks. The default value is " ``true`` ". - ``UpdateEc2LaunchAgent`` - Description: (Optional) A boolean value that determines whether the EC2 Launch agent is updated on the target instances every month. The default value is " ``false`` ". - ``CollectInventory`` - Description: (Optional) A boolean value that determines whether instance metadata is collected on the target instances every 30 minutes. The default value is " ``true`` ". - ``ScanInstances`` - Description: (Optional) A boolean value that determines whether the target instances are scanned daily for available patches. The default value is " ``true`` ". - ``InstallCloudWatchAgent`` - Description: (Optional) A boolean value that determines whether the Amazon CloudWatch agent is installed on the target instances. The default value is " ``false`` ". - ``UpdateCloudWatchAgent`` - Description: (Optional) A boolean value that determines whether the Amazon CloudWatch agent is updated on the target instances every month. The default value is " ``false`` ". - ``IsPolicyAttachAllowed`` - Description: (Optional) A boolean value that determines whether Quick Setup attaches policies to instances profiles already associated with the target instances. The default value is " ``false`` ". - ``TargetType`` - Description: (Optional) Determines how instances are targeted for local account deployments. Don't specify a value for this parameter if you're deploying to OUs. The valid values are ``*`` , ``InstanceIds`` , ``ResourceGroups`` , and ``Tags`` . Use ``*`` to target all instances in the account. - ``TargetInstances`` - Description: (Optional) A comma separated list of instance IDs. You must provide a value for this parameter if you specify ``InstanceIds`` for the ``TargetType`` parameter. - ``TargetTagKey`` - Description: (Optional) The tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``TargetTagValue`` - Description: (Optional) The value of the tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``ResourceGroupName`` - Description: (Optional) The name of the resource group associated with the instances you want to target. You must provide a value for this parameter if you specify ``ResourceGroups`` for the ``TargetType`` parameter. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **OpsCenter (Type: AWS QuickSetupType-SSMOpsCenter)** - - ``DelegatedAccountId`` - Description: (Required) The ID of the delegated administrator account. - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Patch Policy (Type: AWS QuickSetupType-PatchPolicy)** - - ``PatchPolicyName`` - Description: (Required) A name for the patch policy. The value you provide is applied to target Amazon EC2 instances as a tag. - ``SelectedPatchBaselines`` - Description: (Required) An array of JSON objects containing the information for the patch baselines to include in your patch policy. - ``PatchBaselineUseDefault`` - Description: (Optional) A value that determines whether the selected patch baselines are all AWS provided. Supported values are ``default`` and ``custom`` . - ``PatchBaselineRegion`` - Description: (Required) The AWS Region where the patch baseline exist. - ``ConfigurationOptionsPatchOperation`` - Description: (Optional) Determines whether target instances scan for available patches, or scan and install available patches. The valid values are ``Scan`` and ``ScanAndInstall`` . The default value for the parameter is ``Scan`` . - ``ConfigurationOptionsScanValue`` - Description: (Optional) A cron expression that is used as the schedule for when instances scan for available patches. - ``ConfigurationOptionsInstallValue`` - Description: (Optional) A cron expression that is used as the schedule for when instances install available patches. - ``ConfigurationOptionsScanNextInterval`` - Description: (Optional) A boolean value that determines whether instances should scan for available patches at the next cron interval. The default value is " ``false`` ". - ``ConfigurationOptionsInstallNextInterval`` - Description: (Optional) A boolean value that determines whether instances should scan for available patches at the next cron interval. The default value is " ``false`` ". - ``RebootOption`` - Description: (Optional) Determines whether instances are rebooted after patches are installed. Valid values are ``RebootIfNeeded`` and ``NoReboot`` . - ``IsPolicyAttachAllowed`` - Description: (Optional) A boolean value that determines whether Quick Setup attaches policies to instances profiles already associated with the target instances. The default value is " ``false`` ". - ``OutputLogEnableS3`` - Description: (Optional) A boolean value that determines whether command output logs are sent to Amazon S3. - ``OutputS3Location`` - Description: (Optional) Information about the Amazon S3 bucket where you want to store the output details of the request. - ``OutputBucketRegion`` - Description: (Optional) The AWS Region where the Amazon S3 bucket you want to deliver command output to is located. - ``OutputS3BucketName`` - Description: (Optional) The name of the Amazon S3 bucket you want to deliver command output to. - ``OutputS3KeyPrefix`` - Description: (Optional) The key prefix you want to use in the custom Amazon S3 bucket. - ``TargetType`` - Description: (Optional) Determines how instances are targeted for local account deployments. Don't specify a value for this parameter if you're deploying to OUs. The valid values are ``*`` , ``InstanceIds`` , ``ResourceGroups`` , and ``Tags`` . Use ``*`` to target all instances in the account. - ``TargetInstances`` - Description: (Optional) A comma separated list of instance IDs. You must provide a value for this parameter if you specify ``InstanceIds`` for the ``TargetType`` parameter. - ``TargetTagKey`` - Description: (Required) The tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``TargetTagValue`` - Description: (Required) The value of the tag key assigned to the instances you want to target. You must provide a value for this parameter if you specify ``Tags`` for the ``TargetType`` parameter. - ``ResourceGroupName`` - Description: (Required) The name of the resource group associated with the instances you want to target. You must provide a value for this parameter if you specify ``ResourceGroups`` for the ``TargetType`` parameter. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Resource Explorer (Type: AWS QuickSetupType-ResourceExplorer)** - - ``SelectedAggregatorRegion`` - Description: (Required) The AWS Region where you want to create the aggregator index. - ``ReplaceExistingAggregator`` - Description: (Required) A boolean value that determines whether to demote an existing aggregator if it is in a Region that differs from the value you specify for the ``SelectedAggregatorRegion`` . - ``TargetOrganizationalUnits`` - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to. - **Resource Scheduler (Type: AWS QuickSetupType-Scheduler)** - - ``TargetTagKey`` - Description: (Required) The tag key assigned to the instances you want to target. - ``TargetTagValue`` - Description: (Required) The value of the tag key assigned to the instances you want to target. - ``ICalendarString`` - Description: (Required) An iCalendar formatted string containing the schedule you want Change Manager to use. - ``TargetAccounts`` - Description: (Optional) The ID of the AWS account initiating the configuration deployment. You only need to provide a value for this parameter if you want to deploy the configuration locally. A value must be provided for either ``TargetAccounts`` or ``TargetOrganizationalUnits`` . - ``TargetOrganizationalUnits`` - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to. - ``TargetRegions`` - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to.
542
542
  :param type: The type of the Quick Setup configuration.
543
543
  :param id: The ID of the configuration definition.
544
544
  :param local_deployment_administration_role_arn: The ARN of the IAM role used to administrate local configuration deployments. .. epigraph:: Although this element is listed as "Required: No", a value can be omitted only for organizational deployments of types other than ``AWSQuickSetupType-PatchPolicy`` . A value must be provided when you are running an organizational deployment for a patch policy or running any type of deployment for a single account.
@@ -648,7 +648,7 @@ class CfnConfigurationManager(
648
648
  - Description: (Optional) The ID of the root of your Organization. This configuration type doesn't currently support choosing specific OUs. The configuration will be deployed to all the OUs in the Organization.
649
649
  - ``TargetRegions``
650
650
  - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to.
651
- - **Default Host Management Configuration (Type: AWS QuickSetupType-DHMC)** - - ``UpdateSSMAgent``
651
+ - **Default Host Management Configuration (Type: AWS QuickSetupType-DHMC)** - - ``UpdateSsmAgent``
652
652
  - Description: (Optional) A boolean value that determines whether the SSM Agent is updated on the target instances every 2 weeks. The default value is " ``true`` ".
653
653
  - ``TargetOrganizationalUnits``
654
654
  - Description: (Required) A comma separated list of organizational units (OUs) you want to deploy the configuration to.
@@ -692,7 +692,7 @@ class CfnConfigurationManager(
692
692
  - Description: (Optional) A comma separated list of organizational units (OUs) you want to deploy the configuration to.
693
693
  - ``TargetRegions``
694
694
  - Description: (Required) A comma separated list of AWS Regions you want to deploy the configuration to.
695
- - **Host Management (Type: AWS QuickSetupType-SSMHostMgmt)** - - ``UpdateSSMAgent``
695
+ - **Host Management (Type: AWS QuickSetupType-SSMHostMgmt)** - - ``UpdateSsmAgent``
696
696
  - Description: (Optional) A boolean value that determines whether the SSM Agent is updated on the target instances every 2 weeks. The default value is " ``true`` ".
697
697
  - ``UpdateEc2LaunchAgent``
698
698
  - Description: (Optional) A boolean value that determines whether the EC2 Launch agent is updated on the target instances every month. The default value is " ``false`` ".
@@ -268,7 +268,7 @@ synthetics.Canary(self, "Bucket Canary",
268
268
  ```
269
269
 
270
270
  > **Note:** Synthetics have a specified folder structure for canaries.
271
- > For Node with puppeteer scripts supplied via `code.fromAsset()` or `code.fromBucket()`, the canary resource requires the following folder structure:
271
+ > For Node with puppeteer scripts supplied via `code.fromAsset()` or `code.fromBucket()`, the canary resource requires the following folder structure for runtime versions older than `syn-nodejs-puppeteer-11.0`:
272
272
  >
273
273
  > ```plaintext
274
274
  > canary/
@@ -277,6 +277,26 @@ synthetics.Canary(self, "Bucket Canary",
277
277
  > ├── <filename>.js
278
278
  > ```
279
279
  >
280
+ > For puppeteer based runtime versions newer than or equal to `syn-nodejs-puppeteer-11.0`, `nodjs/node_modules` is not necessary but supported.
281
+ >
282
+ > Both
283
+ >
284
+ > ```plaintext
285
+ > canary/
286
+ > ├── nodejs/
287
+ > ├── node_modules/
288
+ > ├── <filename>.js
289
+ > ```
290
+ >
291
+ > And
292
+ >
293
+ > ```plaintext
294
+ > canary/
295
+ > ├── <filename>.js
296
+ > ```
297
+ >
298
+ > are supported.
299
+ >
280
300
  > For Node with playwright scripts supplied via `code.fromAsset()` or `code.fromBucket()`, the canary resource requires the following folder structure:
281
301
  >
282
302
  > ```plaintext
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.218.0
3
+ Version: 2.220.0
4
4
  Summary: Version 2 of the AWS Cloud Development Kit library
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -1051,7 +1051,7 @@ The properties passed to the level 2 constructs `AutoScalingGroup` and `Instance
1051
1051
  `aws-ec2` module abstract what is passed into the `CfnOption` properties `resourceSignal` and
1052
1052
  `autoScalingCreationPolicy`, but when using level 1 constructs you can specify these yourself.
1053
1053
 
1054
- The CfnWaitCondition resource from the `aws-cloudformation` module suppports the `resourceSignal`.
1054
+ The CfnWaitCondition resource from the `aws-cloudformation` module supports the `resourceSignal`.
1055
1055
  The format of the timeout is `PT#H#M#S`. In the example below AWS Cloudformation will wait for
1056
1056
  3 success signals to occur within 15 minutes before the status of the resource will be set to
1057
1057
  `CREATE_COMPLETE`.