aws-cdk-lib 2.218.0__py3-none-any.whl → 2.219.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.
- aws_cdk/__init__.py +19 -19
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.219.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +98 -87
- aws_cdk/aws_apigateway/__init__.py +39 -0
- aws_cdk/aws_bcmdataexports/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +356 -1
- aws_cdk/aws_bedrockagentcore/__init__.py +297 -157
- aws_cdk/aws_codebuild/__init__.py +339 -62
- aws_cdk/aws_connect/__init__.py +9 -9
- aws_cdk/aws_cur/__init__.py +5 -3
- aws_cdk/aws_datasync/__init__.py +44 -22
- aws_cdk/aws_datazone/__init__.py +35 -33
- aws_cdk/aws_directoryservice/__init__.py +0 -29
- aws_cdk/aws_dms/__init__.py +3 -5
- aws_cdk/aws_ec2/__init__.py +2622 -22
- aws_cdk/aws_ecs/__init__.py +2681 -79
- aws_cdk/aws_entityresolution/__init__.py +18 -0
- aws_cdk/aws_greengrassv2/__init__.py +29 -0
- aws_cdk/aws_msk/__init__.py +4 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -2
- aws_cdk/aws_networkmanager/__init__.py +29 -29
- aws_cdk/aws_opensearchservice/__init__.py +58 -0
- aws_cdk/aws_opsworkscm/__init__.py +0 -29
- aws_cdk/aws_quicksight/__init__.py +38 -0
- aws_cdk/aws_rds/__init__.py +33 -14
- aws_cdk/aws_route53/__init__.py +8 -2
- aws_cdk/aws_servicecatalog/__init__.py +78 -86
- aws_cdk/aws_smsvoice/__init__.py +319 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/RECORD +35 -35
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_smsvoice/__init__.py
CHANGED
|
@@ -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:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk-lib
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.219.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
|
|
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`.
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
aws_cdk/__init__.py,sha256=
|
|
1
|
+
aws_cdk/__init__.py,sha256=mdQTZPMh3r7gfSICRgaLnB4gqUGW1Rgb-y-mUE-ZDCc,2129904
|
|
2
2
|
aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/_jsii/__init__.py,sha256=
|
|
4
|
-
aws_cdk/_jsii/aws-cdk-lib@2.
|
|
3
|
+
aws_cdk/_jsii/__init__.py,sha256=F2qoTHS1nqO_MBexOogkthoxCE_EmlYmAVpi6bM7At8,1543
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.219.0.jsii.tgz,sha256=iebnX0ywz3yi9pJzuJnmtlAqtBVrm44KmnXHaTRgCZM,27414482
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=GVYojrJe4IQvZi2S_wKOCf-ePD2WYrtKAt9FET0GChU,39789
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=Fe7BZZpx5cUrxKtNdGbU4eXue79txDh_GqjfLV5wgCM,94355
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=8LUx5Kp2iub6oiLxvsouLOaKLHrGYrqDWfRQ7Atz5mU,79882
|
|
8
8
|
aws_cdk/aws_acmpca/__init__.py,sha256=6z7RyU69g-VTAHxL13zTrPshvtuH7WtFlyZPV1ZpU4E,355748
|
|
9
9
|
aws_cdk/aws_aiops/__init__.py,sha256=xHHLx_384mbkKT0bXOlipMrFjRg-76levr5WcgDQTPk,63705
|
|
10
|
-
aws_cdk/aws_amazonmq/__init__.py,sha256=
|
|
10
|
+
aws_cdk/aws_amazonmq/__init__.py,sha256=elYQhe55l-c1gvW4ZoE4-OsFZ1doHAE2GsV2LXpGKoQ,181653
|
|
11
11
|
aws_cdk/aws_amplify/__init__.py,sha256=ts9iBc5f4UtYRNZFTdpiDLez2xkpat2wm2KKgRabvE4,231915
|
|
12
12
|
aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=PUdY7C9ANnscTuWNkb1jlA-30RIei5z1nY6As82bFjw,446329
|
|
13
|
-
aws_cdk/aws_apigateway/__init__.py,sha256=
|
|
13
|
+
aws_cdk/aws_apigateway/__init__.py,sha256=n1qKlGSgOStvon-IWqwXEERqBOILdQH9vKGe7ItXrTk,2088015
|
|
14
14
|
aws_cdk/aws_apigatewayv2/__init__.py,sha256=4ZQauJIvjUMrlXOOoFeXtmVIj4yMP_UfikqdDR3_R2Y,1321839
|
|
15
15
|
aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=dlvfuPzC0x7irbpVRZRpVyLH4FihHnqGOwl9VUwRB5k,55670
|
|
16
16
|
aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=b49Ownun7jTBIQIjVCUCLKc277gyPzxb0QX_UM_RSGU,141317
|
|
@@ -38,9 +38,9 @@ aws_cdk/aws_b2bi/__init__.py,sha256=e_hrSvY2ls7k062TqQVYqW0wAMWXzgDk6w-5JVUu7dc,
|
|
|
38
38
|
aws_cdk/aws_backup/__init__.py,sha256=KlbNliTX7F5R9PKSnBOGyg9CKQ-nyRowVhkSp4bNv30,492981
|
|
39
39
|
aws_cdk/aws_backupgateway/__init__.py,sha256=b9fHIDh8gOn9_bUEpXoNGtFy1h03stxH6B8lOv7MfWA,28312
|
|
40
40
|
aws_cdk/aws_batch/__init__.py,sha256=CFmdJ4_qXb3Kby8pdiLSqu19xSpoeB7PvrGiqVyVWRU,1610487
|
|
41
|
-
aws_cdk/aws_bcmdataexports/__init__.py,sha256=
|
|
42
|
-
aws_cdk/aws_bedrock/__init__.py,sha256=
|
|
43
|
-
aws_cdk/aws_bedrockagentcore/__init__.py,sha256=
|
|
41
|
+
aws_cdk/aws_bcmdataexports/__init__.py,sha256=Sa5J4eMlzvL8NZpCodDrrw7Noi_owdGG6cGDsHuken4,59509
|
|
42
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=ZJM7IyCddSheKKOxApZp-vjcQhN9CMmC1NUbOC5UDD8,2374276
|
|
43
|
+
aws_cdk/aws_bedrockagentcore/__init__.py,sha256=78H11fHbjmhokElOpNo3s_1iXafW8FX8ceblNUmcpx0,153485
|
|
44
44
|
aws_cdk/aws_billingconductor/__init__.py,sha256=FGqnJ2t7rJflQxp0HVownxcxRZm9j_cmFRG0uycKSaU,158552
|
|
45
45
|
aws_cdk/aws_budgets/__init__.py,sha256=28XoRJhSyUQC_mClT4G-ypzfWibFuwxaOIwDmfCMGLw,201615
|
|
46
46
|
aws_cdk/aws_cassandra/__init__.py,sha256=Fx4V_aTKkwfHvUsm7pw6OlOF6sywKvj4YjhUbCvSwi8,195401
|
|
@@ -58,7 +58,7 @@ aws_cdk/aws_cloudtrail/__init__.py,sha256=DOTvlVSqs3NRGN5ra7StQ40JPh64HvWuPjWwmI
|
|
|
58
58
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=-s6DFOmSYngxf6jKaNG2CN6FAov8cT9eiusibVbVWHQ,947969
|
|
59
59
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=19aA4D-Vwk7ci0eEwBSJ0MjW55gaoL-uB9xHOR0Y6a4,25482
|
|
60
60
|
aws_cdk/aws_codeartifact/__init__.py,sha256=v9d5qJv_Nv-RL6apFlWjBuWK1cqBIteJgH7XiBeRAcE,97271
|
|
61
|
-
aws_cdk/aws_codebuild/__init__.py,sha256=
|
|
61
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=0dFznOJKDaYZgVGC83w-Ft0itF-4dDXQ77MktnOTTik,1184227
|
|
62
62
|
aws_cdk/aws_codecommit/__init__.py,sha256=0EIC2kBfjdgO4ZH2LK2HwBijbrCGi9wCzKgdSgzS7t8,242674
|
|
63
63
|
aws_cdk/aws_codeconnections/__init__.py,sha256=SH3esx6dpvC-I6ARt9jzDSe9dRAvufeKKVtn2JAAZKw,23717
|
|
64
64
|
aws_cdk/aws_codedeploy/__init__.py,sha256=d84hsrTG2wOkAELUQcsB3787OJtj0EMymXWr0VjYTW4,622412
|
|
@@ -73,32 +73,32 @@ aws_cdk/aws_cognito/__init__.py,sha256=h1UHmpdr8cuI_TCYPAGe8eWhyn3mJYhkixbhxEyYd
|
|
|
73
73
|
aws_cdk/aws_cognito_identitypool/__init__.py,sha256=HYfXSce71EK9mAR6TlbQ9xJaDtTy9ag90FjlhOVSa50,99963
|
|
74
74
|
aws_cdk/aws_comprehend/__init__.py,sha256=6yvIqg_gu35pefOX6iNjfxVCJsmEoLucpYZof4oal5k,164471
|
|
75
75
|
aws_cdk/aws_config/__init__.py,sha256=ckoZDYNEWpbsk0qy5u3ujr14hPC8R4MnrR8kVWkbSh8,915724
|
|
76
|
-
aws_cdk/aws_connect/__init__.py,sha256=
|
|
76
|
+
aws_cdk/aws_connect/__init__.py,sha256=t9ThwuNBa63FqLrYH3evo25mFlL8ieA69Jvywk3hcrM,1078336
|
|
77
77
|
aws_cdk/aws_connectcampaigns/__init__.py,sha256=oLpbWYEzJCVN79xL1Q2lYtGsG0O6eHZpPfA9HmYJbHY,58906
|
|
78
78
|
aws_cdk/aws_connectcampaignsv2/__init__.py,sha256=j6DdmVYPXPkFmFxWyrvxo30J59Y3YgyxLB7VBd7GV2U,188457
|
|
79
79
|
aws_cdk/aws_controltower/__init__.py,sha256=iH-OJW8ZcVUB2F6vqETS5Vz0V-lr9z7FdnRW-BgoKkU,74340
|
|
80
|
-
aws_cdk/aws_cur/__init__.py,sha256=
|
|
80
|
+
aws_cdk/aws_cur/__init__.py,sha256=QQS1kEKyISlgdF92tUC1BLTDSQhJEvPSWZVSg4_ytB0,43818
|
|
81
81
|
aws_cdk/aws_customerprofiles/__init__.py,sha256=U3DtlkmnmWlfr7YybM7KdoPrk7cMgVpJiz9_qI7FNTI,660616
|
|
82
82
|
aws_cdk/aws_databrew/__init__.py,sha256=Y6HJR3-5m1VOSeB3yOfsA39R5y6q6TcoC4c5pZS5ReM,557239
|
|
83
83
|
aws_cdk/aws_datapipeline/__init__.py,sha256=Q5JY6mhKtbaFh1aHBbFbFPVnp-XmizIz7qYegonHFtE,65385
|
|
84
|
-
aws_cdk/aws_datasync/__init__.py,sha256=
|
|
85
|
-
aws_cdk/aws_datazone/__init__.py,sha256=
|
|
84
|
+
aws_cdk/aws_datasync/__init__.py,sha256=FpzQCGgPwaiNPTY2ByC_YFkTaD7Ki7rmH-tUozxYxrw,687144
|
|
85
|
+
aws_cdk/aws_datazone/__init__.py,sha256=u0w7jvOCo38d4BCOF1dYOcCsP5q4MmEFWNnMSfTXF50,936228
|
|
86
86
|
aws_cdk/aws_dax/__init__.py,sha256=OmA1hNdd_uifEiWBU3Fi0qaUNSBqmU8n-BGLN3iVVqY,89696
|
|
87
87
|
aws_cdk/aws_deadline/__init__.py,sha256=zmfgtegEr3VEsTKD_0Kl8iGx-Z8uwSyHr2r08qyNq9k,397557
|
|
88
88
|
aws_cdk/aws_detective/__init__.py,sha256=UxvVwNiKZ1gbgJtapzn03Ef6Bvi0Azju8eRvdiPpkwQ,53330
|
|
89
89
|
aws_cdk/aws_devicefarm/__init__.py,sha256=qz7IAYdTcX86v_YPQfCCFjmdXHHIn_K2DW3dFXPh5uw,176797
|
|
90
90
|
aws_cdk/aws_devopsguru/__init__.py,sha256=uOzTsHPu7nQQEk6TevP-6VEl6KEB3uvEl-e2NHO3clo,78689
|
|
91
|
-
aws_cdk/aws_directoryservice/__init__.py,sha256=
|
|
91
|
+
aws_cdk/aws_directoryservice/__init__.py,sha256=bKOL0CM5M6QtDCs9gBm_KCdnQEk9HvJKvHb7-N0CJhI,74173
|
|
92
92
|
aws_cdk/aws_dlm/__init__.py,sha256=yt5NFcou7LVaosDMSZmsPK_hR53WaJogGk51P2TxJpc,251260
|
|
93
|
-
aws_cdk/aws_dms/__init__.py,sha256=
|
|
93
|
+
aws_cdk/aws_dms/__init__.py,sha256=j3s-ufb1u6teV1Sch3K_O3fmmdPEkjZJMiCNGKgCeE4,1094112
|
|
94
94
|
aws_cdk/aws_docdb/__init__.py,sha256=bhIu8KMiBLrBGlvktnnnP35wfDaBWpLjXVrnafrRwK0,374239
|
|
95
95
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=-SfTbp63XEbDTeRnXtOCBKso6AC5uzhtSrMKO91xl3k,50325
|
|
96
96
|
aws_cdk/aws_dsql/__init__.py,sha256=Ngi6yeP4j5TQGtxRXkmK7hNTX1KkIohJOIEkJOFqSYY,38452
|
|
97
97
|
aws_cdk/aws_dynamodb/__init__.py,sha256=jIXHGGrDgOcVvPQ6lL_AYpu-a7GlIlT3eidqlWYuye0,1118130
|
|
98
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
98
|
+
aws_cdk/aws_ec2/__init__.py,sha256=CQXuTYrfn1h-CirLhfDJ-QKXo0r0SQdShILbZ1MSCqQ,6992198
|
|
99
99
|
aws_cdk/aws_ecr/__init__.py,sha256=jvtCMOC2xbD4Bnx8cGmMxOEBTKRA302FHkSngz265Yc,387682
|
|
100
100
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=1KuYxLigEkl3HzECDxPxKJtmS21A_lGjgA1ju_AJzkA,94919
|
|
101
|
-
aws_cdk/aws_ecs/__init__.py,sha256=
|
|
101
|
+
aws_cdk/aws_ecs/__init__.py,sha256=tqW0PmeWerRAtJOI1VQ2H3ao9NWzQ47X4a6SdLW3MxU,3079881
|
|
102
102
|
aws_cdk/aws_ecs_patterns/__init__.py,sha256=rLfSfrDSLjLu4b9NzIc8UIbtwbKZgiaxbes1cPNFXjg,1046998
|
|
103
103
|
aws_cdk/aws_efs/__init__.py,sha256=E6egtZ2dje7uW9MaixnJONjJZkgDY_uv02ReNJvMAxg,310039
|
|
104
104
|
aws_cdk/aws_eks/__init__.py,sha256=V8oIH6nAEURuQSPuEU8lLwX6gHBTnmoJ5S8SbP7NcXs,1321328
|
|
@@ -112,7 +112,7 @@ aws_cdk/aws_elasticsearch/__init__.py,sha256=hIZu79RyB-Oyi_qNphwpBTwNTHiz9Z6BEGt
|
|
|
112
112
|
aws_cdk/aws_emr/__init__.py,sha256=6MqKjVQzHXS9zFJ4O9f1gi10sgzxjKnIygAsfMnYxww,805570
|
|
113
113
|
aws_cdk/aws_emrcontainers/__init__.py,sha256=qYGYKmSIOO7Mh5ROIR2oOShuGYQJx43f7X1-A7sQqPs,39161
|
|
114
114
|
aws_cdk/aws_emrserverless/__init__.py,sha256=Xr_zHXTcbJAC397PXtLb3E8QsNqpDx_4fshzYWp52-E,171619
|
|
115
|
-
aws_cdk/aws_entityresolution/__init__.py,sha256=
|
|
115
|
+
aws_cdk/aws_entityresolution/__init__.py,sha256=70DcKFVrQkVPpIJ0X_Nf1uPB6v0WoUbVHQIg_jvnBCA,317326
|
|
116
116
|
aws_cdk/aws_events/__init__.py,sha256=QL3LRzmt_kXl_IsdB9zqAjeDKvGZRrW9KkZ76V6c9iQ,770047
|
|
117
117
|
aws_cdk/aws_events_targets/__init__.py,sha256=ResIQDqv-b3b6Hqv8A9yldHq0FzPzAJG4_-fcIkDFkk,307045
|
|
118
118
|
aws_cdk/aws_eventschemas/__init__.py,sha256=d5D9IqDu_4CQpwESrycJMzE77ovEttbK4_3BUjKbh3g,87780
|
|
@@ -131,7 +131,7 @@ aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7d
|
|
|
131
131
|
aws_cdk/aws_glue/__init__.py,sha256=hzc78PspmksvOBw897S7D159h8tvxpdX1Bt3x307U6c,1138850
|
|
132
132
|
aws_cdk/aws_grafana/__init__.py,sha256=Sn0wssN0S2DfVHgEP5qnr8bCI9ALmkJm8b-Psf2WIxo,108065
|
|
133
133
|
aws_cdk/aws_greengrass/__init__.py,sha256=3D_Qd_iRqt0FCqz_m1fq98-WkQGI0a5ecDkhG1MUOLM,756364
|
|
134
|
-
aws_cdk/aws_greengrassv2/__init__.py,sha256=
|
|
134
|
+
aws_cdk/aws_greengrassv2/__init__.py,sha256=_AttCJtVumk0-Y1UeBbTrCg4XqAX6FiKiPoo90gtdNM,222860
|
|
135
135
|
aws_cdk/aws_groundstation/__init__.py,sha256=8kJltDwA_Xm-JP833AoACOUCxkczSpBzFeDNZpDkgjY,236173
|
|
136
136
|
aws_cdk/aws_guardduty/__init__.py,sha256=dferlUKrOf9rs_yLw8BrzGcOySJM-DY4X1YCzr8xDgI,380773
|
|
137
137
|
aws_cdk/aws_healthimaging/__init__.py,sha256=dkz9J1a_rJyY7n5OmbHsC4lOWHnxeZnKmzGlGGX-4nk,24115
|
|
@@ -191,12 +191,12 @@ aws_cdk/aws_mediastore/__init__.py,sha256=4QLMMGsFma8SM3D-tSAvKgQ_VmAeFhqfEfvhxY
|
|
|
191
191
|
aws_cdk/aws_mediatailor/__init__.py,sha256=UoqkfYuwM6m5fo_WPD6RxoXzkRwnQeFyXrdmvSrxLac,342603
|
|
192
192
|
aws_cdk/aws_memorydb/__init__.py,sha256=LpHN4YGGvq8jlqzEEU-LsVnevxOprxfSGF-Aq1IRIQ0,213632
|
|
193
193
|
aws_cdk/aws_mpa/__init__.py,sha256=nyqwNIMsUsLJfxhnFdTwvzTegFfctVsX5oXuMSFt2NU,76507
|
|
194
|
-
aws_cdk/aws_msk/__init__.py,sha256=
|
|
194
|
+
aws_cdk/aws_msk/__init__.py,sha256=vyajo3yMAA-mVIKEJQJUHewYvInFrSy2cav4jNKePcw,377783
|
|
195
195
|
aws_cdk/aws_mwaa/__init__.py,sha256=MQJ8FQZYz2rLQ1w45RQXrDAJBRd4Fz8HCJ4OlJAbnIg,128954
|
|
196
196
|
aws_cdk/aws_neptune/__init__.py,sha256=ZKojoPfvQ2EeeKk0tJ1HwKbdMukHwjDZKeZcB2fGXU0,238446
|
|
197
197
|
aws_cdk/aws_neptunegraph/__init__.py,sha256=j2i_yxu6UgjZRm_YpJwxhNDK2-SZIDfy_XT7WqFhX6E,59452
|
|
198
|
-
aws_cdk/aws_networkfirewall/__init__.py,sha256=
|
|
199
|
-
aws_cdk/aws_networkmanager/__init__.py,sha256=
|
|
198
|
+
aws_cdk/aws_networkfirewall/__init__.py,sha256=3XncKsxXfu1C-FWbk_A4UbxDrNQeiUP99fGho-sypek,510168
|
|
199
|
+
aws_cdk/aws_networkmanager/__init__.py,sha256=J_4a9r-f0Fpn7wYvqo1OSI3r82gf2HToZ7jid3nNKPk,521030
|
|
200
200
|
aws_cdk/aws_nimblestudio/__init__.py,sha256=vxNoGz8vStY2EpftuunKTnRlyzoofW_cOGRyNOWyC8s,189474
|
|
201
201
|
aws_cdk/aws_notifications/__init__.py,sha256=0NspWIv4xsS4K7mMKVK9dRR7hHjegC779q44PJCZPvw,137814
|
|
202
202
|
aws_cdk/aws_notificationscontacts/__init__.py,sha256=9ApeXrzzgKUfkaOeAYOSIWutV40sbJ-01bWW7SEeDaQ,29598
|
|
@@ -205,9 +205,9 @@ aws_cdk/aws_observabilityadmin/__init__.py,sha256=yi5Ug3f7uLfHqJKZHhYbmdD7tzF-xf
|
|
|
205
205
|
aws_cdk/aws_odb/__init__.py,sha256=T2eYfIIV0DlIUHMUvXpcmn3NiYul98C8kzpTeGcsA0M,324127
|
|
206
206
|
aws_cdk/aws_omics/__init__.py,sha256=d4EV0J-uL6YVwx_dRd-NcAFBEVDK6heV-ghYv6ovvdI,348339
|
|
207
207
|
aws_cdk/aws_opensearchserverless/__init__.py,sha256=UL_Z7n_cVImOR7H8HCN_uSiMXVK7Hkyh9mc8X7IVKQI,209408
|
|
208
|
-
aws_cdk/aws_opensearchservice/__init__.py,sha256=
|
|
208
|
+
aws_cdk/aws_opensearchservice/__init__.py,sha256=m0vz5v3YIPUP0eB6AfMptEN-PAatwi2tVenWPCiOjkw,705788
|
|
209
209
|
aws_cdk/aws_opsworks/__init__.py,sha256=Ti-xcPSKWS0g91IQ2wic8XJnxnMqnppyzfLG3O2j2Lc,464080
|
|
210
|
-
aws_cdk/aws_opsworkscm/__init__.py,sha256=
|
|
210
|
+
aws_cdk/aws_opsworkscm/__init__.py,sha256=KTciz7095dqOtdTScYE_-qztJJslWdwyCBxm4F3bl_8,87899
|
|
211
211
|
aws_cdk/aws_organizations/__init__.py,sha256=acSVYaV5VN7T5RWlNPFGdUv926bYQQ_fXt7PmuzYV_s,138555
|
|
212
212
|
aws_cdk/aws_osis/__init__.py,sha256=9tAlpiFgAoPUgj9mkUkb-Qr6fc5uDzKuN8j3aDGbFd8,70445
|
|
213
213
|
aws_cdk/aws_panorama/__init__.py,sha256=oUF0eSYQgAxkleEytWdJ_zsld3qtS2ZxQEQIIytgwDE,102036
|
|
@@ -222,10 +222,10 @@ aws_cdk/aws_pipes/__init__.py,sha256=9Jf8NL36Amv1itcxOJaNFMh_xS4WTrO3fW0PlC3KD3c
|
|
|
222
222
|
aws_cdk/aws_proton/__init__.py,sha256=Yb8qgHgcDehLWeftGWt7rdCPiOWHViO-eG2aBWg0J_Q,84085
|
|
223
223
|
aws_cdk/aws_qbusiness/__init__.py,sha256=nll1F0epGcCvLjrZUOgMV_yaEi6EVRG-eCfaIo2WhCw,569862
|
|
224
224
|
aws_cdk/aws_qldb/__init__.py,sha256=gnFCNt7j7PTkIbXk71kCgRbiRqRFcLdU-LZUk2LiaK8,73200
|
|
225
|
-
aws_cdk/aws_quicksight/__init__.py,sha256=
|
|
225
|
+
aws_cdk/aws_quicksight/__init__.py,sha256=f-28xXeO4FWwW8JlfMkTV1LQ6H00w42JYEkkQ1aeR4Y,14498761
|
|
226
226
|
aws_cdk/aws_ram/__init__.py,sha256=sf4DGHj2bkHvMI9wZlG1LdNF0xGh-JrYI3IeHaOi3C0,59339
|
|
227
227
|
aws_cdk/aws_rbin/__init__.py,sha256=6I_rx7SuPP0fZGOJqaDazRXyV-gRWEa6HjFw9s6v81U,53793
|
|
228
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
228
|
+
aws_cdk/aws_rds/__init__.py,sha256=_55lRIeKPxy9DOQSorcNAV3pXWfp8UAOk99HOBBN6XE,3191663
|
|
229
229
|
aws_cdk/aws_redshift/__init__.py,sha256=omIhwT9iyGIN74B7hqglP7eJYqpEdI_5KW2AxpB1IOs,447798
|
|
230
230
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=sVL5XEEacZXbO9YWboJ4tSJLfoNlYNIg3wMVIfbSQH8,233915
|
|
231
231
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=GAZJnLef0PysQNJY7eizrUV2AcsmPzhJQQeQOj3bjIo,145987
|
|
@@ -235,7 +235,7 @@ aws_cdk/aws_resourceexplorer2/__init__.py,sha256=oYlo9pOOhqT4dGulctjb2Tzm-l1T333
|
|
|
235
235
|
aws_cdk/aws_resourcegroups/__init__.py,sha256=cBtu7qwVEh-pJwuscoFMOaUh84iuere7Znac_Obi-ag,86493
|
|
236
236
|
aws_cdk/aws_robomaker/__init__.py,sha256=39RxK29RJnQHH5NNDqvLQys8tkPIVxBdfHtjdB5go1c,152585
|
|
237
237
|
aws_cdk/aws_rolesanywhere/__init__.py,sha256=tvwPuq-yL3sYx3QRPotS8r2okKCgbF6xclvI7DNdZUc,113199
|
|
238
|
-
aws_cdk/aws_route53/__init__.py,sha256=
|
|
238
|
+
aws_cdk/aws_route53/__init__.py,sha256=JLLQzbxn_kW_2AnMwE8avQrH5sJ8UgnEqeTG8f9VfG0,1173657
|
|
239
239
|
aws_cdk/aws_route53_patterns/__init__.py,sha256=oPfJym9p6xh0bTOBS9rmuZR3gXNSRCOTJUsQ3e8qsz0,13542
|
|
240
240
|
aws_cdk/aws_route53_targets/__init__.py,sha256=betoS418gIa4FZ2PLBT21s4gHoe_UW-LeFlkWWCjxdc,47771
|
|
241
241
|
aws_cdk/aws_route53profiles/__init__.py,sha256=Wxj73W3elZke_oumXBQrCASAHDzOnCUzYtgwoYwSDGo,58701
|
|
@@ -259,7 +259,7 @@ aws_cdk/aws_sdb/__init__.py,sha256=rfCXeJAg6hLRZBVwDrgXpA5rEs7k9V4w5AZ6mAM75Qo,1
|
|
|
259
259
|
aws_cdk/aws_secretsmanager/__init__.py,sha256=CesWrg2Dwlvaqs5ZrWTnmaEiid-JVDYKHn7i3BEzaak,405989
|
|
260
260
|
aws_cdk/aws_securityhub/__init__.py,sha256=CjDiiIzkJvZ9VNwr1neewj9lKBXGS-zHQjEWtaVM1yY,942121
|
|
261
261
|
aws_cdk/aws_securitylake/__init__.py,sha256=tFpYJKVrzAn0Hny9M6OJg0qDiww7IobgMM1zQCk2oSk,159856
|
|
262
|
-
aws_cdk/aws_servicecatalog/__init__.py,sha256=
|
|
262
|
+
aws_cdk/aws_servicecatalog/__init__.py,sha256=VUiHPKhMRWYWvaFeqQXFEiyeAJQPxrUTXHXrRBALXLE,619049
|
|
263
263
|
aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=ge1gHzF6O8Wo1ZNvYOqjSSpgiaTam3xF6Xeq-vRCG4w,82313
|
|
264
264
|
aws_cdk/aws_servicediscovery/__init__.py,sha256=eT-ysg_hYPZxTKAQPKt9lemOErp6qv760YGRcxfQu8M,396145
|
|
265
265
|
aws_cdk/aws_ses/__init__.py,sha256=BeVS9Z1m1GP3h588RAPaHMutm463jVS2X9NS9_qWIF4,1124896
|
|
@@ -267,7 +267,7 @@ aws_cdk/aws_ses_actions/__init__.py,sha256=OL6WyVSh2wmikWy6ohT9tk__mIuBFBVM6hr7-
|
|
|
267
267
|
aws_cdk/aws_shield/__init__.py,sha256=bmoKOejp7uruKUG0QMKUGgYMjNeMUB_u4-8xdTx1gSg,120685
|
|
268
268
|
aws_cdk/aws_signer/__init__.py,sha256=RkwebS0odEiAZyPnQY3G35ghWO0eAnnfJviSAK2q4lg,68241
|
|
269
269
|
aws_cdk/aws_simspaceweaver/__init__.py,sha256=3xfiZF0mtWQ1hQklPgxn5OPF8sMwWP376EB5h_NkZL8,37630
|
|
270
|
-
aws_cdk/aws_smsvoice/__init__.py,sha256=
|
|
270
|
+
aws_cdk/aws_smsvoice/__init__.py,sha256=w1ff7Gw7ZysiMLa0PwF_lxaGsSSzNJLEoGTK4X8QDy8,273660
|
|
271
271
|
aws_cdk/aws_sns/__init__.py,sha256=GH_didLbRbyb9X80740Wus0rh75gqhzx09_pAbyH-3I,442054
|
|
272
272
|
aws_cdk/aws_sns_subscriptions/__init__.py,sha256=sA_N7na4ZpA6CuLxxvM-Ugb7vcs1aM3Lo8cXgLjxufM,75517
|
|
273
273
|
aws_cdk/aws_sqs/__init__.py,sha256=pqwg1LbXBoL_6B7nGn39OsJHs5bz_RXpHLM3th4xm-U,319176
|
|
@@ -305,9 +305,9 @@ aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=ssdgQwTnWcr4HFK6euFpZ93
|
|
|
305
305
|
aws_cdk/pipelines/__init__.py,sha256=wsofaHmLi-FTqw8fXvcLz0Anpq2DHVNsW6Ou6947yWk,410335
|
|
306
306
|
aws_cdk/region_info/__init__.py,sha256=5GAO_ld0t-3caLW28eV9FWHMrqRq5CyV1L4pFALx9Y4,39656
|
|
307
307
|
aws_cdk/triggers/__init__.py,sha256=ghzOdeR9ASBlMC1m0b1MWCwusdL8buRwMofzz_AfPT8,126215
|
|
308
|
-
aws_cdk_lib-2.
|
|
309
|
-
aws_cdk_lib-2.
|
|
310
|
-
aws_cdk_lib-2.
|
|
311
|
-
aws_cdk_lib-2.
|
|
312
|
-
aws_cdk_lib-2.
|
|
313
|
-
aws_cdk_lib-2.
|
|
308
|
+
aws_cdk_lib-2.219.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
309
|
+
aws_cdk_lib-2.219.0.dist-info/METADATA,sha256=maJ2S8jLhsF_jAqJb8jSRtiGPugqyBkGb-q8ZZ2uV5A,77061
|
|
310
|
+
aws_cdk_lib-2.219.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
|
|
311
|
+
aws_cdk_lib-2.219.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
312
|
+
aws_cdk_lib-2.219.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
313
|
+
aws_cdk_lib-2.219.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|