aws-cdk-lib 2.188.0__py3-none-any.whl → 2.189.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 +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.188.0.jsii.tgz → aws-cdk-lib@2.189.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +82 -0
- aws_cdk/aws_batch/__init__.py +2 -0
- aws_cdk/aws_bedrock/__init__.py +24 -22
- aws_cdk/aws_dsql/__init__.py +366 -0
- aws_cdk/aws_dynamodb/__init__.py +4 -4
- aws_cdk/aws_ec2/__init__.py +129 -100
- aws_cdk/aws_fsx/__init__.py +2 -8
- aws_cdk/aws_gamelift/__init__.py +135 -9
- aws_cdk/aws_groundstation/__init__.py +4 -2
- aws_cdk/aws_paymentcryptography/__init__.py +6 -2
- aws_cdk/aws_redshiftserverless/__init__.py +166 -0
- aws_cdk/pipelines/__init__.py +39 -1
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/RECORD +22 -21
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.188.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/top_level.txt +0 -0
|
@@ -1272,7 +1272,11 @@ class CfnWorkgroup(
|
|
|
1272
1272
|
status="status"
|
|
1273
1273
|
),
|
|
1274
1274
|
publicly_accessible=False,
|
|
1275
|
+
recovery_point_id="recoveryPointId",
|
|
1275
1276
|
security_group_ids=["securityGroupIds"],
|
|
1277
|
+
snapshot_arn="snapshotArn",
|
|
1278
|
+
snapshot_name="snapshotName",
|
|
1279
|
+
snapshot_owner_account="snapshotOwnerAccount",
|
|
1276
1280
|
subnet_ids=["subnetIds"],
|
|
1277
1281
|
tags=[CfnTag(
|
|
1278
1282
|
key="key",
|
|
@@ -1333,7 +1337,11 @@ class CfnWorkgroup(
|
|
|
1333
1337
|
port: typing.Optional[jsii.Number] = None,
|
|
1334
1338
|
price_performance_target: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkgroup.PerformanceTargetProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1335
1339
|
publicly_accessible: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1340
|
+
recovery_point_id: typing.Optional[builtins.str] = None,
|
|
1336
1341
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1342
|
+
snapshot_arn: typing.Optional[builtins.str] = None,
|
|
1343
|
+
snapshot_name: typing.Optional[builtins.str] = None,
|
|
1344
|
+
snapshot_owner_account: typing.Optional[builtins.str] = None,
|
|
1337
1345
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1338
1346
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1339
1347
|
track_name: typing.Optional[builtins.str] = None,
|
|
@@ -1351,7 +1359,11 @@ class CfnWorkgroup(
|
|
|
1351
1359
|
:param port: The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
|
|
1352
1360
|
:param price_performance_target: An object that represents the price performance target settings for the workgroup.
|
|
1353
1361
|
:param publicly_accessible: A value that specifies whether the workgroup can be accessible from a public network. Default: - false
|
|
1362
|
+
:param recovery_point_id: The recovery point id to restore from.
|
|
1354
1363
|
:param security_group_ids: A list of security group IDs to associate with the workgroup.
|
|
1364
|
+
:param snapshot_arn: The Amazon Resource Name (ARN) of the snapshot to restore from.
|
|
1365
|
+
:param snapshot_name: The snapshot name to restore from.
|
|
1366
|
+
:param snapshot_owner_account: The owner AWS ; account of the snapshot.
|
|
1355
1367
|
:param subnet_ids: A list of subnet IDs the workgroup is associated with.
|
|
1356
1368
|
:param tags: The map of the key-value pairs used to tag the workgroup.
|
|
1357
1369
|
:param track_name: An optional parameter for the name of the track for the workgroup. If you don't provide a track name, the workgroup is assigned to the current track.
|
|
@@ -1371,7 +1383,11 @@ class CfnWorkgroup(
|
|
|
1371
1383
|
port=port,
|
|
1372
1384
|
price_performance_target=price_performance_target,
|
|
1373
1385
|
publicly_accessible=publicly_accessible,
|
|
1386
|
+
recovery_point_id=recovery_point_id,
|
|
1374
1387
|
security_group_ids=security_group_ids,
|
|
1388
|
+
snapshot_arn=snapshot_arn,
|
|
1389
|
+
snapshot_name=snapshot_name,
|
|
1390
|
+
snapshot_owner_account=snapshot_owner_account,
|
|
1375
1391
|
subnet_ids=subnet_ids,
|
|
1376
1392
|
tags=tags,
|
|
1377
1393
|
track_name=track_name,
|
|
@@ -1717,6 +1733,19 @@ class CfnWorkgroup(
|
|
|
1717
1733
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1718
1734
|
jsii.set(self, "publiclyAccessible", value) # pyright: ignore[reportArgumentType]
|
|
1719
1735
|
|
|
1736
|
+
@builtins.property
|
|
1737
|
+
@jsii.member(jsii_name="recoveryPointId")
|
|
1738
|
+
def recovery_point_id(self) -> typing.Optional[builtins.str]:
|
|
1739
|
+
'''The recovery point id to restore from.'''
|
|
1740
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "recoveryPointId"))
|
|
1741
|
+
|
|
1742
|
+
@recovery_point_id.setter
|
|
1743
|
+
def recovery_point_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
1744
|
+
if __debug__:
|
|
1745
|
+
type_hints = typing.get_type_hints(_typecheckingstub__330f25021814c2fb98578117b6d4b45cb103383dd78a1ec221ad5ee1da1af776)
|
|
1746
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1747
|
+
jsii.set(self, "recoveryPointId", value) # pyright: ignore[reportArgumentType]
|
|
1748
|
+
|
|
1720
1749
|
@builtins.property
|
|
1721
1750
|
@jsii.member(jsii_name="securityGroupIds")
|
|
1722
1751
|
def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -1733,6 +1762,45 @@ class CfnWorkgroup(
|
|
|
1733
1762
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1734
1763
|
jsii.set(self, "securityGroupIds", value) # pyright: ignore[reportArgumentType]
|
|
1735
1764
|
|
|
1765
|
+
@builtins.property
|
|
1766
|
+
@jsii.member(jsii_name="snapshotArn")
|
|
1767
|
+
def snapshot_arn(self) -> typing.Optional[builtins.str]:
|
|
1768
|
+
'''The Amazon Resource Name (ARN) of the snapshot to restore from.'''
|
|
1769
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "snapshotArn"))
|
|
1770
|
+
|
|
1771
|
+
@snapshot_arn.setter
|
|
1772
|
+
def snapshot_arn(self, value: typing.Optional[builtins.str]) -> None:
|
|
1773
|
+
if __debug__:
|
|
1774
|
+
type_hints = typing.get_type_hints(_typecheckingstub__22c9552850e931e5526d6b100685f6e372509370d50247f9134b09b667c31905)
|
|
1775
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1776
|
+
jsii.set(self, "snapshotArn", value) # pyright: ignore[reportArgumentType]
|
|
1777
|
+
|
|
1778
|
+
@builtins.property
|
|
1779
|
+
@jsii.member(jsii_name="snapshotName")
|
|
1780
|
+
def snapshot_name(self) -> typing.Optional[builtins.str]:
|
|
1781
|
+
'''The snapshot name to restore from.'''
|
|
1782
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "snapshotName"))
|
|
1783
|
+
|
|
1784
|
+
@snapshot_name.setter
|
|
1785
|
+
def snapshot_name(self, value: typing.Optional[builtins.str]) -> None:
|
|
1786
|
+
if __debug__:
|
|
1787
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9001e412e7a006803ae5b51d6b1ec1486aa95db2939acfaa5b88a397dfaf1e7b)
|
|
1788
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1789
|
+
jsii.set(self, "snapshotName", value) # pyright: ignore[reportArgumentType]
|
|
1790
|
+
|
|
1791
|
+
@builtins.property
|
|
1792
|
+
@jsii.member(jsii_name="snapshotOwnerAccount")
|
|
1793
|
+
def snapshot_owner_account(self) -> typing.Optional[builtins.str]:
|
|
1794
|
+
'''The owner AWS ;'''
|
|
1795
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "snapshotOwnerAccount"))
|
|
1796
|
+
|
|
1797
|
+
@snapshot_owner_account.setter
|
|
1798
|
+
def snapshot_owner_account(self, value: typing.Optional[builtins.str]) -> None:
|
|
1799
|
+
if __debug__:
|
|
1800
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e20f0edef13cea8274ed0af3c59774d9e6b1dc49c1c6cd25ad2a5807f42500fe)
|
|
1801
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1802
|
+
jsii.set(self, "snapshotOwnerAccount", value) # pyright: ignore[reportArgumentType]
|
|
1803
|
+
|
|
1736
1804
|
@builtins.property
|
|
1737
1805
|
@jsii.member(jsii_name="subnetIds")
|
|
1738
1806
|
def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -2584,7 +2652,11 @@ class CfnWorkgroup(
|
|
|
2584
2652
|
"port": "port",
|
|
2585
2653
|
"price_performance_target": "pricePerformanceTarget",
|
|
2586
2654
|
"publicly_accessible": "publiclyAccessible",
|
|
2655
|
+
"recovery_point_id": "recoveryPointId",
|
|
2587
2656
|
"security_group_ids": "securityGroupIds",
|
|
2657
|
+
"snapshot_arn": "snapshotArn",
|
|
2658
|
+
"snapshot_name": "snapshotName",
|
|
2659
|
+
"snapshot_owner_account": "snapshotOwnerAccount",
|
|
2588
2660
|
"subnet_ids": "subnetIds",
|
|
2589
2661
|
"tags": "tags",
|
|
2590
2662
|
"track_name": "trackName",
|
|
@@ -2604,7 +2676,11 @@ class CfnWorkgroupProps:
|
|
|
2604
2676
|
port: typing.Optional[jsii.Number] = None,
|
|
2605
2677
|
price_performance_target: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkgroup.PerformanceTargetProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2606
2678
|
publicly_accessible: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2679
|
+
recovery_point_id: typing.Optional[builtins.str] = None,
|
|
2607
2680
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2681
|
+
snapshot_arn: typing.Optional[builtins.str] = None,
|
|
2682
|
+
snapshot_name: typing.Optional[builtins.str] = None,
|
|
2683
|
+
snapshot_owner_account: typing.Optional[builtins.str] = None,
|
|
2608
2684
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2609
2685
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2610
2686
|
track_name: typing.Optional[builtins.str] = None,
|
|
@@ -2621,7 +2697,11 @@ class CfnWorkgroupProps:
|
|
|
2621
2697
|
:param port: The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
|
|
2622
2698
|
:param price_performance_target: An object that represents the price performance target settings for the workgroup.
|
|
2623
2699
|
:param publicly_accessible: A value that specifies whether the workgroup can be accessible from a public network. Default: - false
|
|
2700
|
+
:param recovery_point_id: The recovery point id to restore from.
|
|
2624
2701
|
:param security_group_ids: A list of security group IDs to associate with the workgroup.
|
|
2702
|
+
:param snapshot_arn: The Amazon Resource Name (ARN) of the snapshot to restore from.
|
|
2703
|
+
:param snapshot_name: The snapshot name to restore from.
|
|
2704
|
+
:param snapshot_owner_account: The owner AWS ; account of the snapshot.
|
|
2625
2705
|
:param subnet_ids: A list of subnet IDs the workgroup is associated with.
|
|
2626
2706
|
:param tags: The map of the key-value pairs used to tag the workgroup.
|
|
2627
2707
|
:param track_name: An optional parameter for the name of the track for the workgroup. If you don't provide a track name, the workgroup is assigned to the current track.
|
|
@@ -2654,7 +2734,11 @@ class CfnWorkgroupProps:
|
|
|
2654
2734
|
status="status"
|
|
2655
2735
|
),
|
|
2656
2736
|
publicly_accessible=False,
|
|
2737
|
+
recovery_point_id="recoveryPointId",
|
|
2657
2738
|
security_group_ids=["securityGroupIds"],
|
|
2739
|
+
snapshot_arn="snapshotArn",
|
|
2740
|
+
snapshot_name="snapshotName",
|
|
2741
|
+
snapshot_owner_account="snapshotOwnerAccount",
|
|
2658
2742
|
subnet_ids=["subnetIds"],
|
|
2659
2743
|
tags=[CfnTag(
|
|
2660
2744
|
key="key",
|
|
@@ -2711,7 +2795,11 @@ class CfnWorkgroupProps:
|
|
|
2711
2795
|
check_type(argname="argument port", value=port, expected_type=type_hints["port"])
|
|
2712
2796
|
check_type(argname="argument price_performance_target", value=price_performance_target, expected_type=type_hints["price_performance_target"])
|
|
2713
2797
|
check_type(argname="argument publicly_accessible", value=publicly_accessible, expected_type=type_hints["publicly_accessible"])
|
|
2798
|
+
check_type(argname="argument recovery_point_id", value=recovery_point_id, expected_type=type_hints["recovery_point_id"])
|
|
2714
2799
|
check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
|
|
2800
|
+
check_type(argname="argument snapshot_arn", value=snapshot_arn, expected_type=type_hints["snapshot_arn"])
|
|
2801
|
+
check_type(argname="argument snapshot_name", value=snapshot_name, expected_type=type_hints["snapshot_name"])
|
|
2802
|
+
check_type(argname="argument snapshot_owner_account", value=snapshot_owner_account, expected_type=type_hints["snapshot_owner_account"])
|
|
2715
2803
|
check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
|
|
2716
2804
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2717
2805
|
check_type(argname="argument track_name", value=track_name, expected_type=type_hints["track_name"])
|
|
@@ -2735,8 +2823,16 @@ class CfnWorkgroupProps:
|
|
|
2735
2823
|
self._values["price_performance_target"] = price_performance_target
|
|
2736
2824
|
if publicly_accessible is not None:
|
|
2737
2825
|
self._values["publicly_accessible"] = publicly_accessible
|
|
2826
|
+
if recovery_point_id is not None:
|
|
2827
|
+
self._values["recovery_point_id"] = recovery_point_id
|
|
2738
2828
|
if security_group_ids is not None:
|
|
2739
2829
|
self._values["security_group_ids"] = security_group_ids
|
|
2830
|
+
if snapshot_arn is not None:
|
|
2831
|
+
self._values["snapshot_arn"] = snapshot_arn
|
|
2832
|
+
if snapshot_name is not None:
|
|
2833
|
+
self._values["snapshot_name"] = snapshot_name
|
|
2834
|
+
if snapshot_owner_account is not None:
|
|
2835
|
+
self._values["snapshot_owner_account"] = snapshot_owner_account
|
|
2740
2836
|
if subnet_ids is not None:
|
|
2741
2837
|
self._values["subnet_ids"] = subnet_ids
|
|
2742
2838
|
if tags is not None:
|
|
@@ -2846,6 +2942,15 @@ class CfnWorkgroupProps:
|
|
|
2846
2942
|
result = self._values.get("publicly_accessible")
|
|
2847
2943
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2848
2944
|
|
|
2945
|
+
@builtins.property
|
|
2946
|
+
def recovery_point_id(self) -> typing.Optional[builtins.str]:
|
|
2947
|
+
'''The recovery point id to restore from.
|
|
2948
|
+
|
|
2949
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshiftserverless-workgroup.html#cfn-redshiftserverless-workgroup-recoverypointid
|
|
2950
|
+
'''
|
|
2951
|
+
result = self._values.get("recovery_point_id")
|
|
2952
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2953
|
+
|
|
2849
2954
|
@builtins.property
|
|
2850
2955
|
def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2851
2956
|
'''A list of security group IDs to associate with the workgroup.
|
|
@@ -2855,6 +2960,35 @@ class CfnWorkgroupProps:
|
|
|
2855
2960
|
result = self._values.get("security_group_ids")
|
|
2856
2961
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2857
2962
|
|
|
2963
|
+
@builtins.property
|
|
2964
|
+
def snapshot_arn(self) -> typing.Optional[builtins.str]:
|
|
2965
|
+
'''The Amazon Resource Name (ARN) of the snapshot to restore from.
|
|
2966
|
+
|
|
2967
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshiftserverless-workgroup.html#cfn-redshiftserverless-workgroup-snapshotarn
|
|
2968
|
+
'''
|
|
2969
|
+
result = self._values.get("snapshot_arn")
|
|
2970
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2971
|
+
|
|
2972
|
+
@builtins.property
|
|
2973
|
+
def snapshot_name(self) -> typing.Optional[builtins.str]:
|
|
2974
|
+
'''The snapshot name to restore from.
|
|
2975
|
+
|
|
2976
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshiftserverless-workgroup.html#cfn-redshiftserverless-workgroup-snapshotname
|
|
2977
|
+
'''
|
|
2978
|
+
result = self._values.get("snapshot_name")
|
|
2979
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2980
|
+
|
|
2981
|
+
@builtins.property
|
|
2982
|
+
def snapshot_owner_account(self) -> typing.Optional[builtins.str]:
|
|
2983
|
+
'''The owner AWS ;
|
|
2984
|
+
|
|
2985
|
+
account of the snapshot.
|
|
2986
|
+
|
|
2987
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshiftserverless-workgroup.html#cfn-redshiftserverless-workgroup-snapshotowneraccount
|
|
2988
|
+
'''
|
|
2989
|
+
result = self._values.get("snapshot_owner_account")
|
|
2990
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2991
|
+
|
|
2858
2992
|
@builtins.property
|
|
2859
2993
|
def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2860
2994
|
'''A list of subnet IDs the workgroup is associated with.
|
|
@@ -3111,7 +3245,11 @@ def _typecheckingstub__61a1b6ebbdacc577619f4e17ddabdaa553ffe5fe072b72e14ddf7d9c3
|
|
|
3111
3245
|
port: typing.Optional[jsii.Number] = None,
|
|
3112
3246
|
price_performance_target: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkgroup.PerformanceTargetProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3113
3247
|
publicly_accessible: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3248
|
+
recovery_point_id: typing.Optional[builtins.str] = None,
|
|
3114
3249
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3250
|
+
snapshot_arn: typing.Optional[builtins.str] = None,
|
|
3251
|
+
snapshot_name: typing.Optional[builtins.str] = None,
|
|
3252
|
+
snapshot_owner_account: typing.Optional[builtins.str] = None,
|
|
3115
3253
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3116
3254
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3117
3255
|
track_name: typing.Optional[builtins.str] = None,
|
|
@@ -3186,12 +3324,36 @@ def _typecheckingstub__974542b0d8aa6c1847dd536dcf795ef2c4719aed798ea365b0767f6ad
|
|
|
3186
3324
|
"""Type checking stubs"""
|
|
3187
3325
|
pass
|
|
3188
3326
|
|
|
3327
|
+
def _typecheckingstub__330f25021814c2fb98578117b6d4b45cb103383dd78a1ec221ad5ee1da1af776(
|
|
3328
|
+
value: typing.Optional[builtins.str],
|
|
3329
|
+
) -> None:
|
|
3330
|
+
"""Type checking stubs"""
|
|
3331
|
+
pass
|
|
3332
|
+
|
|
3189
3333
|
def _typecheckingstub__b2864d0fac41ac305963b5532a731665cbc0d93a810a41ea2d2fe98a5285e8aa(
|
|
3190
3334
|
value: typing.Optional[typing.List[builtins.str]],
|
|
3191
3335
|
) -> None:
|
|
3192
3336
|
"""Type checking stubs"""
|
|
3193
3337
|
pass
|
|
3194
3338
|
|
|
3339
|
+
def _typecheckingstub__22c9552850e931e5526d6b100685f6e372509370d50247f9134b09b667c31905(
|
|
3340
|
+
value: typing.Optional[builtins.str],
|
|
3341
|
+
) -> None:
|
|
3342
|
+
"""Type checking stubs"""
|
|
3343
|
+
pass
|
|
3344
|
+
|
|
3345
|
+
def _typecheckingstub__9001e412e7a006803ae5b51d6b1ec1486aa95db2939acfaa5b88a397dfaf1e7b(
|
|
3346
|
+
value: typing.Optional[builtins.str],
|
|
3347
|
+
) -> None:
|
|
3348
|
+
"""Type checking stubs"""
|
|
3349
|
+
pass
|
|
3350
|
+
|
|
3351
|
+
def _typecheckingstub__e20f0edef13cea8274ed0af3c59774d9e6b1dc49c1c6cd25ad2a5807f42500fe(
|
|
3352
|
+
value: typing.Optional[builtins.str],
|
|
3353
|
+
) -> None:
|
|
3354
|
+
"""Type checking stubs"""
|
|
3355
|
+
pass
|
|
3356
|
+
|
|
3195
3357
|
def _typecheckingstub__67e139cef151f144f2bb04082850da469be0ab0515cff591edf9fc1e44df78a9(
|
|
3196
3358
|
value: typing.Optional[typing.List[builtins.str]],
|
|
3197
3359
|
) -> None:
|
|
@@ -3293,7 +3455,11 @@ def _typecheckingstub__1ee3941005026bdab05d38183c12cc7cf5ff218e6db3877161b60d823
|
|
|
3293
3455
|
port: typing.Optional[jsii.Number] = None,
|
|
3294
3456
|
price_performance_target: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkgroup.PerformanceTargetProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3295
3457
|
publicly_accessible: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3458
|
+
recovery_point_id: typing.Optional[builtins.str] = None,
|
|
3296
3459
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3460
|
+
snapshot_arn: typing.Optional[builtins.str] = None,
|
|
3461
|
+
snapshot_name: typing.Optional[builtins.str] = None,
|
|
3462
|
+
snapshot_owner_account: typing.Optional[builtins.str] = None,
|
|
3297
3463
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3298
3464
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3299
3465
|
track_name: typing.Optional[builtins.str] = None,
|
aws_cdk/pipelines/__init__.py
CHANGED
|
@@ -1619,7 +1619,8 @@ versions.
|
|
|
1619
1619
|
By default, the AWS CDK will build and publish Docker image assets using the
|
|
1620
1620
|
`docker` command. However, by specifying the `CDK_DOCKER` environment variable,
|
|
1621
1621
|
you can override the command that will be used to build and publish your
|
|
1622
|
-
assets.
|
|
1622
|
+
assets. To learn more, see [How to replace Docker with another container management tool](https://docs.aws.amazon.com/cdk/v2/guide/build-containers.html#build-container-replace)
|
|
1623
|
+
in the *AWS CDK Developer Guide*.
|
|
1623
1624
|
|
|
1624
1625
|
In CDK Pipelines, the drop-in replacement for the `docker` command must be
|
|
1625
1626
|
included in the CodeBuild environment and configured for your pipeline.
|
|
@@ -1703,6 +1704,17 @@ pipeline = pipelines.CodePipeline(self, "Pipeline",
|
|
|
1703
1704
|
)
|
|
1704
1705
|
```
|
|
1705
1706
|
|
|
1707
|
+
## Migrating a pipeline type from V1 to V2
|
|
1708
|
+
|
|
1709
|
+
To migrate your pipeline type from V1 to V2, you just need to update the `pipelineType` property to `PipelineType.V2`.
|
|
1710
|
+
This migration does not cause replacement of your pipeline.
|
|
1711
|
+
|
|
1712
|
+
When the `@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2` feature flag is set to `true` (default for new projects),
|
|
1713
|
+
the V2 type is selected by default if you do not specify a value for `pipelineType` property. Otherwise, the V1 type is selected.
|
|
1714
|
+
|
|
1715
|
+
See the [CodePipeline documentation](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html)
|
|
1716
|
+
for more details on the differences between each type.
|
|
1717
|
+
|
|
1706
1718
|
## Known Issues
|
|
1707
1719
|
|
|
1708
1720
|
There are some usability issues that are caused by underlying technology, and
|
|
@@ -1773,6 +1785,7 @@ from ..aws_codepipeline import (
|
|
|
1773
1785
|
Artifact as _Artifact_0cb05964,
|
|
1774
1786
|
IStage as _IStage_415fc571,
|
|
1775
1787
|
Pipeline as _Pipeline_ea38de84,
|
|
1788
|
+
PipelineType as _PipelineType_b52f35be,
|
|
1776
1789
|
)
|
|
1777
1790
|
from ..aws_codepipeline_actions import (
|
|
1778
1791
|
Action as _Action_20e074ce,
|
|
@@ -2386,6 +2399,7 @@ class CodePipelineActionFactoryResult:
|
|
|
2386
2399
|
"docker_enabled_for_synth": "dockerEnabledForSynth",
|
|
2387
2400
|
"enable_key_rotation": "enableKeyRotation",
|
|
2388
2401
|
"pipeline_name": "pipelineName",
|
|
2402
|
+
"pipeline_type": "pipelineType",
|
|
2389
2403
|
"publish_assets_in_parallel": "publishAssetsInParallel",
|
|
2390
2404
|
"reuse_cross_region_support_stacks": "reuseCrossRegionSupportStacks",
|
|
2391
2405
|
"role": "role",
|
|
@@ -2413,6 +2427,7 @@ class CodePipelineProps:
|
|
|
2413
2427
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
2414
2428
|
enable_key_rotation: typing.Optional[builtins.bool] = None,
|
|
2415
2429
|
pipeline_name: typing.Optional[builtins.str] = None,
|
|
2430
|
+
pipeline_type: typing.Optional[_PipelineType_b52f35be] = None,
|
|
2416
2431
|
publish_assets_in_parallel: typing.Optional[builtins.bool] = None,
|
|
2417
2432
|
reuse_cross_region_support_stacks: typing.Optional[builtins.bool] = None,
|
|
2418
2433
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
@@ -2437,6 +2452,7 @@ class CodePipelineProps:
|
|
|
2437
2452
|
:param docker_enabled_for_synth: Enable Docker for the 'synth' step. Set this to true if you are using file assets that require "bundling" anywhere in your application (meaning an asset compilation step will be run with the tools provided by a Docker image), both for the Pipeline stack as well as the application stacks. A common way to use bundling assets in your application is by using the ``aws-cdk-lib/aws-lambda-nodejs`` library. Configures privileged mode for the synth CodeBuild action. If you are about to turn this on in an already-deployed Pipeline, set the value to ``true`` first, commit and allow the pipeline to self-update, and only then use the bundled asset. Default: false
|
|
2438
2453
|
:param enable_key_rotation: Enable KMS key rotation for the generated KMS keys. By default KMS key rotation is disabled, but will add additional costs when enabled. Default: - false (key rotation is disabled)
|
|
2439
2454
|
:param pipeline_name: The name of the CodePipeline pipeline. Default: - Automatically generated
|
|
2455
|
+
:param pipeline_type: Type of the pipeline. Default: - PipelineType.V2 if the feature flag ``CODEPIPELINE_DEFAULT_PIPELINE_TYPE_TO_V2`` is true, PipelineType.V1 otherwise
|
|
2440
2456
|
:param publish_assets_in_parallel: Publish assets in multiple CodeBuild projects. If set to false, use one Project per type to publish all assets. Publishing in parallel improves concurrency and may reduce publishing latency, but may also increase overall provisioning time of the CodeBuild projects. Experiment and see what value works best for you. Default: true
|
|
2441
2457
|
:param reuse_cross_region_support_stacks: Reuse the same cross region support stack for all pipelines in the App. Default: - true (Use the same support stack for all pipelines in App)
|
|
2442
2458
|
:param role: The IAM role to be assumed by this Pipeline. Default: - A new role is created
|
|
@@ -2486,6 +2502,7 @@ class CodePipelineProps:
|
|
|
2486
2502
|
check_type(argname="argument docker_enabled_for_synth", value=docker_enabled_for_synth, expected_type=type_hints["docker_enabled_for_synth"])
|
|
2487
2503
|
check_type(argname="argument enable_key_rotation", value=enable_key_rotation, expected_type=type_hints["enable_key_rotation"])
|
|
2488
2504
|
check_type(argname="argument pipeline_name", value=pipeline_name, expected_type=type_hints["pipeline_name"])
|
|
2505
|
+
check_type(argname="argument pipeline_type", value=pipeline_type, expected_type=type_hints["pipeline_type"])
|
|
2489
2506
|
check_type(argname="argument publish_assets_in_parallel", value=publish_assets_in_parallel, expected_type=type_hints["publish_assets_in_parallel"])
|
|
2490
2507
|
check_type(argname="argument reuse_cross_region_support_stacks", value=reuse_cross_region_support_stacks, expected_type=type_hints["reuse_cross_region_support_stacks"])
|
|
2491
2508
|
check_type(argname="argument role", value=role, expected_type=type_hints["role"])
|
|
@@ -2521,6 +2538,8 @@ class CodePipelineProps:
|
|
|
2521
2538
|
self._values["enable_key_rotation"] = enable_key_rotation
|
|
2522
2539
|
if pipeline_name is not None:
|
|
2523
2540
|
self._values["pipeline_name"] = pipeline_name
|
|
2541
|
+
if pipeline_type is not None:
|
|
2542
|
+
self._values["pipeline_type"] = pipeline_type
|
|
2524
2543
|
if publish_assets_in_parallel is not None:
|
|
2525
2544
|
self._values["publish_assets_in_parallel"] = publish_assets_in_parallel
|
|
2526
2545
|
if reuse_cross_region_support_stacks is not None:
|
|
@@ -2724,6 +2743,20 @@ class CodePipelineProps:
|
|
|
2724
2743
|
result = self._values.get("pipeline_name")
|
|
2725
2744
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2726
2745
|
|
|
2746
|
+
@builtins.property
|
|
2747
|
+
def pipeline_type(self) -> typing.Optional[_PipelineType_b52f35be]:
|
|
2748
|
+
'''Type of the pipeline.
|
|
2749
|
+
|
|
2750
|
+
:default:
|
|
2751
|
+
|
|
2752
|
+
- PipelineType.V2 if the feature flag ``CODEPIPELINE_DEFAULT_PIPELINE_TYPE_TO_V2``
|
|
2753
|
+
is true, PipelineType.V1 otherwise
|
|
2754
|
+
|
|
2755
|
+
:see: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html
|
|
2756
|
+
'''
|
|
2757
|
+
result = self._values.get("pipeline_type")
|
|
2758
|
+
return typing.cast(typing.Optional[_PipelineType_b52f35be], result)
|
|
2759
|
+
|
|
2727
2760
|
@builtins.property
|
|
2728
2761
|
def publish_assets_in_parallel(self) -> typing.Optional[builtins.bool]:
|
|
2729
2762
|
'''Publish assets in multiple CodeBuild projects.
|
|
@@ -6572,6 +6605,7 @@ class CodePipeline(
|
|
|
6572
6605
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
6573
6606
|
enable_key_rotation: typing.Optional[builtins.bool] = None,
|
|
6574
6607
|
pipeline_name: typing.Optional[builtins.str] = None,
|
|
6608
|
+
pipeline_type: typing.Optional[_PipelineType_b52f35be] = None,
|
|
6575
6609
|
publish_assets_in_parallel: typing.Optional[builtins.bool] = None,
|
|
6576
6610
|
reuse_cross_region_support_stacks: typing.Optional[builtins.bool] = None,
|
|
6577
6611
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
@@ -6597,6 +6631,7 @@ class CodePipeline(
|
|
|
6597
6631
|
:param docker_enabled_for_synth: Enable Docker for the 'synth' step. Set this to true if you are using file assets that require "bundling" anywhere in your application (meaning an asset compilation step will be run with the tools provided by a Docker image), both for the Pipeline stack as well as the application stacks. A common way to use bundling assets in your application is by using the ``aws-cdk-lib/aws-lambda-nodejs`` library. Configures privileged mode for the synth CodeBuild action. If you are about to turn this on in an already-deployed Pipeline, set the value to ``true`` first, commit and allow the pipeline to self-update, and only then use the bundled asset. Default: false
|
|
6598
6632
|
:param enable_key_rotation: Enable KMS key rotation for the generated KMS keys. By default KMS key rotation is disabled, but will add additional costs when enabled. Default: - false (key rotation is disabled)
|
|
6599
6633
|
:param pipeline_name: The name of the CodePipeline pipeline. Default: - Automatically generated
|
|
6634
|
+
:param pipeline_type: Type of the pipeline. Default: - PipelineType.V2 if the feature flag ``CODEPIPELINE_DEFAULT_PIPELINE_TYPE_TO_V2`` is true, PipelineType.V1 otherwise
|
|
6600
6635
|
:param publish_assets_in_parallel: Publish assets in multiple CodeBuild projects. If set to false, use one Project per type to publish all assets. Publishing in parallel improves concurrency and may reduce publishing latency, but may also increase overall provisioning time of the CodeBuild projects. Experiment and see what value works best for you. Default: true
|
|
6601
6636
|
:param reuse_cross_region_support_stacks: Reuse the same cross region support stack for all pipelines in the App. Default: - true (Use the same support stack for all pipelines in App)
|
|
6602
6637
|
:param role: The IAM role to be assumed by this Pipeline. Default: - A new role is created
|
|
@@ -6624,6 +6659,7 @@ class CodePipeline(
|
|
|
6624
6659
|
docker_enabled_for_synth=docker_enabled_for_synth,
|
|
6625
6660
|
enable_key_rotation=enable_key_rotation,
|
|
6626
6661
|
pipeline_name=pipeline_name,
|
|
6662
|
+
pipeline_type=pipeline_type,
|
|
6627
6663
|
publish_assets_in_parallel=publish_assets_in_parallel,
|
|
6628
6664
|
reuse_cross_region_support_stacks=reuse_cross_region_support_stacks,
|
|
6629
6665
|
role=role,
|
|
@@ -7943,6 +7979,7 @@ def _typecheckingstub__c46bc21ca63efb27c935c31017ebbc8c85b3b93ae1798e54892dd3eae
|
|
|
7943
7979
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
7944
7980
|
enable_key_rotation: typing.Optional[builtins.bool] = None,
|
|
7945
7981
|
pipeline_name: typing.Optional[builtins.str] = None,
|
|
7982
|
+
pipeline_type: typing.Optional[_PipelineType_b52f35be] = None,
|
|
7946
7983
|
publish_assets_in_parallel: typing.Optional[builtins.bool] = None,
|
|
7947
7984
|
reuse_cross_region_support_stacks: typing.Optional[builtins.bool] = None,
|
|
7948
7985
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
@@ -8407,6 +8444,7 @@ def _typecheckingstub__7b4b4a0bcbd5fab3e4b78aa07ff9504469ae96c16799604ca3345bcb9
|
|
|
8407
8444
|
docker_enabled_for_synth: typing.Optional[builtins.bool] = None,
|
|
8408
8445
|
enable_key_rotation: typing.Optional[builtins.bool] = None,
|
|
8409
8446
|
pipeline_name: typing.Optional[builtins.str] = None,
|
|
8447
|
+
pipeline_type: typing.Optional[_PipelineType_b52f35be] = None,
|
|
8410
8448
|
publish_assets_in_parallel: typing.Optional[builtins.bool] = None,
|
|
8411
8449
|
reuse_cross_region_support_stacks: typing.Optional[builtins.bool] = None,
|
|
8412
8450
|
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
aws_cdk/__init__.py,sha256=
|
|
1
|
+
aws_cdk/__init__.py,sha256=nf1FA7AcIs1ztqIbWTUx5XSzOXLtSSkAEGF9Y-PuH9Q,2007883
|
|
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=zu5dJ561H4HOY12o_1f1u69TAo54XGvEwZEOJxQFti8,1543
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.189.0.jsii.tgz,sha256=lmWjE7bJ5xXAXsQRoZPIpUCne8GRgrKalhegqN8nCpg,24912876
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=yF4ftch7XArzAniw_xoUmGi3wLGeBqIUlOjBTHSxDb4,36370
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=Fe7BZZpx5cUrxKtNdGbU4eXue79txDh_GqjfLV5wgCM,94355
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=XiNBttjwK1s2CYyccwKCXH5Nzb74L1i6rVnZ9Zwh49I,57464
|
|
@@ -9,8 +9,8 @@ aws_cdk/aws_acmpca/__init__.py,sha256=pgzIAfI56TAiluvWL0O6ppE8gKzLk-o-nfrB75kNY1
|
|
|
9
9
|
aws_cdk/aws_amazonmq/__init__.py,sha256=KEVGoGTAVdmCPD4msYskGf18y4_j2yVH6QfLRcX6eTA,165258
|
|
10
10
|
aws_cdk/aws_amplify/__init__.py,sha256=bleqADlFoolBTyc0cpdnKLYF9roertNgOx5_U8FbWs8,214502
|
|
11
11
|
aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=lI4dQQuIH1iEHTtQLW3wTAKIC1_xraUOlLeTOEst6T0,431551
|
|
12
|
-
aws_cdk/aws_apigateway/__init__.py,sha256=
|
|
13
|
-
aws_cdk/aws_apigatewayv2/__init__.py,sha256=
|
|
12
|
+
aws_cdk/aws_apigateway/__init__.py,sha256=Yz8zfSZxKLikiIq8iHHOh7D0vkqrjtGnH2EV7VbpCLc,1946321
|
|
13
|
+
aws_cdk/aws_apigatewayv2/__init__.py,sha256=vKsAIw8MvkZ49YUZi9oABng8QILKbyXbMbGX9TQdcnc,1084714
|
|
14
14
|
aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=dlvfuPzC0x7irbpVRZRpVyLH4FihHnqGOwl9VUwRB5k,55670
|
|
15
15
|
aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=b49Ownun7jTBIQIjVCUCLKc277gyPzxb0QX_UM_RSGU,141317
|
|
16
16
|
aws_cdk/aws_appconfig/__init__.py,sha256=n3CUObO88Z6zHaw0VS6xe5cRx_55UqzEd4PF7hjYRa8,748897
|
|
@@ -35,9 +35,9 @@ aws_cdk/aws_autoscalingplans/__init__.py,sha256=7JRe3KgF5TciICPUqE1OuAguOPAelX5J
|
|
|
35
35
|
aws_cdk/aws_b2bi/__init__.py,sha256=gnVoqv-1oBDuE8u2P-84BfnIymQesCMhWiDNShfhu5I,206003
|
|
36
36
|
aws_cdk/aws_backup/__init__.py,sha256=t2izv7i8teSv3IKSR8hBn6h_lk2nOAjEwFaRt0GVtr0,450201
|
|
37
37
|
aws_cdk/aws_backupgateway/__init__.py,sha256=fWZzjez06YHs0rk-kxVm0f2isg102cJv2jFesKW1Jm0,24571
|
|
38
|
-
aws_cdk/aws_batch/__init__.py,sha256=
|
|
38
|
+
aws_cdk/aws_batch/__init__.py,sha256=JDHKd7dcJGRQ2Y_S7puwbSNkZ2WRtLk3wC930lwzJp8,1506702
|
|
39
39
|
aws_cdk/aws_bcmdataexports/__init__.py,sha256=HI1cpueYOVZr-EDYqDX--ss7DkvI07HxGq6YR4cIE40,55627
|
|
40
|
-
aws_cdk/aws_bedrock/__init__.py,sha256=
|
|
40
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=EVPrj-zbLQnwQML0jjQNwuvijVACzsR5ZtqKMUfm2Go,1816712
|
|
41
41
|
aws_cdk/aws_billingconductor/__init__.py,sha256=d-J_dpWvMOtnkJJIK_Zn0RSP3LeVZl0qY04g62HgqUI,143066
|
|
42
42
|
aws_cdk/aws_budgets/__init__.py,sha256=CYlqTIAcFfu-MBNhziSIfWQMIkmFKnsGpEvykVI5Zpw,163014
|
|
43
43
|
aws_cdk/aws_cassandra/__init__.py,sha256=ceMZnjri-zPtIu_POVDThJn2RQybiFF2C44yLP401G8,171799
|
|
@@ -90,8 +90,9 @@ aws_cdk/aws_dlm/__init__.py,sha256=qs1uPD5T4WKLL_xif8zYk1YXhw5idTfkgW7sFrpztWo,2
|
|
|
90
90
|
aws_cdk/aws_dms/__init__.py,sha256=dacGB7RWjkIkRIpe3Hqkw9SA-RHHhBx5u3j3z1FmIoM,1045378
|
|
91
91
|
aws_cdk/aws_docdb/__init__.py,sha256=WYfy38Sv7GpnLJjOO4CsATCp6-4-6lsokowNSkeOwHU,341392
|
|
92
92
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=8ULf53CjSElODf5ZegB4vP1fvBXVjZjnQOA-D976_nE,46746
|
|
93
|
-
aws_cdk/
|
|
94
|
-
aws_cdk/
|
|
93
|
+
aws_cdk/aws_dsql/__init__.py,sha256=zpskcjcapUL0wzR8Jxotb47wh-k75smt2_C1Sd0i1T8,15488
|
|
94
|
+
aws_cdk/aws_dynamodb/__init__.py,sha256=MWCNL6TMFDChnQ9q7mA7mdhv7bECvanC2-t9icoieGM,1021488
|
|
95
|
+
aws_cdk/aws_ec2/__init__.py,sha256=Cncpc5h2VQIjEZZcfKj0XIGIvLVLVeDQt_M5pKHcrSM,6091819
|
|
95
96
|
aws_cdk/aws_ecr/__init__.py,sha256=47H-UnvhgPvSky_uVxH4AUtF_DbsBGLiO0puEtbORcY,310578
|
|
96
97
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=KFJlU6hamHKtQLLh_GRwL5oyGNI3ZeAoJ7c3GHObQVg,94367
|
|
97
98
|
aws_cdk/aws_ecs/__init__.py,sha256=emmd31S4hQT04hmMe-QWddqdfO1otbXMf6W0EW850Ms,2742885
|
|
@@ -118,8 +119,8 @@ aws_cdk/aws_fis/__init__.py,sha256=nTz_j8iiqdpSLXQOsxA7cKlr0ORKRjtcixG_5W3RCkU,1
|
|
|
118
119
|
aws_cdk/aws_fms/__init__.py,sha256=UN3VPl3JJw9WgBbEP796SzqNr5tddaCWvPhk7S9L4mI,263758
|
|
119
120
|
aws_cdk/aws_forecast/__init__.py,sha256=XRpM-F9UQWYZnZ1mhAJXz3eggrOlZe4ojlVX-pSvj-4,62677
|
|
120
121
|
aws_cdk/aws_frauddetector/__init__.py,sha256=g5M3QBrjZa_z3_3MK8l4oymI2xJwWp-t9Uoe_e16-rU,262259
|
|
121
|
-
aws_cdk/aws_fsx/__init__.py,sha256
|
|
122
|
-
aws_cdk/aws_gamelift/__init__.py,sha256=
|
|
122
|
+
aws_cdk/aws_fsx/__init__.py,sha256=-d8J-MyDM44TT6R1ns3vuQZkuY2wSGZ70q1qO-5wryw,583347
|
|
123
|
+
aws_cdk/aws_gamelift/__init__.py,sha256=0OY0WKtBg0iey6N1uGYoGONNSvoh-KwCh5eDymEyeZI,746652
|
|
123
124
|
aws_cdk/aws_gameliftstreams/__init__.py,sha256=DHQOl1fDhat8XUGsQHIAew2CcDqrf3fKEPBZetx8ZpI,78379
|
|
124
125
|
aws_cdk/aws_globalaccelerator/__init__.py,sha256=7IfeGNzsn9T7rzhqvYLpa70URgBYcSuYQDEdxJLLGqA,233870
|
|
125
126
|
aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7duMb6LWqPPc4KhtF5LnMQYo,26848
|
|
@@ -127,7 +128,7 @@ aws_cdk/aws_glue/__init__.py,sha256=LI2OcoGyK8wrl-rawkFda9bGA9LlbQclAMsTqqtASu0,
|
|
|
127
128
|
aws_cdk/aws_grafana/__init__.py,sha256=pmmMe_yT0f3a-OuqpY1r9LvkZ4g3plyYaXpbLpXyqv0,104423
|
|
128
129
|
aws_cdk/aws_greengrass/__init__.py,sha256=JY6CXCvkLRyjtROOu1G907b0fwdCzHCjJQcVyxL3EBg,662483
|
|
129
130
|
aws_cdk/aws_greengrassv2/__init__.py,sha256=M2Zo-YjJx2cOYvTiF_xIalSh5VgB7Br8Gpp1QaPueJ8,213877
|
|
130
|
-
aws_cdk/aws_groundstation/__init__.py,sha256=
|
|
131
|
+
aws_cdk/aws_groundstation/__init__.py,sha256=mrEOzbCUKEJRpB7KdZxnQ6B0JGT06gm2CiXXPs-UYj0,218754
|
|
131
132
|
aws_cdk/aws_guardduty/__init__.py,sha256=XMUcOWwWMo073sJ_gbrB6FRtN190FVTgLg4oVcdHP1g,261720
|
|
132
133
|
aws_cdk/aws_healthimaging/__init__.py,sha256=bNpcbOhCYjvvgCJwb6pbmA8BH_8RjtjKJZG8f40I8qQ,17410
|
|
133
134
|
aws_cdk/aws_healthlake/__init__.py,sha256=dMFbQBLwb5u5qcae0VijYlqI8dU47O7F4Cr7uSPqFsE,55398
|
|
@@ -203,7 +204,7 @@ aws_cdk/aws_opsworkscm/__init__.py,sha256=I7MOUF6zDNYpn-1TNoJWLK7sNObnKuFzXzcS3i
|
|
|
203
204
|
aws_cdk/aws_organizations/__init__.py,sha256=sTSxIpmA3jrhg_0xKWg6Ro7XMPYxc7suR3Bm4K74T2Q,111233
|
|
204
205
|
aws_cdk/aws_osis/__init__.py,sha256=i4mnzxOSDKgkRhRSM_Xd2Zd9zpTLlQFd4fthuOxbN7o,66832
|
|
205
206
|
aws_cdk/aws_panorama/__init__.py,sha256=T5eqx3YFWeQw8rMi9e2_G_3x9-UMHB4Y1f0OnwvCwXI,81470
|
|
206
|
-
aws_cdk/aws_paymentcryptography/__init__.py,sha256=
|
|
207
|
+
aws_cdk/aws_paymentcryptography/__init__.py,sha256=u3F-ixdiX6z3GXZUJmmRcsrdZhOh5T89zdTvVtYMXm8,60442
|
|
207
208
|
aws_cdk/aws_pcaconnectorad/__init__.py,sha256=GcT41w5KSn6z8NFfXwbXcYQqbhucmIXLt-pzKO-fWxs,387593
|
|
208
209
|
aws_cdk/aws_pcaconnectorscep/__init__.py,sha256=_GEtUgN6V8GlL8ZX4BJk6u8HWrzlxxEsXAA3tIeZiEc,45124
|
|
209
210
|
aws_cdk/aws_pcs/__init__.py,sha256=hXEuWXtt67O4ZreEMs3ZnD3sR9heKaw3A7GIS4GILlg,149706
|
|
@@ -219,7 +220,7 @@ aws_cdk/aws_ram/__init__.py,sha256=hTueUpQ-pdpE9TIHA7Ekd4-IMhT006gRbqhaUtTDDy0,5
|
|
|
219
220
|
aws_cdk/aws_rbin/__init__.py,sha256=CzabGGl5JnclFXLGuB8hu8bf_z0rWog3FqYK7o84QYo,50396
|
|
220
221
|
aws_cdk/aws_rds/__init__.py,sha256=lBtLHZ7KVprYmiW3uzO_f0CErdUBGiBX0TwwMS9D45s,2942450
|
|
221
222
|
aws_cdk/aws_redshift/__init__.py,sha256=_bz821c0euCtdo8lBVuh1EQ7r3Rg3kvzgCfEJz1bmLw,405044
|
|
222
|
-
aws_cdk/aws_redshiftserverless/__init__.py,sha256=
|
|
223
|
+
aws_cdk/aws_redshiftserverless/__init__.py,sha256=qJVLgMyLMnYcdEl24AX5PGBH9Mld62UrItsn57oJH3g,189464
|
|
223
224
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=HlrRPKH0kwPz6Ka6zooBl3hqU5s6lpjiLrMjJXHDIro,123625
|
|
224
225
|
aws_cdk/aws_rekognition/__init__.py,sha256=tfQC6KNmufoRNg7cwsMziN0WeEjCi0ht2eAP3tJAUU8,120935
|
|
225
226
|
aws_cdk/aws_resiliencehub/__init__.py,sha256=fVXYuaTALgUF5aK7W7L9ZZjgN7DyBDA1k0s3ljAqiGA,108790
|
|
@@ -291,12 +292,12 @@ aws_cdk/custom_resources/__init__.py,sha256=lZy80GjA5K94Dr5vkA4C_77fc4Ow0vrSBQ-4
|
|
|
291
292
|
aws_cdk/cx_api/__init__.py,sha256=Mr8k4GD-Ri_RNHCRg1XmAuvWslDobHbHrokUJZpBvV0,178992
|
|
292
293
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=FUcVOwp5XHkYiFms2BGfZWWYCo4vujoEtc9uN-Jc570,3291
|
|
293
294
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=Q0PMbPsP4A7YO-YZe9esn-iziyQHEXR5z1CSSNfeHn8,3306
|
|
294
|
-
aws_cdk/pipelines/__init__.py,sha256=
|
|
295
|
+
aws_cdk/pipelines/__init__.py,sha256=G30L4IJCcklHZ5tZjASyAYk6oDjCdERXQaeYiESh6ig,402861
|
|
295
296
|
aws_cdk/region_info/__init__.py,sha256=5GAO_ld0t-3caLW28eV9FWHMrqRq5CyV1L4pFALx9Y4,39656
|
|
296
297
|
aws_cdk/triggers/__init__.py,sha256=fPVnj7ot9BFSzO-cTWQz9bMuGPG1hqZFJ7ROMkq0vnk,123578
|
|
297
|
-
aws_cdk_lib-2.
|
|
298
|
-
aws_cdk_lib-2.
|
|
299
|
-
aws_cdk_lib-2.
|
|
300
|
-
aws_cdk_lib-2.
|
|
301
|
-
aws_cdk_lib-2.
|
|
302
|
-
aws_cdk_lib-2.
|
|
298
|
+
aws_cdk_lib-2.189.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
299
|
+
aws_cdk_lib-2.189.0.dist-info/METADATA,sha256=JqnGNtnNbN4ZGO3_fVUyLsHj61mq7KEuHCa8WWSi1c0,59922
|
|
300
|
+
aws_cdk_lib-2.189.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
|
|
301
|
+
aws_cdk_lib-2.189.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
302
|
+
aws_cdk_lib-2.189.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
303
|
+
aws_cdk_lib-2.189.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|