aws-cdk-lib 2.129.0__py3-none-any.whl → 2.130.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.129.0.jsii.tgz → aws-cdk-lib@2.130.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +13023 -2705
- aws_cdk/aws_backup/__init__.py +3 -3
- aws_cdk/aws_bedrock/__init__.py +13 -1
- aws_cdk/aws_eks/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +6 -3
- aws_cdk/aws_rds/__init__.py +5 -5
- aws_cdk/pipelines/__init__.py +3 -2
- {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.130.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.130.0.dist-info}/NOTICE +30 -0
- {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.130.0.dist-info}/RECORD +15 -15
- {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.130.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.130.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.130.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_backup/__init__.py
CHANGED
|
@@ -40,7 +40,7 @@ my_database_cluster = rds.DatabaseCluster(self, "DatabaseCluster",
|
|
|
40
40
|
)
|
|
41
41
|
my_serverless_cluster = rds.ServerlessCluster(self, "ServerlessCluster",
|
|
42
42
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
43
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
43
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
44
44
|
vpc=vpc
|
|
45
45
|
)
|
|
46
46
|
my_cool_construct = Construct(self, "MyCoolConstruct")
|
|
@@ -884,7 +884,7 @@ class BackupResource(
|
|
|
884
884
|
)
|
|
885
885
|
my_serverless_cluster = rds.ServerlessCluster(self, "ServerlessCluster",
|
|
886
886
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
887
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
887
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
888
888
|
vpc=vpc
|
|
889
889
|
)
|
|
890
890
|
my_cool_construct = Construct(self, "MyCoolConstruct")
|
|
@@ -1215,7 +1215,7 @@ class BackupSelectionOptions:
|
|
|
1215
1215
|
)
|
|
1216
1216
|
my_serverless_cluster = rds.ServerlessCluster(self, "ServerlessCluster",
|
|
1217
1217
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
1218
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
1218
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
1219
1219
|
vpc=vpc
|
|
1220
1220
|
)
|
|
1221
1221
|
my_cool_construct = Construct(self, "MyCoolConstruct")
|
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -49,7 +49,7 @@ class FoundationModelIdentifier(
|
|
|
49
49
|
):
|
|
50
50
|
'''The model identifiers for the Bedrock base foundation models.
|
|
51
51
|
|
|
52
|
-
:see: https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids
|
|
52
|
+
:see: https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html
|
|
53
53
|
:exampleMetadata: infused
|
|
54
54
|
|
|
55
55
|
Example::
|
|
@@ -166,6 +166,18 @@ class FoundationModelIdentifier(
|
|
|
166
166
|
'''Base model "meta.llama2-70b-chat-v1".'''
|
|
167
167
|
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "META_LLAMA_2_CHAT_70B_V1"))
|
|
168
168
|
|
|
169
|
+
@jsii.python.classproperty
|
|
170
|
+
@jsii.member(jsii_name="STABILITY_STABLE_DIFFUSION_XL_V0")
|
|
171
|
+
def STABILITY_STABLE_DIFFUSION_XL_V0(cls) -> "FoundationModelIdentifier":
|
|
172
|
+
'''Base model "stability.stable-diffusion-xl-v0".'''
|
|
173
|
+
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "STABILITY_STABLE_DIFFUSION_XL_V0"))
|
|
174
|
+
|
|
175
|
+
@jsii.python.classproperty
|
|
176
|
+
@jsii.member(jsii_name="STABILITY_STABLE_DIFFUSION_XL_V1")
|
|
177
|
+
def STABILITY_STABLE_DIFFUSION_XL_V1(cls) -> "FoundationModelIdentifier":
|
|
178
|
+
'''Base model "stability.stable-diffusion-xl-v1".'''
|
|
179
|
+
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "STABILITY_STABLE_DIFFUSION_XL_V1"))
|
|
180
|
+
|
|
169
181
|
@builtins.property
|
|
170
182
|
@jsii.member(jsii_name="modelId")
|
|
171
183
|
def model_id(self) -> builtins.str:
|
aws_cdk/aws_eks/__init__.py
CHANGED
|
@@ -676,7 +676,7 @@ eks.Cluster(self, "HelloEKS",
|
|
|
676
676
|
)
|
|
677
677
|
```
|
|
678
678
|
|
|
679
|
-
> Note: Isolated VPCs (i.e with no internet access) are not
|
|
679
|
+
> Note: Isolated VPCs (i.e with no internet access) are not fully supported. See https://github.com/aws/aws-cdk/issues/12171. Check out [this aws-cdk-example](https://github.com/aws-samples/aws-cdk-examples/tree/master/java/eks/private-cluster) for reference.
|
|
680
680
|
|
|
681
681
|
If you do not specify a VPC, one will be created on your behalf, which you can then access via `cluster.vpc`. The cluster VPC will be associated to any EKS managed capacity (i.e Managed Node Groups and Fargate Profiles).
|
|
682
682
|
|
|
@@ -6799,13 +6799,13 @@ class LoggingOptions:
|
|
|
6799
6799
|
) -> None:
|
|
6800
6800
|
'''Configures log settings for the domain.
|
|
6801
6801
|
|
|
6802
|
-
:param app_log_enabled: Specify if Amazon OpenSearch Service application logging should be set up. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. Default: - false
|
|
6802
|
+
:param app_log_enabled: Specify if Amazon OpenSearch Service application logging should be set up. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. An explicit ``false`` is required when disabling it from ``true``. Default: - false
|
|
6803
6803
|
:param app_log_group: Log Amazon OpenSearch Service application logs to this log group. Default: - a new log group is created if app logging is enabled
|
|
6804
6804
|
:param audit_log_enabled: Specify if Amazon OpenSearch Service audit logging should be set up. Requires Elasticsearch version 6.7 or later or OpenSearch version 1.0 or later and fine grained access control to be enabled. Default: - false
|
|
6805
6805
|
:param audit_log_group: Log Amazon OpenSearch Service audit logs to this log group. Default: - a new log group is created if audit logging is enabled
|
|
6806
|
-
:param slow_index_log_enabled: Specify if slow index logging should be set up. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. Default: - false
|
|
6806
|
+
:param slow_index_log_enabled: Specify if slow index logging should be set up. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. An explicit ``false`` is required when disabling it from ``true``. Default: - false
|
|
6807
6807
|
:param slow_index_log_group: Log slow indices to this log group. Default: - a new log group is created if slow index logging is enabled
|
|
6808
|
-
:param slow_search_log_enabled: Specify if slow search logging should be set up. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. Default: - false
|
|
6808
|
+
:param slow_search_log_enabled: Specify if slow search logging should be set up. Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later. An explicit ``false`` is required when disabling it from ``true``. Default: - false
|
|
6809
6809
|
:param slow_search_log_group: Log slow searches to this log group. Default: - a new log group is created if slow search logging is enabled
|
|
6810
6810
|
|
|
6811
6811
|
:exampleMetadata: infused
|
|
@@ -6863,6 +6863,7 @@ class LoggingOptions:
|
|
|
6863
6863
|
'''Specify if Amazon OpenSearch Service application logging should be set up.
|
|
6864
6864
|
|
|
6865
6865
|
Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later.
|
|
6866
|
+
An explicit ``false`` is required when disabling it from ``true``.
|
|
6866
6867
|
|
|
6867
6868
|
:default: - false
|
|
6868
6869
|
'''
|
|
@@ -6903,6 +6904,7 @@ class LoggingOptions:
|
|
|
6903
6904
|
'''Specify if slow index logging should be set up.
|
|
6904
6905
|
|
|
6905
6906
|
Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later.
|
|
6907
|
+
An explicit ``false`` is required when disabling it from ``true``.
|
|
6906
6908
|
|
|
6907
6909
|
:default: - false
|
|
6908
6910
|
'''
|
|
@@ -6923,6 +6925,7 @@ class LoggingOptions:
|
|
|
6923
6925
|
'''Specify if slow search logging should be set up.
|
|
6924
6926
|
|
|
6925
6927
|
Requires Elasticsearch version 5.1 or later or OpenSearch version 1.0 or later.
|
|
6928
|
+
An explicit ``false`` is required when disabling it from ``true``.
|
|
6926
6929
|
|
|
6927
6930
|
:default: - false
|
|
6928
6931
|
'''
|
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -1338,7 +1338,7 @@ automatically scale the database cluster seamlessly based on the workload.
|
|
|
1338
1338
|
cluster = rds.ServerlessCluster(self, "AnotherCluster",
|
|
1339
1339
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
1340
1340
|
copy_tags_to_snapshot=True, # whether to save the cluster tags when creating the snapshot. Default is 'true'
|
|
1341
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
1341
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
1342
1342
|
vpc=vpc,
|
|
1343
1343
|
scaling=rds.ServerlessScalingOptions(
|
|
1344
1344
|
auto_pause=Duration.minutes(10), # default is to pause after 5 minutes of idle time
|
|
@@ -1510,7 +1510,7 @@ class AuroraCapacityUnit(enum.Enum):
|
|
|
1510
1510
|
cluster = rds.ServerlessCluster(self, "AnotherCluster",
|
|
1511
1511
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
1512
1512
|
copy_tags_to_snapshot=True, # whether to save the cluster tags when creating the snapshot. Default is 'true'
|
|
1513
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
1513
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
1514
1514
|
vpc=vpc,
|
|
1515
1515
|
scaling=rds.ServerlessScalingOptions(
|
|
1516
1516
|
auto_pause=Duration.minutes(10), # default is to pause after 5 minutes of idle time
|
|
@@ -30319,7 +30319,7 @@ class ParameterGroup(
|
|
|
30319
30319
|
)
|
|
30320
30320
|
my_serverless_cluster = rds.ServerlessCluster(self, "ServerlessCluster",
|
|
30321
30321
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
30322
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
30322
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
30323
30323
|
vpc=vpc
|
|
30324
30324
|
)
|
|
30325
30325
|
my_cool_construct = Construct(self, "MyCoolConstruct")
|
|
@@ -33995,7 +33995,7 @@ class ServerlessScalingOptions:
|
|
|
33995
33995
|
cluster = rds.ServerlessCluster(self, "AnotherCluster",
|
|
33996
33996
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
33997
33997
|
copy_tags_to_snapshot=True, # whether to save the cluster tags when creating the snapshot. Default is 'true'
|
|
33998
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
33998
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
33999
33999
|
vpc=vpc,
|
|
34000
34000
|
scaling=rds.ServerlessScalingOptions(
|
|
34001
34001
|
auto_pause=Duration.minutes(10), # default is to pause after 5 minutes of idle time
|
|
@@ -35803,7 +35803,7 @@ class TimeoutAction(enum.Enum):
|
|
|
35803
35803
|
cluster = rds.ServerlessCluster(self, "AnotherCluster",
|
|
35804
35804
|
engine=rds.DatabaseClusterEngine.AURORA_POSTGRESQL,
|
|
35805
35805
|
copy_tags_to_snapshot=True, # whether to save the cluster tags when creating the snapshot. Default is 'true'
|
|
35806
|
-
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-
|
|
35806
|
+
parameter_group=rds.ParameterGroup.from_parameter_group_name(self, "ParameterGroup", "default.aurora-postgresql11"),
|
|
35807
35807
|
vpc=vpc,
|
|
35808
35808
|
scaling=rds.ServerlessScalingOptions(
|
|
35809
35809
|
auto_pause=Duration.minutes(10), # default is to pause after 5 minutes of idle time
|
aws_cdk/pipelines/__init__.py
CHANGED
|
@@ -12,8 +12,9 @@ cluster directly: use CDK file assets with CloudFormation Init for instances, or
|
|
|
12
12
|
CDK container assets for ECS clusters instead.
|
|
13
13
|
|
|
14
14
|
Give the CDK Pipelines way of doing things a shot first: you might find it does
|
|
15
|
-
everything you need. If you
|
|
16
|
-
down to using the `aws-codepipeline`
|
|
15
|
+
everything you need. If you need more control, or if you need `v2` support from
|
|
16
|
+
`aws-codepipeline`, we recommend you drop down to using the `aws-codepipeline`
|
|
17
|
+
construct library directly.
|
|
17
18
|
|
|
18
19
|
> This module contains two sets of APIs: an **original** and a **modern** version of
|
|
19
20
|
> CDK Pipelines. The *modern* API has been updated to be easier to work with and
|
|
@@ -22,6 +22,36 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
22
22
|
|
|
23
23
|
----------------
|
|
24
24
|
|
|
25
|
+
The AWS CDK includes the following third-party software/licensing:
|
|
26
|
+
|
|
27
|
+
** mime-db - https://www.npmjs.com/package/mime-db
|
|
28
|
+
** mime-types - https://www.npmjs.com/package/mime-types
|
|
29
|
+
(The MIT License)
|
|
30
|
+
|
|
31
|
+
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
|
32
|
+
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
33
|
+
|
|
34
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
35
|
+
a copy of this software and associated documentation files (the
|
|
36
|
+
'Software'), to deal in the Software without restriction, including
|
|
37
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
38
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
39
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
40
|
+
the following conditions:
|
|
41
|
+
|
|
42
|
+
The above copyright notice and this permission notice shall be
|
|
43
|
+
included in all copies or substantial portions of the Software.
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
46
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
47
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
48
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
49
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
50
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
51
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
52
|
+
|
|
53
|
+
----------------
|
|
54
|
+
|
|
25
55
|
** fs-extra - https://www.npmjs.com/package/fs-extra
|
|
26
56
|
Copyright (c) 2011-2017 JP Richardson
|
|
27
57
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
aws_cdk/__init__.py,sha256=tjmXcWu7__dZoKA9Fh1LtXHgXeARexkgtNN26cBmCkM,1787574
|
|
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=KX3kjvdiVBn4cH7i96Lk1YV0qKvTgBKmvEhbgvNf7WM,495
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.130.0.jsii.tgz,sha256=f96R7n_siXdCs3ijiLWcRVc6cwQhhBezgGucrq1i8gk,21322042
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=KBd7UYSJ9LMAbaXARoTnXJokWnSeu_Ksvs9f98PWZWI,35211
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=7SmQ09hSs2xm4vNAS1vji3eTgl0FzSJMsu2zs6Uy34w,86514
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=iNysgypAjWTrg8TTS9_0bVv4zknaCtEOsxkb5Uu8v_Y,41805
|
|
@@ -13,7 +13,7 @@ aws_cdk/aws_apigateway/__init__.py,sha256=L7_-qpRLyFPEt1LGduvph9Nqdv2z8EMCPTtlGI
|
|
|
13
13
|
aws_cdk/aws_apigatewayv2/__init__.py,sha256=EyrcDRgdsPQRRSUrQK6czuOPr-z0a5cK6beLHx6s9Ns,1024968
|
|
14
14
|
aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=T86O8f-aa75HdZ18NQZNAZF2khiUXGmHgRdRocXs6rA,50130
|
|
15
15
|
aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=fa6k66dK667ZjSe0smYDamxMLBc0oVNGuoY7-uUjoHI,89950
|
|
16
|
-
aws_cdk/aws_appconfig/__init__.py,sha256=
|
|
16
|
+
aws_cdk/aws_appconfig/__init__.py,sha256=bnBPvBJX_D4SxLgKbx-e_WwfG9etC6aNx_hk9A70Vec,693768
|
|
17
17
|
aws_cdk/aws_appflow/__init__.py,sha256=uu79ljmD3XUfU_w3SCao7HxyJrnNYF327SuZBGPFaag,783046
|
|
18
18
|
aws_cdk/aws_appintegrations/__init__.py,sha256=f_5hNdooIKtcn6A8f2CGHTM1r3iSSU-1Sji4ybHmvrE,57970
|
|
19
19
|
aws_cdk/aws_applicationautoscaling/__init__.py,sha256=BQtNypje50RZz_dAXP9YD_Ggo1Bfws__LkKlhhoW9no,401750
|
|
@@ -31,10 +31,10 @@ aws_cdk/aws_autoscaling_common/__init__.py,sha256=IF7Dn3APVfE7rzu9Fnq5_gy0X8GNRa
|
|
|
31
31
|
aws_cdk/aws_autoscaling_hooktargets/__init__.py,sha256=4_Zd_bDkIo7omp2E2dEATuoH83LYEhPep-48WFnGmAg,10675
|
|
32
32
|
aws_cdk/aws_autoscalingplans/__init__.py,sha256=3JLR8lBREs8JGBw5htbp2a5LWueKHQ1dQwvIIkBrqdc,120006
|
|
33
33
|
aws_cdk/aws_b2bi/__init__.py,sha256=yCK2OT78rV7HGQf3bafHst8TTRGWPsGWTsW95Vv8-0U,117903
|
|
34
|
-
aws_cdk/aws_backup/__init__.py,sha256=
|
|
34
|
+
aws_cdk/aws_backup/__init__.py,sha256=j2gbETFXX8Mxjm1BcT4tjwZhTvyJLcUPkj2hTAQnSh0,411342
|
|
35
35
|
aws_cdk/aws_backupgateway/__init__.py,sha256=nFSwFD1Xh8f858zhqj1fBBiSIBhywG2lr1rE3Tedu0w,23260
|
|
36
36
|
aws_cdk/aws_batch/__init__.py,sha256=tl-vCZF0NyDwXzSHnKThjd-B9aOiaIIxjjin1JYrup4,1300090
|
|
37
|
-
aws_cdk/aws_bedrock/__init__.py,sha256=
|
|
37
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=tpqOcsaObN6y3y7ORdAkwHNUp4K6j1PcU6xif56O03E,14609
|
|
38
38
|
aws_cdk/aws_billingconductor/__init__.py,sha256=s9SYvx1WDMqx-dsBKnK4gGQ_i-AJ5beq_HMFJoO15Jk,140957
|
|
39
39
|
aws_cdk/aws_budgets/__init__.py,sha256=ngKKiI79vlw0rPn44Pf5tPgKtuM8lUSeFj5tfdhC3uA,147216
|
|
40
40
|
aws_cdk/aws_cassandra/__init__.py,sha256=Dwg7VZaqJya02AsHPhOi1SUYU6vAuMHJhoHg1O7Vurs,145659
|
|
@@ -89,7 +89,7 @@ aws_cdk/aws_ecr_assets/__init__.py,sha256=caoKoOeyZPXMgApCPxp8KR3roBErZsp4hobQ73
|
|
|
89
89
|
aws_cdk/aws_ecs/__init__.py,sha256=vjrKsk0wsBkELWigiPp2-ab2Rt47A6dAoL9o56w3PJw,2541584
|
|
90
90
|
aws_cdk/aws_ecs_patterns/__init__.py,sha256=vzgLpAlt73S-rfSTGiQ8qrJ-3mQysA1mXwH5B-B2pcY,1000567
|
|
91
91
|
aws_cdk/aws_efs/__init__.py,sha256=i_a6obxpVjc09Of_uBW91AXIO8qqZr6PHESF4E28Gzo,249453
|
|
92
|
-
aws_cdk/aws_eks/__init__.py,sha256=
|
|
92
|
+
aws_cdk/aws_eks/__init__.py,sha256=tqDCo4hC8D-JTIdwkFyFujxLMx8qBlAskimP3PbgFeE,1034228
|
|
93
93
|
aws_cdk/aws_elasticache/__init__.py,sha256=Thf8cZ71em5w8HvkS2L_t38miOgLBUkXSvRWRidU4bQ,513372
|
|
94
94
|
aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zyV0k5Zr3iAZ8k7JZ1iX_F3jfxvmPnZcbceEhi-6TpU,163458
|
|
95
95
|
aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=1cMxkZqToxjFY6MWiw1gCNrGShQdsE_cUpZm8_WVzHc,161532
|
|
@@ -185,7 +185,7 @@ aws_cdk/aws_nimblestudio/__init__.py,sha256=MCu-AczHBwBnC_H2iyxyXAvhzsLKQgWdS1QH
|
|
|
185
185
|
aws_cdk/aws_oam/__init__.py,sha256=4ZzNHSIXKAIeUna7VOC4oCqLEaKiTFFjcgqN9XSiU5A,33518
|
|
186
186
|
aws_cdk/aws_omics/__init__.py,sha256=6rmTFo-o0p26iHcTJwueqgrfB_ecvNBoaIQkmm2h8og,154964
|
|
187
187
|
aws_cdk/aws_opensearchserverless/__init__.py,sha256=IoyJNdDXNc4aLru24VickGlfNo8YvEsPdeygFuw3sKs,98644
|
|
188
|
-
aws_cdk/aws_opensearchservice/__init__.py,sha256=
|
|
188
|
+
aws_cdk/aws_opensearchservice/__init__.py,sha256=9VNB_iY88mRLyoDzXSYZ0gfK_m6_IZkJ-20mM5OH-V4,545935
|
|
189
189
|
aws_cdk/aws_opsworks/__init__.py,sha256=CXBZAMnnXfiEGwcY2V1l_nVt3GoxfDpw3d9fvQOrjX8,433419
|
|
190
190
|
aws_cdk/aws_opsworkscm/__init__.py,sha256=6J2QqVo7qeWgrXvYkuddM3TA62kGXcATmRClMio_IDs,85671
|
|
191
191
|
aws_cdk/aws_organizations/__init__.py,sha256=btZpiRyI2YPDb9mQwDS5lhYUjqlJ_LGLZTpq0zHcfGA,112349
|
|
@@ -200,7 +200,7 @@ aws_cdk/aws_proton/__init__.py,sha256=1N5qTzjI71zCkQs8ZqGLRhuksWspujBjuZyQR2DgVG
|
|
|
200
200
|
aws_cdk/aws_qldb/__init__.py,sha256=BSz9t18cvSjH233l05ziK1JjaDJZ7aAA7FtRqYAb0JQ,62324
|
|
201
201
|
aws_cdk/aws_quicksight/__init__.py,sha256=aCywPo44g1lNX_5YRRXtEwNzDvdri0EOuKolqUSvZhk,13452787
|
|
202
202
|
aws_cdk/aws_ram/__init__.py,sha256=1CsTM3E8RIWM3H7pFE3Q6pJ1lfmzyzXsQSl4P3-LtLM,50147
|
|
203
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
203
|
+
aws_cdk/aws_rds/__init__.py,sha256=ggkFNOqHz29TgEr9VeFRYvtu8_SoEeycSwgrBj1krmM,2600542
|
|
204
204
|
aws_cdk/aws_redshift/__init__.py,sha256=WhMZsZ7XUsGuR3uok_IAnXBb_wxhk13VGH8C1FpypVk,375688
|
|
205
205
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=mydon-Ydg8pk5xLPv-_0yvwsjSc9Y6xBwXIrY5zvMJM,148288
|
|
206
206
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=czbmTS63zIZp-T5TqGjJzW7fxWjCxZkFUa5aHmu-cXA,121392
|
|
@@ -270,12 +270,12 @@ aws_cdk/cx_api/__init__.py,sha256=wrkyGqmyotP7Bnuc9Dw2hdosQMGzNrKVq4LZi0IRB_E,15
|
|
|
270
270
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=aV83wgBEooKA4v0ld0ZNg8KvzNNFinxQn-HLMDE4iOM,2246
|
|
271
271
|
aws_cdk/lambda_layer_kubectl/__init__.py,sha256=vZ7ewd1mVu9Tz0tYomwpNuRf88kofC9-LCmoWS2Wukg,2518
|
|
272
272
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=a8yWzK1MkpuLJAmWQzO_QdzlAJMo15_mcKFd-OJoln4,2261
|
|
273
|
-
aws_cdk/pipelines/__init__.py,sha256=
|
|
273
|
+
aws_cdk/pipelines/__init__.py,sha256=uQZzD2gRWj84-jfI6PWopZPos1QdyaFd2b9JeO8ylMY,398660
|
|
274
274
|
aws_cdk/region_info/__init__.py,sha256=3Cdf7mg0FYHYbYAYp9_uDCvwsZQmA6PltP7H53VM3h4,37781
|
|
275
275
|
aws_cdk/triggers/__init__.py,sha256=bckw8YuFiM42yQH2wcD26_-nUqPyLEKw9gt8NwpiNjc,115356
|
|
276
|
-
aws_cdk_lib-2.
|
|
277
|
-
aws_cdk_lib-2.
|
|
278
|
-
aws_cdk_lib-2.
|
|
279
|
-
aws_cdk_lib-2.
|
|
280
|
-
aws_cdk_lib-2.
|
|
281
|
-
aws_cdk_lib-2.
|
|
276
|
+
aws_cdk_lib-2.130.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
277
|
+
aws_cdk_lib-2.130.0.dist-info/METADATA,sha256=Mf0Kjis8wWgET_lWTMxx83Wq57aKmkjn5Z5p4hV7pvo,59322
|
|
278
|
+
aws_cdk_lib-2.130.0.dist-info/NOTICE,sha256=Irn92Qln1GDSjTx0CQqiOXM94Z9jgbvnq8rfk50NQ-4,42502
|
|
279
|
+
aws_cdk_lib-2.130.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
280
|
+
aws_cdk_lib-2.130.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
281
|
+
aws_cdk_lib-2.130.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|