aws-cdk-lib 2.182.0__py3-none-any.whl → 2.184.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 +459 -33
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.182.0.jsii.tgz → aws-cdk-lib@2.184.0.jsii.tgz} +0 -0
- aws_cdk/aws_batch/__init__.py +15 -9
- aws_cdk/aws_bedrock/__init__.py +5804 -2325
- aws_cdk/aws_ce/__init__.py +141 -3
- aws_cdk/aws_cloudformation/__init__.py +26 -33
- aws_cdk/aws_cloudfront/experimental/__init__.py +2 -2
- aws_cdk/aws_cloudtrail/__init__.py +4 -4
- aws_cdk/aws_codebuild/__init__.py +4 -10
- aws_cdk/aws_cognito/__init__.py +3 -3
- aws_cdk/aws_dms/__init__.py +350 -0
- aws_cdk/aws_ec2/__init__.py +63 -5
- aws_cdk/aws_elasticache/__init__.py +3 -3
- aws_cdk/aws_emr/__init__.py +9 -3
- aws_cdk/aws_events/__init__.py +3 -1
- aws_cdk/aws_events_targets/__init__.py +31 -7
- aws_cdk/aws_gameliftstreams/__init__.py +1205 -0
- aws_cdk/aws_iam/__init__.py +290 -35
- aws_cdk/aws_inspector/__init__.py +13 -10
- aws_cdk/aws_iot/__init__.py +616 -22
- aws_cdk/aws_iotfleetwise/__init__.py +72 -10
- aws_cdk/aws_iotsitewise/__init__.py +12 -8
- aws_cdk/aws_kafkaconnect/__init__.py +4 -2
- aws_cdk/aws_kinesisfirehose/__init__.py +45 -51
- aws_cdk/aws_lambda/__init__.py +27 -18
- aws_cdk/aws_lambda_event_sources/__init__.py +14 -14
- aws_cdk/aws_logs/__init__.py +133 -0
- aws_cdk/aws_medialive/__init__.py +86 -86
- aws_cdk/aws_msk/__init__.py +236 -128
- aws_cdk/aws_neptunegraph/__init__.py +3 -3
- aws_cdk/aws_opensearchserverless/__init__.py +1031 -0
- aws_cdk/aws_quicksight/__init__.py +6511 -20331
- aws_cdk/aws_rds/__init__.py +264 -32
- aws_cdk/aws_redshift/__init__.py +8 -8
- aws_cdk/aws_sagemaker/__init__.py +12 -5
- aws_cdk/aws_securitylake/__init__.py +3 -0
- aws_cdk/aws_synthetics/__init__.py +2 -0
- aws_cdk/aws_transfer/__init__.py +241 -40
- aws_cdk/aws_wafv2/__init__.py +118 -30
- aws_cdk/aws_xray/__init__.py +195 -0
- aws_cdk/cloud_assembly_schema/__init__.py +2 -2
- aws_cdk/custom_resources/__init__.py +65 -8
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/METADATA +5 -6
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/RECORD +49 -48
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/top_level.txt +0 -0
|
@@ -1089,7 +1089,7 @@ class AwsCustomResource(
|
|
|
1089
1089
|
:param scope: -
|
|
1090
1090
|
:param id: -
|
|
1091
1091
|
:param function_name: A name for the singleton Lambda function implementing this custom resource. The function name will remain the same after the first AwsCustomResource is created in a stack. Default: - AWS CloudFormation generates a unique physical ID and uses that ID for the function's name. For more information, see Name Type.
|
|
1092
|
-
:param install_latest_aws_sdk: Whether to install the latest AWS SDK
|
|
1092
|
+
:param install_latest_aws_sdk: Whether to install the latest AWS SDK v3. If not specified, this uses whatever JavaScript SDK version is the default in AWS Lambda at the time of execution. Otherwise, installs the latest version from 'npmjs.com'. The installation takes around 60 seconds and requires internet connectivity. The default can be controlled using the context key ``@aws-cdk/customresources:installLatestAwsSdkDefault`` is. Default: - The value of ``@aws-cdk/customresources:installLatestAwsSdkDefault``, otherwise ``true``
|
|
1093
1093
|
:param log_group: The Log Group used for logging of events emitted by the custom resource's lambda function. Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. Default: - a default log group created by AWS Lambda
|
|
1094
1094
|
:param log_retention: The number of days log events of the singleton Lambda function implementing this custom resource are kept in CloudWatch Logs. This is a legacy API and we strongly recommend you migrate to ``logGroup`` if you can. ``logGroup`` allows you to create a fully customizable log group and instruct the Lambda function to send logs to it. Default: logs.RetentionDays.INFINITE
|
|
1095
1095
|
:param memory_size: The memory size for the singleton Lambda function implementing this custom resource. Default: 512 mega in case if installLatestAwsSdk is false.
|
|
@@ -1316,7 +1316,7 @@ class AwsCustomResourceProps:
|
|
|
1316
1316
|
Note that at least onCreate, onUpdate or onDelete must be specified.
|
|
1317
1317
|
|
|
1318
1318
|
:param function_name: A name for the singleton Lambda function implementing this custom resource. The function name will remain the same after the first AwsCustomResource is created in a stack. Default: - AWS CloudFormation generates a unique physical ID and uses that ID for the function's name. For more information, see Name Type.
|
|
1319
|
-
:param install_latest_aws_sdk: Whether to install the latest AWS SDK
|
|
1319
|
+
:param install_latest_aws_sdk: Whether to install the latest AWS SDK v3. If not specified, this uses whatever JavaScript SDK version is the default in AWS Lambda at the time of execution. Otherwise, installs the latest version from 'npmjs.com'. The installation takes around 60 seconds and requires internet connectivity. The default can be controlled using the context key ``@aws-cdk/customresources:installLatestAwsSdkDefault`` is. Default: - The value of ``@aws-cdk/customresources:installLatestAwsSdkDefault``, otherwise ``true``
|
|
1320
1320
|
:param log_group: The Log Group used for logging of events emitted by the custom resource's lambda function. Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. Default: - a default log group created by AWS Lambda
|
|
1321
1321
|
:param log_retention: The number of days log events of the singleton Lambda function implementing this custom resource are kept in CloudWatch Logs. This is a legacy API and we strongly recommend you migrate to ``logGroup`` if you can. ``logGroup`` allows you to create a fully customizable log group and instruct the Lambda function to send logs to it. Default: logs.RetentionDays.INFINITE
|
|
1322
1322
|
:param memory_size: The memory size for the singleton Lambda function implementing this custom resource. Default: 512 mega in case if installLatestAwsSdk is false.
|
|
@@ -1429,7 +1429,7 @@ class AwsCustomResourceProps:
|
|
|
1429
1429
|
|
|
1430
1430
|
@builtins.property
|
|
1431
1431
|
def install_latest_aws_sdk(self) -> typing.Optional[builtins.bool]:
|
|
1432
|
-
'''Whether to install the latest AWS SDK
|
|
1432
|
+
'''Whether to install the latest AWS SDK v3.
|
|
1433
1433
|
|
|
1434
1434
|
If not specified, this uses whatever JavaScript SDK version is the default in
|
|
1435
1435
|
AWS Lambda at the time of execution.
|
|
@@ -2460,6 +2460,8 @@ class Provider(
|
|
|
2460
2460
|
*,
|
|
2461
2461
|
on_event_handler: _IFunction_6adb0ab8,
|
|
2462
2462
|
disable_waiter_state_machine_logging: typing.Optional[builtins.bool] = None,
|
|
2463
|
+
framework_complete_and_timeout_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
2464
|
+
framework_on_event_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
2463
2465
|
is_complete_handler: typing.Optional[_IFunction_6adb0ab8] = None,
|
|
2464
2466
|
log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
|
|
2465
2467
|
log_retention: typing.Optional[_RetentionDays_070f99f0] = None,
|
|
@@ -2478,13 +2480,15 @@ class Provider(
|
|
|
2478
2480
|
:param id: -
|
|
2479
2481
|
:param on_event_handler: The AWS Lambda function to invoke for all resource lifecycle operations (CREATE/UPDATE/DELETE). This function is responsible to begin the requested resource operation (CREATE/UPDATE/DELETE) and return any additional properties to add to the event, which will later be passed to ``isComplete``. The ``PhysicalResourceId`` property must be included in the response.
|
|
2480
2482
|
:param disable_waiter_state_machine_logging: Whether logging for the waiter state machine is disabled. Default: - false
|
|
2483
|
+
:param framework_complete_and_timeout_role: Lambda execution role for provider framework's isComplete/onTimeout Lambda function. Note that this role must be assumed by the 'lambda.amazonaws.com' service principal. To prevent circular dependency problem in the provider framework, please ensure you specify a different IAM Role for 'frameworkCompleteAndTimeoutRole' from 'frameworkOnEventRole'. This property cannot be used with 'role' property Default: - A default role will be created.
|
|
2484
|
+
:param framework_on_event_role: Lambda execution role for provider framework's onEvent Lambda function. Note that this role must be assumed by the 'lambda.amazonaws.com' service principal. This property cannot be used with 'role' property Default: - A default role will be created.
|
|
2481
2485
|
:param is_complete_handler: The AWS Lambda function to invoke in order to determine if the operation is complete. This function will be called immediately after ``onEvent`` and then periodically based on the configured query interval as long as it returns ``false``. If the function still returns ``false`` and the alloted timeout has passed, the operation will fail. Default: - provider is synchronous. This means that the ``onEvent`` handler is expected to finish all lifecycle operations within the initial invocation.
|
|
2482
2486
|
:param log_group: The Log Group used for logging of events emitted by the custom resource's lambda function. Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. Default: - a default log group created by AWS Lambda
|
|
2483
2487
|
:param log_retention: The number of days framework log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. This is a legacy API and we strongly recommend you migrate to ``logGroup`` if you can. ``logGroup`` allows you to create a fully customizable log group and instruct the Lambda function to send logs to it. Default: logs.RetentionDays.INFINITE
|
|
2484
2488
|
:param provider_function_env_encryption: AWS KMS key used to encrypt provider lambda's environment variables. Default: - AWS Lambda creates and uses an AWS managed customer master key (CMK)
|
|
2485
2489
|
:param provider_function_name: Provider Lambda name. The provider lambda function name. Default: - CloudFormation default name from unique physical ID
|
|
2486
2490
|
:param query_interval: Time between calls to the ``isComplete`` handler which determines if the resource has been stabilized. The first ``isComplete`` will be called immediately after ``handler`` and then every ``queryInterval`` seconds, and until ``timeout`` has been reached or until ``isComplete`` returns ``true``. Default: Duration.seconds(5)
|
|
2487
|
-
:param role: AWS Lambda execution role. The role
|
|
2491
|
+
:param role: (deprecated) AWS Lambda execution role. The role is shared by provider framework's onEvent, isComplete lambda, and onTimeout Lambda functions. This role will be assumed by the AWS Lambda, so it must be assumable by the 'lambda.amazonaws.com' service principal. Default: - A default role will be created.
|
|
2488
2492
|
:param security_groups: Security groups to attach to the provider functions. Only used if 'vpc' is supplied Default: - If ``vpc`` is not supplied, no security groups are attached. Otherwise, a dedicated security group is created for each function.
|
|
2489
2493
|
:param total_timeout: Total timeout for the entire operation. The maximum timeout is 1 hour (yes, it can exceed the AWS Lambda 15 minutes) Default: Duration.minutes(30)
|
|
2490
2494
|
:param vpc: The vpc to provision the lambda functions in. Default: - functions are not provisioned inside a vpc.
|
|
@@ -2498,6 +2502,8 @@ class Provider(
|
|
|
2498
2502
|
props = ProviderProps(
|
|
2499
2503
|
on_event_handler=on_event_handler,
|
|
2500
2504
|
disable_waiter_state_machine_logging=disable_waiter_state_machine_logging,
|
|
2505
|
+
framework_complete_and_timeout_role=framework_complete_and_timeout_role,
|
|
2506
|
+
framework_on_event_role=framework_on_event_role,
|
|
2501
2507
|
is_complete_handler=is_complete_handler,
|
|
2502
2508
|
log_group=log_group,
|
|
2503
2509
|
log_retention=log_retention,
|
|
@@ -2539,6 +2545,8 @@ class Provider(
|
|
|
2539
2545
|
name_mapping={
|
|
2540
2546
|
"on_event_handler": "onEventHandler",
|
|
2541
2547
|
"disable_waiter_state_machine_logging": "disableWaiterStateMachineLogging",
|
|
2548
|
+
"framework_complete_and_timeout_role": "frameworkCompleteAndTimeoutRole",
|
|
2549
|
+
"framework_on_event_role": "frameworkOnEventRole",
|
|
2542
2550
|
"is_complete_handler": "isCompleteHandler",
|
|
2543
2551
|
"log_group": "logGroup",
|
|
2544
2552
|
"log_retention": "logRetention",
|
|
@@ -2559,6 +2567,8 @@ class ProviderProps:
|
|
|
2559
2567
|
*,
|
|
2560
2568
|
on_event_handler: _IFunction_6adb0ab8,
|
|
2561
2569
|
disable_waiter_state_machine_logging: typing.Optional[builtins.bool] = None,
|
|
2570
|
+
framework_complete_and_timeout_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
2571
|
+
framework_on_event_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
2562
2572
|
is_complete_handler: typing.Optional[_IFunction_6adb0ab8] = None,
|
|
2563
2573
|
log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
|
|
2564
2574
|
log_retention: typing.Optional[_RetentionDays_070f99f0] = None,
|
|
@@ -2576,13 +2586,15 @@ class ProviderProps:
|
|
|
2576
2586
|
|
|
2577
2587
|
:param on_event_handler: The AWS Lambda function to invoke for all resource lifecycle operations (CREATE/UPDATE/DELETE). This function is responsible to begin the requested resource operation (CREATE/UPDATE/DELETE) and return any additional properties to add to the event, which will later be passed to ``isComplete``. The ``PhysicalResourceId`` property must be included in the response.
|
|
2578
2588
|
:param disable_waiter_state_machine_logging: Whether logging for the waiter state machine is disabled. Default: - false
|
|
2589
|
+
:param framework_complete_and_timeout_role: Lambda execution role for provider framework's isComplete/onTimeout Lambda function. Note that this role must be assumed by the 'lambda.amazonaws.com' service principal. To prevent circular dependency problem in the provider framework, please ensure you specify a different IAM Role for 'frameworkCompleteAndTimeoutRole' from 'frameworkOnEventRole'. This property cannot be used with 'role' property Default: - A default role will be created.
|
|
2590
|
+
:param framework_on_event_role: Lambda execution role for provider framework's onEvent Lambda function. Note that this role must be assumed by the 'lambda.amazonaws.com' service principal. This property cannot be used with 'role' property Default: - A default role will be created.
|
|
2579
2591
|
:param is_complete_handler: The AWS Lambda function to invoke in order to determine if the operation is complete. This function will be called immediately after ``onEvent`` and then periodically based on the configured query interval as long as it returns ``false``. If the function still returns ``false`` and the alloted timeout has passed, the operation will fail. Default: - provider is synchronous. This means that the ``onEvent`` handler is expected to finish all lifecycle operations within the initial invocation.
|
|
2580
2592
|
:param log_group: The Log Group used for logging of events emitted by the custom resource's lambda function. Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. Default: - a default log group created by AWS Lambda
|
|
2581
2593
|
:param log_retention: The number of days framework log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. This is a legacy API and we strongly recommend you migrate to ``logGroup`` if you can. ``logGroup`` allows you to create a fully customizable log group and instruct the Lambda function to send logs to it. Default: logs.RetentionDays.INFINITE
|
|
2582
2594
|
:param provider_function_env_encryption: AWS KMS key used to encrypt provider lambda's environment variables. Default: - AWS Lambda creates and uses an AWS managed customer master key (CMK)
|
|
2583
2595
|
:param provider_function_name: Provider Lambda name. The provider lambda function name. Default: - CloudFormation default name from unique physical ID
|
|
2584
2596
|
:param query_interval: Time between calls to the ``isComplete`` handler which determines if the resource has been stabilized. The first ``isComplete`` will be called immediately after ``handler`` and then every ``queryInterval`` seconds, and until ``timeout`` has been reached or until ``isComplete`` returns ``true``. Default: Duration.seconds(5)
|
|
2585
|
-
:param role: AWS Lambda execution role. The role
|
|
2597
|
+
:param role: (deprecated) AWS Lambda execution role. The role is shared by provider framework's onEvent, isComplete lambda, and onTimeout Lambda functions. This role will be assumed by the AWS Lambda, so it must be assumable by the 'lambda.amazonaws.com' service principal. Default: - A default role will be created.
|
|
2586
2598
|
:param security_groups: Security groups to attach to the provider functions. Only used if 'vpc' is supplied Default: - If ``vpc`` is not supplied, no security groups are attached. Otherwise, a dedicated security group is created for each function.
|
|
2587
2599
|
:param total_timeout: Total timeout for the entire operation. The maximum timeout is 1 hour (yes, it can exceed the AWS Lambda 15 minutes) Default: Duration.minutes(30)
|
|
2588
2600
|
:param vpc: The vpc to provision the lambda functions in. Default: - functions are not provisioned inside a vpc.
|
|
@@ -2628,6 +2640,8 @@ class ProviderProps:
|
|
|
2628
2640
|
type_hints = typing.get_type_hints(_typecheckingstub__32b03803ee02437d8d83814282c700ede5633030e4d9f7ebdaf3b9d075b0cbdb)
|
|
2629
2641
|
check_type(argname="argument on_event_handler", value=on_event_handler, expected_type=type_hints["on_event_handler"])
|
|
2630
2642
|
check_type(argname="argument disable_waiter_state_machine_logging", value=disable_waiter_state_machine_logging, expected_type=type_hints["disable_waiter_state_machine_logging"])
|
|
2643
|
+
check_type(argname="argument framework_complete_and_timeout_role", value=framework_complete_and_timeout_role, expected_type=type_hints["framework_complete_and_timeout_role"])
|
|
2644
|
+
check_type(argname="argument framework_on_event_role", value=framework_on_event_role, expected_type=type_hints["framework_on_event_role"])
|
|
2631
2645
|
check_type(argname="argument is_complete_handler", value=is_complete_handler, expected_type=type_hints["is_complete_handler"])
|
|
2632
2646
|
check_type(argname="argument log_group", value=log_group, expected_type=type_hints["log_group"])
|
|
2633
2647
|
check_type(argname="argument log_retention", value=log_retention, expected_type=type_hints["log_retention"])
|
|
@@ -2645,6 +2659,10 @@ class ProviderProps:
|
|
|
2645
2659
|
}
|
|
2646
2660
|
if disable_waiter_state_machine_logging is not None:
|
|
2647
2661
|
self._values["disable_waiter_state_machine_logging"] = disable_waiter_state_machine_logging
|
|
2662
|
+
if framework_complete_and_timeout_role is not None:
|
|
2663
|
+
self._values["framework_complete_and_timeout_role"] = framework_complete_and_timeout_role
|
|
2664
|
+
if framework_on_event_role is not None:
|
|
2665
|
+
self._values["framework_on_event_role"] = framework_on_event_role
|
|
2648
2666
|
if is_complete_handler is not None:
|
|
2649
2667
|
self._values["is_complete_handler"] = is_complete_handler
|
|
2650
2668
|
if log_group is not None:
|
|
@@ -2692,6 +2710,36 @@ class ProviderProps:
|
|
|
2692
2710
|
result = self._values.get("disable_waiter_state_machine_logging")
|
|
2693
2711
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
2694
2712
|
|
|
2713
|
+
@builtins.property
|
|
2714
|
+
def framework_complete_and_timeout_role(self) -> typing.Optional[_IRole_235f5d8e]:
|
|
2715
|
+
'''Lambda execution role for provider framework's isComplete/onTimeout Lambda function.
|
|
2716
|
+
|
|
2717
|
+
Note that this role
|
|
2718
|
+
must be assumed by the 'lambda.amazonaws.com' service principal. To prevent circular dependency problem
|
|
2719
|
+
in the provider framework, please ensure you specify a different IAM Role for 'frameworkCompleteAndTimeoutRole'
|
|
2720
|
+
from 'frameworkOnEventRole'.
|
|
2721
|
+
|
|
2722
|
+
This property cannot be used with 'role' property
|
|
2723
|
+
|
|
2724
|
+
:default: - A default role will be created.
|
|
2725
|
+
'''
|
|
2726
|
+
result = self._values.get("framework_complete_and_timeout_role")
|
|
2727
|
+
return typing.cast(typing.Optional[_IRole_235f5d8e], result)
|
|
2728
|
+
|
|
2729
|
+
@builtins.property
|
|
2730
|
+
def framework_on_event_role(self) -> typing.Optional[_IRole_235f5d8e]:
|
|
2731
|
+
'''Lambda execution role for provider framework's onEvent Lambda function.
|
|
2732
|
+
|
|
2733
|
+
Note that this role must be assumed
|
|
2734
|
+
by the 'lambda.amazonaws.com' service principal.
|
|
2735
|
+
|
|
2736
|
+
This property cannot be used with 'role' property
|
|
2737
|
+
|
|
2738
|
+
:default: - A default role will be created.
|
|
2739
|
+
'''
|
|
2740
|
+
result = self._values.get("framework_on_event_role")
|
|
2741
|
+
return typing.cast(typing.Optional[_IRole_235f5d8e], result)
|
|
2742
|
+
|
|
2695
2743
|
@builtins.property
|
|
2696
2744
|
def is_complete_handler(self) -> typing.Optional[_IFunction_6adb0ab8]:
|
|
2697
2745
|
'''The AWS Lambda function to invoke in order to determine if the operation is complete.
|
|
@@ -2772,12 +2820,17 @@ class ProviderProps:
|
|
|
2772
2820
|
|
|
2773
2821
|
@builtins.property
|
|
2774
2822
|
def role(self) -> typing.Optional[_IRole_235f5d8e]:
|
|
2775
|
-
'''AWS Lambda execution role.
|
|
2823
|
+
'''(deprecated) AWS Lambda execution role.
|
|
2776
2824
|
|
|
2777
|
-
The role
|
|
2778
|
-
|
|
2825
|
+
The role is shared by provider framework's onEvent, isComplete lambda, and onTimeout Lambda functions.
|
|
2826
|
+
This role will be assumed by the AWS Lambda, so it must be assumable by the 'lambda.amazonaws.com'
|
|
2827
|
+
service principal.
|
|
2779
2828
|
|
|
2780
2829
|
:default: - A default role will be created.
|
|
2830
|
+
|
|
2831
|
+
:deprecated: - Use frameworkOnEventLambdaRole, frameworkIsCompleteLambdaRole, frameworkOnTimeoutLambdaRole
|
|
2832
|
+
|
|
2833
|
+
:stability: deprecated
|
|
2781
2834
|
'''
|
|
2782
2835
|
result = self._values.get("role")
|
|
2783
2836
|
return typing.cast(typing.Optional[_IRole_235f5d8e], result)
|
|
@@ -3373,6 +3426,8 @@ def _typecheckingstub__29415d7bf7977fcf110b77ce69cec309dcf0404601944735020770ddf
|
|
|
3373
3426
|
*,
|
|
3374
3427
|
on_event_handler: _IFunction_6adb0ab8,
|
|
3375
3428
|
disable_waiter_state_machine_logging: typing.Optional[builtins.bool] = None,
|
|
3429
|
+
framework_complete_and_timeout_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
3430
|
+
framework_on_event_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
3376
3431
|
is_complete_handler: typing.Optional[_IFunction_6adb0ab8] = None,
|
|
3377
3432
|
log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
|
|
3378
3433
|
log_retention: typing.Optional[_RetentionDays_070f99f0] = None,
|
|
@@ -3393,6 +3448,8 @@ def _typecheckingstub__32b03803ee02437d8d83814282c700ede5633030e4d9f7ebdaf3b9d07
|
|
|
3393
3448
|
*,
|
|
3394
3449
|
on_event_handler: _IFunction_6adb0ab8,
|
|
3395
3450
|
disable_waiter_state_machine_logging: typing.Optional[builtins.bool] = None,
|
|
3451
|
+
framework_complete_and_timeout_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
3452
|
+
framework_on_event_role: typing.Optional[_IRole_235f5d8e] = None,
|
|
3396
3453
|
is_complete_handler: typing.Optional[_IFunction_6adb0ab8] = None,
|
|
3397
3454
|
log_group: typing.Optional[_ILogGroup_3c4fa718] = None,
|
|
3398
3455
|
log_retention: typing.Optional[_RetentionDays_070f99f0] = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk-lib
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.184.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
|
|
@@ -10,22 +10,21 @@ Classifier: Intended Audience :: Developers
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Programming Language :: JavaScript
|
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
16
|
Classifier: Typing :: Typed
|
|
18
17
|
Classifier: Development Status :: 5 - Production/Stable
|
|
19
18
|
Classifier: License :: OSI Approved
|
|
20
|
-
Requires-Python: ~=3.
|
|
19
|
+
Requires-Python: ~=3.9
|
|
21
20
|
Description-Content-Type: text/markdown
|
|
22
21
|
License-File: LICENSE
|
|
23
22
|
License-File: NOTICE
|
|
24
|
-
Requires-Dist: aws-cdk.asset-awscli-v1<3.0.0,>=2.2.
|
|
23
|
+
Requires-Dist: aws-cdk.asset-awscli-v1<3.0.0,>=2.2.227
|
|
25
24
|
Requires-Dist: aws-cdk.asset-node-proxy-agent-v6<3.0.0,>=2.1.0
|
|
26
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<41.0.0,>=40.
|
|
25
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<41.0.0,>=40.7.0
|
|
27
26
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
28
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
27
|
+
Requires-Dist: jsii<2.0.0,>=1.109.0
|
|
29
28
|
Requires-Dist: publication>=0.0.3
|
|
30
29
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
31
30
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
aws_cdk/__init__.py,sha256=
|
|
1
|
+
aws_cdk/__init__.py,sha256=CT2hAjEz6eznk0nBuMMMKiAoNy1NfwGxf5uzqjCTpY4,1988974
|
|
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=wJ8F17tY6pXe4D4ruPv-vsCRFuy9h5ZdX-bNP0CgwiY,1543
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.184.0.jsii.tgz,sha256=A8ySBLLe8X2sxWXqhAbeY3jjsSI5sH_SQYdAJbCS0Lw,24613161
|
|
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
|
|
@@ -35,27 +35,27 @@ 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=31zyxk0rDUCSa4i83Ab21PDN89qdVM9JnaUqCL9Hvf4,449880
|
|
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=0JKz-CJez5UAh9ru7kR5zMwDaxpq9CwmydYs450cDnU,1505594
|
|
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=LmUGTvh-gfii2fxuUaR5GWanjN8cB94ryx0YfNiJkzE,1753005
|
|
41
41
|
aws_cdk/aws_billingconductor/__init__.py,sha256=d-J_dpWvMOtnkJJIK_Zn0RSP3LeVZl0qY04g62HgqUI,143066
|
|
42
42
|
aws_cdk/aws_budgets/__init__.py,sha256=2vAa1yh0ZeuDPTd0iSKnlYZhvXtk8dm_Jn3qvXr6w-o,163046
|
|
43
43
|
aws_cdk/aws_cassandra/__init__.py,sha256=W_w_HD4VZ8gnk9AVD7cZ_u-kGkK-C6ygW7aKENaPDmg,171087
|
|
44
|
-
aws_cdk/aws_ce/__init__.py,sha256=
|
|
44
|
+
aws_cdk/aws_ce/__init__.py,sha256=Z61-rMUnITaoN7TQFycA7VDA8aY6f07I3ZnpkYJW8_w,89538
|
|
45
45
|
aws_cdk/aws_certificatemanager/__init__.py,sha256=zXPlnTf4cn1B3HHzkvP0P6SQ7tHs76Rabr5PaGA0tM0,156793
|
|
46
46
|
aws_cdk/aws_chatbot/__init__.py,sha256=ywFHM408nEH8HRaOAjwiCjJqhbVDLZoBazwIAnFRyvE,158246
|
|
47
47
|
aws_cdk/aws_cleanrooms/__init__.py,sha256=ODQSNf7LoRveHalAHEK0KZisLkrcpzxRRY-graPQ2Ek,484920
|
|
48
48
|
aws_cdk/aws_cleanroomsml/__init__.py,sha256=OZ769Xji5yR16YuvCcaCuH-5emjHREnhIUqjlw7gXp8,49311
|
|
49
49
|
aws_cdk/aws_cloud9/__init__.py,sha256=WbYJhSBPFY4ix6PJiND_KHPIVWxim7VAsbDJ6ePpGec,43094
|
|
50
|
-
aws_cdk/aws_cloudformation/__init__.py,sha256=
|
|
50
|
+
aws_cdk/aws_cloudformation/__init__.py,sha256=7u_vH1KkZPhdXHeQF7lowC3OOTazNy6VVhfSzuvpkJg,523009
|
|
51
51
|
aws_cdk/aws_cloudfront/__init__.py,sha256=lrA1dgv7ksOyVXtrEkLhKLBMIwcN6sfo8bn2FASf2d8,1636176
|
|
52
|
-
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=
|
|
52
|
+
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=6tyuWzp_aAXavJNY0Biw4oQOGViZEolRSLRkyeaVKM0,142434
|
|
53
53
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=D8kwMlk2NKWrXsB7J9EDcGJYL9BSxN1uXWdw7olR1eg,320367
|
|
54
|
-
aws_cdk/aws_cloudtrail/__init__.py,sha256=
|
|
54
|
+
aws_cdk/aws_cloudtrail/__init__.py,sha256=OHfsyI4ErR7X1fSOjcezQcN0OVu68TcYnQ1Jw1TS11I,365818
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=VHqNGmsxGh8Pay-7dLewu0z--nXt0xIiaTbmQgMJJDA,815681
|
|
56
56
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=NiO4EWHXKqyaPYDW-sVvV0YJep3Z-udkF84JlVAIobY,22370
|
|
57
57
|
aws_cdk/aws_codeartifact/__init__.py,sha256=ysKsozQWde3PaDYQ87_gm3BejhU8rlSX3C3oy81hdcI,88035
|
|
58
|
-
aws_cdk/aws_codebuild/__init__.py,sha256
|
|
58
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=WNRbjKAYbkTvr4Q1ZrhfW3gGxBZpg76S1PZWrVG_O_E,1096432
|
|
59
59
|
aws_cdk/aws_codecommit/__init__.py,sha256=cJe8-KOnQSUarHk_0-uKshcYcNNEGrfDMiAX5jtSnuI,237949
|
|
60
60
|
aws_cdk/aws_codeconnections/__init__.py,sha256=Q57XJwQbJX3HfeJYIcVYjoJw1X5NM4LwStzqeiuqIo0,19964
|
|
61
61
|
aws_cdk/aws_codedeploy/__init__.py,sha256=x7dbc8hkL0IPeQ1z-sMaAkTMkkmuaSUr_PBj6vjSlnc,606569
|
|
@@ -66,7 +66,7 @@ aws_cdk/aws_codepipeline_actions/__init__.py,sha256=ctudwRfgPUlNJj9kNCb8Pq7KO1eA
|
|
|
66
66
|
aws_cdk/aws_codestar/__init__.py,sha256=SJvcSFPGBPwNoxR7MTswiqgSU8HaQ0a0W0EB-zjGvvU,38576
|
|
67
67
|
aws_cdk/aws_codestarconnections/__init__.py,sha256=oGFXDpdwddFIPcXlfZvnonv8M0ALTMpkQXkdaxXfM4I,62714
|
|
68
68
|
aws_cdk/aws_codestarnotifications/__init__.py,sha256=DAjyEup8GY5GIExTaFeiqM4VsbHWhnvjTJRNBPmhTN0,77344
|
|
69
|
-
aws_cdk/aws_cognito/__init__.py,sha256=
|
|
69
|
+
aws_cdk/aws_cognito/__init__.py,sha256=Nh-vaMoqec-DjIjgyrEvVLtZaLageLxc1CgXMWMxmb0,1468722
|
|
70
70
|
aws_cdk/aws_comprehend/__init__.py,sha256=GDiEy9xnCOeMohZp-yAG7enyePdDabwWxpxRSewOvcE,156707
|
|
71
71
|
aws_cdk/aws_config/__init__.py,sha256=L2S5vfPLiR5WGyScjjBflw2EQh_m9WlsnUC2pi0FAwI,866270
|
|
72
72
|
aws_cdk/aws_connect/__init__.py,sha256=kv4KxEz2WfkcACq387j6OQKNW6arzT4Wv6RHg9bkXys,933091
|
|
@@ -86,30 +86,30 @@ aws_cdk/aws_devicefarm/__init__.py,sha256=Z21GYys0UdEgNaGKrgqifJ7AhHjl1n4I6sKPo0
|
|
|
86
86
|
aws_cdk/aws_devopsguru/__init__.py,sha256=lwWFQk86um82RMa2nYWY031kpUOG856qQbAVUbnU6sA,65882
|
|
87
87
|
aws_cdk/aws_directoryservice/__init__.py,sha256=BNqlJ87KcS89A62YiWFqCTpXmFLVa3DWbHp3oRTXS8c,66703
|
|
88
88
|
aws_cdk/aws_dlm/__init__.py,sha256=qs1uPD5T4WKLL_xif8zYk1YXhw5idTfkgW7sFrpztWo,246473
|
|
89
|
-
aws_cdk/aws_dms/__init__.py,sha256=
|
|
89
|
+
aws_cdk/aws_dms/__init__.py,sha256=dacGB7RWjkIkRIpe3Hqkw9SA-RHHhBx5u3j3z1FmIoM,1045378
|
|
90
90
|
aws_cdk/aws_docdb/__init__.py,sha256=WYfy38Sv7GpnLJjOO4CsATCp6-4-6lsokowNSkeOwHU,341392
|
|
91
91
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=8ULf53CjSElODf5ZegB4vP1fvBXVjZjnQOA-D976_nE,46746
|
|
92
92
|
aws_cdk/aws_dynamodb/__init__.py,sha256=MVaXJ5IX_tD7vm3LslNwlS36e6ODRhO77HS6XWghDmM,1018053
|
|
93
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
93
|
+
aws_cdk/aws_ec2/__init__.py,sha256=NnjUQnrPK7lCphYRo5Fq3AWFOX8aSNTAmcSQSSjT6h0,5959161
|
|
94
94
|
aws_cdk/aws_ecr/__init__.py,sha256=JUQxPXkEX82FL_yPZtkDsgUmpNSEd_yf6qi2s8Ol9gI,299736
|
|
95
95
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=pVYFzoIWqh2lGnA0VARJXUwyJJw6BWGteKTiTnQI2UA,84919
|
|
96
96
|
aws_cdk/aws_ecs/__init__.py,sha256=k3VptheG7ph6ik7erCZIRdkhGFcX4GbJkdkyvPEr3iY,2736908
|
|
97
97
|
aws_cdk/aws_ecs_patterns/__init__.py,sha256=BMxXLUS3kQlDxCUBRCIKNcpBxgrXL4whnTYpH-NwK4Q,1039923
|
|
98
98
|
aws_cdk/aws_efs/__init__.py,sha256=Vwby-0vbcL99svN6PMviQkzgmYldJ6wK1q2Ft_giUCk,283704
|
|
99
99
|
aws_cdk/aws_eks/__init__.py,sha256=Dpl5OLCcZJEZNIIoWYb_VxkGtGoYO7E1BEQhmRM1tyc,1239379
|
|
100
|
-
aws_cdk/aws_elasticache/__init__.py,sha256=
|
|
100
|
+
aws_cdk/aws_elasticache/__init__.py,sha256=_eSCh5s-aRFc3-sMmEqA8ZwuV9ZKpac2ctTqQ_28veE,527573
|
|
101
101
|
aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zkQcloEtO1N4Z0oj24wRxhwAEZQnYXhIJFNclDh4SW8,165453
|
|
102
102
|
aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=87f9RCYjZ1tYCg_ork7bK6tEyvVt8J8b6xAr3JTbgpU,163062
|
|
103
103
|
aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=U2qwFiGTK1J2NEHsiK_hj6VYs9-nqoklH9sm28dMcmM,1643993
|
|
104
104
|
aws_cdk/aws_elasticloadbalancingv2_actions/__init__.py,sha256=f1Z8jISyaPwyJRbZMQ19VyQ14UhdMqktNyyIC7iBIvM,23453
|
|
105
105
|
aws_cdk/aws_elasticloadbalancingv2_targets/__init__.py,sha256=0aglECiHfjUuHPhZExXN5DxiKU1CxQw5JyKuulGv0nY,24463
|
|
106
106
|
aws_cdk/aws_elasticsearch/__init__.py,sha256=XT-UWg9waoCpoUFIeipVp_YIuLFm8ooeQmNSo_WLiko,484579
|
|
107
|
-
aws_cdk/aws_emr/__init__.py,sha256=
|
|
107
|
+
aws_cdk/aws_emr/__init__.py,sha256=qP-9c3PI1TltlasLxEKJGXK5YXa1qIquA_U06GWNLvw,766290
|
|
108
108
|
aws_cdk/aws_emrcontainers/__init__.py,sha256=oxnV_uTszH48R3bV661tMkLbbyAphYKzYCg7C8LSOBk,31965
|
|
109
109
|
aws_cdk/aws_emrserverless/__init__.py,sha256=UhwWby2jP2uaBGV5JNhRS1Y-SB914vhJknIleLyitKU,156837
|
|
110
110
|
aws_cdk/aws_entityresolution/__init__.py,sha256=OKdLQprExmxYTJp3Awbtm_rRjTBzh0a8h2xa4m8Sa6Q,268322
|
|
111
|
-
aws_cdk/aws_events/__init__.py,sha256=
|
|
112
|
-
aws_cdk/aws_events_targets/__init__.py,sha256
|
|
111
|
+
aws_cdk/aws_events/__init__.py,sha256=qYkAVTpVRhkr74bB4yAiEwZTPEYIRbiooRFoBWdltqs,690927
|
|
112
|
+
aws_cdk/aws_events_targets/__init__.py,sha256=VjTp0TggOFCaSt09TkbWg4dCEIdh22BodZ7I7LaGe4Q,295737
|
|
113
113
|
aws_cdk/aws_eventschemas/__init__.py,sha256=UUe4lA7r4R1145JUgfbMmvgyLVscusnYYPmuDgUhqU4,72936
|
|
114
114
|
aws_cdk/aws_evidently/__init__.py,sha256=adPCcp-p4hfgkrjB3Hxlmum-NU4gMq9TrWcMEDNhziE,248694
|
|
115
115
|
aws_cdk/aws_finspace/__init__.py,sha256=WoB0n3g8JuoSnzQXAjy3rxKka_vTJBvassXdV8ux5BI,51444
|
|
@@ -119,6 +119,7 @@ aws_cdk/aws_forecast/__init__.py,sha256=axaCnCEG2bM7Bg2EZqMp3Q1NtrOChjHmweGKyH2Z
|
|
|
119
119
|
aws_cdk/aws_frauddetector/__init__.py,sha256=g5M3QBrjZa_z3_3MK8l4oymI2xJwWp-t9Uoe_e16-rU,262259
|
|
120
120
|
aws_cdk/aws_fsx/__init__.py,sha256=ICFBd23fXrwt2BbWWMyh-xEbHm28IFdjaMheXNDIMYg,583751
|
|
121
121
|
aws_cdk/aws_gamelift/__init__.py,sha256=QKZTcBUCwyve8mrNrBh5jLsMNdx5WHoHcu_zth7lsO8,738055
|
|
122
|
+
aws_cdk/aws_gameliftstreams/__init__.py,sha256=Otn1pJDtIbC4SuovmkF4rQR8RVZ0AZosjRGh2dsYgQs,55642
|
|
122
123
|
aws_cdk/aws_globalaccelerator/__init__.py,sha256=7IfeGNzsn9T7rzhqvYLpa70URgBYcSuYQDEdxJLLGqA,233870
|
|
123
124
|
aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7duMb6LWqPPc4KhtF5LnMQYo,26848
|
|
124
125
|
aws_cdk/aws_glue/__init__.py,sha256=LI2OcoGyK8wrl-rawkFda9bGA9LlbQclAMsTqqtASu0,1038143
|
|
@@ -129,45 +130,45 @@ aws_cdk/aws_groundstation/__init__.py,sha256=hPZkcNCJiPbU8-OI4iCYpC27uzednN1Vt6F
|
|
|
129
130
|
aws_cdk/aws_guardduty/__init__.py,sha256=XMUcOWwWMo073sJ_gbrB6FRtN190FVTgLg4oVcdHP1g,261720
|
|
130
131
|
aws_cdk/aws_healthimaging/__init__.py,sha256=bNpcbOhCYjvvgCJwb6pbmA8BH_8RjtjKJZG8f40I8qQ,17410
|
|
131
132
|
aws_cdk/aws_healthlake/__init__.py,sha256=dMFbQBLwb5u5qcae0VijYlqI8dU47O7F4Cr7uSPqFsE,55398
|
|
132
|
-
aws_cdk/aws_iam/__init__.py,sha256=
|
|
133
|
+
aws_cdk/aws_iam/__init__.py,sha256=RudpoLK7DZ17d7sAHzlCUy5MxVRTdgLHnf4S23BwOeY,862810
|
|
133
134
|
aws_cdk/aws_identitystore/__init__.py,sha256=yXjJuier75gXXW5QBSRTsGvDx5BdNdu9VRcnLhbEMlQ,32106
|
|
134
135
|
aws_cdk/aws_imagebuilder/__init__.py,sha256=xnhEuR7Ad_174z7mrTVY9k6e31IKVwOVpXfFUmZHUWI,592140
|
|
135
|
-
aws_cdk/aws_inspector/__init__.py,sha256=
|
|
136
|
+
aws_cdk/aws_inspector/__init__.py,sha256=cjCiSxDMYusGsxpd2a3d2wOIW7UK32LdpPT5FvLDSHU,52446
|
|
136
137
|
aws_cdk/aws_inspectorv2/__init__.py,sha256=lhoSgVEY46jpcneaikoJMwXS3RC6tPKjIggPB4xjXhE,165335
|
|
137
138
|
aws_cdk/aws_internetmonitor/__init__.py,sha256=FpugpXTCcYp_CUFYFH7QM56ZJ4tpXBtMYdP-xA0INa8,83648
|
|
138
139
|
aws_cdk/aws_invoicing/__init__.py,sha256=KTxORme27Kcdk1tHgvnp5_Uv4Yz35yHKRRyoWLVBCkY,31161
|
|
139
|
-
aws_cdk/aws_iot/__init__.py,sha256=
|
|
140
|
+
aws_cdk/aws_iot/__init__.py,sha256=wnnodsKkw2npeAzPmEltIQqMLNrWdHbpN_XOTE1wtOA,1245628
|
|
140
141
|
aws_cdk/aws_iotanalytics/__init__.py,sha256=1HxqAu9zDVNGOXtskvE47QO70V4Atu7RDnaNAibS3fo,360378
|
|
141
142
|
aws_cdk/aws_iotcoredeviceadvisor/__init__.py,sha256=QdtVnj56P0XSXJt9GYeViSdWyfleWiAvoVSuY2IDFIk,32292
|
|
142
143
|
aws_cdk/aws_iotevents/__init__.py,sha256=x-reNiI450GnQ_Id5EkzK1w2WwzCyF0N28T-pBCrcFY,447236
|
|
143
144
|
aws_cdk/aws_iotfleethub/__init__.py,sha256=MAH4xjFll__yoeW3QZT7ax-bIfGHz_m9xTLFarVl0rc,21262
|
|
144
|
-
aws_cdk/aws_iotfleetwise/__init__.py,sha256=
|
|
145
|
-
aws_cdk/aws_iotsitewise/__init__.py,sha256=
|
|
145
|
+
aws_cdk/aws_iotfleetwise/__init__.py,sha256=SrFg1zxQN7qceBU-_4TXPkci9CSLkDND-S2WYP_IBFQ,461658
|
|
146
|
+
aws_cdk/aws_iotsitewise/__init__.py,sha256=2G1hzhcXWTbTATDWXl7hSweJ_cXaDR4fVArMZWhJVFo,371669
|
|
146
147
|
aws_cdk/aws_iotthingsgraph/__init__.py,sha256=gg9NwfV9uFqW6K86FJN42tyqed8OfYc2NIMsn64cSxk,17488
|
|
147
148
|
aws_cdk/aws_iottwinmaker/__init__.py,sha256=OEh9aDebGH1uG3m5X4vQ41MDd60LttdrHR1Lupj7EWQ,290337
|
|
148
149
|
aws_cdk/aws_iotwireless/__init__.py,sha256=4CH5FU78eROY9OERkpEBmjpQin4zX2FdUV_u7EoIEF4,413142
|
|
149
150
|
aws_cdk/aws_ivs/__init__.py,sha256=JH93lwieTEdk59GIqwaxVUftibpm-2G0VpvOgjJXQ0g,232032
|
|
150
151
|
aws_cdk/aws_ivschat/__init__.py,sha256=HiaDg_mYBiXsJOQ-SRqOm3pCVNGSMyZlZPSmP7OiOgo,63899
|
|
151
|
-
aws_cdk/aws_kafkaconnect/__init__.py,sha256=
|
|
152
|
+
aws_cdk/aws_kafkaconnect/__init__.py,sha256=0VUVeEvizVvULeDWkUrmnSIuCPfFSAYU-Rhd-R2IbC8,172933
|
|
152
153
|
aws_cdk/aws_kendra/__init__.py,sha256=wmhRX-J7tHmHyCPlPR-Wh3NcD7XucI4xV0OJnkIM4qo,682344
|
|
153
154
|
aws_cdk/aws_kendraranking/__init__.py,sha256=3HBuK2dbNWAYDUbjyCmc7D9M9pDo1jg-DNCh412kdhY,25204
|
|
154
155
|
aws_cdk/aws_kinesis/__init__.py,sha256=Zy8yybVxFdNNNFkamLRdGFivYe7J90nrGAT_HiGONVM,353435
|
|
155
156
|
aws_cdk/aws_kinesisanalytics/__init__.py,sha256=0ZPCWgzPFOS99sfyhzdTfr7-eQQMoUlR_eDmf5PCmc0,587440
|
|
156
157
|
aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=zAK6orw0mZs0V98cWWb94KcE76_nieuxXVFgKQCD9XM,387963
|
|
157
|
-
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=
|
|
158
|
+
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=iqmnmluI82kvnqebGGMq71O2crmq7BukMZ8fV0zn1Tc,842936
|
|
158
159
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=KR-ZCTMZFNR9EJ32dIjEfeiZQMJZha33v-2lg0-mhYY,38745
|
|
159
160
|
aws_cdk/aws_kms/__init__.py,sha256=zVprnq7sot7-s8S3-EUMDO4YB7Y1DTDIycenuMo3edw,251590
|
|
160
161
|
aws_cdk/aws_lakeformation/__init__.py,sha256=MmGVkaQ4_kMg9y78pdpq-YO4OEJXC5vMi3Z5UliTZ3M,335979
|
|
161
|
-
aws_cdk/aws_lambda/__init__.py,sha256=
|
|
162
|
+
aws_cdk/aws_lambda/__init__.py,sha256=eqma_MLwzFMOHk6IvtWPCkfdf14gqPOHSFYpuUmt7qE,1744704
|
|
162
163
|
aws_cdk/aws_lambda_destinations/__init__.py,sha256=WHB7Vk6jk0pwFVUEAPGfFuSUUOJirZ7h3K5Z92yoE8E,24123
|
|
163
|
-
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=
|
|
164
|
+
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=RrZEPOjJO_mJd-bR1wmP5Su8sFbGcjaZ9gf-KyJ_U-4,247948
|
|
164
165
|
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=5ZHsuf92bN0tyUQDKHmsVuF0s6nW28juTIgcMUyPen4,179430
|
|
165
166
|
aws_cdk/aws_launchwizard/__init__.py,sha256=rPNzud_j-MSKV7aH_fJcJhTHdXtzItJA8hVk37HJHuY,24028
|
|
166
167
|
aws_cdk/aws_lex/__init__.py,sha256=wYvO4joPahEBoAF9dg_wj6u1nymh32ukEYkG4UfWAew,707100
|
|
167
168
|
aws_cdk/aws_licensemanager/__init__.py,sha256=y37V03_LDcfC2j681MxlhN1J5O5o3dJjFZnFJ0u7V9U,87983
|
|
168
169
|
aws_cdk/aws_lightsail/__init__.py,sha256=KmkcfLrR3CMiPBEo6eQynMCi4eWi-nmK_zzFAYh-f1E,540635
|
|
169
170
|
aws_cdk/aws_location/__init__.py,sha256=NYplr3y4CQ0jwMMzJHtdPwfLOT4IuDCPgmJOO8_Ub-M,206501
|
|
170
|
-
aws_cdk/aws_logs/__init__.py,sha256=
|
|
171
|
+
aws_cdk/aws_logs/__init__.py,sha256=9loKhnQZPq74taBvlLnP-kRTX0q9VGpgVHQlo7o6G-c,795929
|
|
171
172
|
aws_cdk/aws_logs_destinations/__init__.py,sha256=PeHzCEdgpSjOK9a-gcjQDrvkaYPh7a_dm8n40OimfUE,12811
|
|
172
173
|
aws_cdk/aws_lookoutequipment/__init__.py,sha256=Fe9zxH-m07GxYnFan0JQvtzyUBRyfUYiXOCB0Jd8tXg,59482
|
|
173
174
|
aws_cdk/aws_lookoutmetrics/__init__.py,sha256=1c54i_vcrqAvaWckONfh13-jVU7NwRd9CyBUPoW1RKY,158857
|
|
@@ -177,16 +178,16 @@ aws_cdk/aws_macie/__init__.py,sha256=xXvQHQdKuJ7SofkaDYmRiLmRD_tJpnylnTOfIXxTYwg
|
|
|
177
178
|
aws_cdk/aws_managedblockchain/__init__.py,sha256=WxVZF_ow6armjJzcITtlgPujUTnLwYWX-rWIzM82K24,100887
|
|
178
179
|
aws_cdk/aws_mediaconnect/__init__.py,sha256=6EJuYbnT4e4DSc4IEcX6iUJbCsuZHY3Ld_Z7JwVb_EM,548399
|
|
179
180
|
aws_cdk/aws_mediaconvert/__init__.py,sha256=ZfjtSjqYyAhLR-O8I46o8VoKV0BaquNucRO6JH6Wdvk,90282
|
|
180
|
-
aws_cdk/aws_medialive/__init__.py,sha256=
|
|
181
|
+
aws_cdk/aws_medialive/__init__.py,sha256=Oqc2qnz_qNjld5mvuwcqNZsO6rHCSCMKGjyX3tUNUnQ,2000996
|
|
181
182
|
aws_cdk/aws_mediapackage/__init__.py,sha256=4JVrXRSIj0JAQxOe0I2PHHaTmOGSnKxeiDYd3TxgTD0,443187
|
|
182
183
|
aws_cdk/aws_mediapackagev2/__init__.py,sha256=MLfjucHsE_j-ua80SAoY9TY3plRdVJeTe_mvD9HlXqs,249383
|
|
183
184
|
aws_cdk/aws_mediastore/__init__.py,sha256=q-oy27t6Z9XihVlcW0gtbWltKaLyj4dCNKJfVyOrp0U,59415
|
|
184
185
|
aws_cdk/aws_mediatailor/__init__.py,sha256=_GCfojwf6sP0Yk6tGGQTUtt6HsTSkPvYtp1jA4qVEaU,271370
|
|
185
186
|
aws_cdk/aws_memorydb/__init__.py,sha256=vQzHmy32WxrwE4tITCeQfCOZk0HBDHAMvA9-ykquu3A,176336
|
|
186
|
-
aws_cdk/aws_msk/__init__.py,sha256=
|
|
187
|
+
aws_cdk/aws_msk/__init__.py,sha256=jDgOlmucsCqkVqaV-LvshO5SiujO854TeS7MIdD1d3Q,340420
|
|
187
188
|
aws_cdk/aws_mwaa/__init__.py,sha256=enLeXo2v9X1wbCcYo2eJK_aGaDvBpwOUPCkdjRIy9mw,118009
|
|
188
189
|
aws_cdk/aws_neptune/__init__.py,sha256=lznv7vTg35DBXa-QIub17pSm-lhEF840_vk45w0_0XU,213043
|
|
189
|
-
aws_cdk/aws_neptunegraph/__init__.py,sha256=
|
|
190
|
+
aws_cdk/aws_neptunegraph/__init__.py,sha256=rsaXbQl7UfVC1AI71X8IQdMakkNkqfCEzRlQXrPgK8s,50945
|
|
190
191
|
aws_cdk/aws_networkfirewall/__init__.py,sha256=UP3aJ_V0VrsDE_dSgL13CN37tJGGV0GLOnh9xSMHsQ0,426195
|
|
191
192
|
aws_cdk/aws_networkmanager/__init__.py,sha256=WzYb3eY-9rHJd-Gn82eXHBlmQ7JWp-4fzXWZnuxX_18,444915
|
|
192
193
|
aws_cdk/aws_nimblestudio/__init__.py,sha256=HfPXX6dd1EIraJtw037w7kCsDHon6TRDgE7O3xyAqQA,200871
|
|
@@ -194,7 +195,7 @@ aws_cdk/aws_notifications/__init__.py,sha256=KamPOKidmdEYT0iOq10cLORZfyx6AWxTdhF
|
|
|
194
195
|
aws_cdk/aws_notificationscontacts/__init__.py,sha256=mcjKdAlwKIg6bZM3f1sqC25vc9WcY3N-W5bbTLKQVDY,25712
|
|
195
196
|
aws_cdk/aws_oam/__init__.py,sha256=0qetIc7_rUXkL7S1zYnpxf0qlXIvtFg5oCPIorDLSr4,50978
|
|
196
197
|
aws_cdk/aws_omics/__init__.py,sha256=NR3_mE3uKGgGBpebGkT2HLfX62shU4qsc6fNyFeRTOQ,157529
|
|
197
|
-
aws_cdk/aws_opensearchserverless/__init__.py,sha256=
|
|
198
|
+
aws_cdk/aws_opensearchserverless/__init__.py,sha256=6KuEhtVg2pro6zjYGoyQiHkbgp-Kw4C0F12VDT99SMA,167156
|
|
198
199
|
aws_cdk/aws_opensearchservice/__init__.py,sha256=8-8bid264TPa-rRZA-nXtZNqYM08IoGG8zld4QZNT5Y,653034
|
|
199
200
|
aws_cdk/aws_opsworks/__init__.py,sha256=8V_ueRxKAdkbxMoaSbJNbdrlbSbswYlEaFCSzm-aHk4,437770
|
|
200
201
|
aws_cdk/aws_opsworkscm/__init__.py,sha256=I7MOUF6zDNYpn-1TNoJWLK7sNObnKuFzXzcS3ixG3ug,88231
|
|
@@ -212,11 +213,11 @@ aws_cdk/aws_pipes/__init__.py,sha256=0AiR43fCYOrLy8BWp-G_djvLbnKuLlFIqCQbL3xtP7Q
|
|
|
212
213
|
aws_cdk/aws_proton/__init__.py,sha256=tpbXvDjtyU1SyvVXJEaqwaJAMiZ1xlriFJhfqpJPOOs,71292
|
|
213
214
|
aws_cdk/aws_qbusiness/__init__.py,sha256=y6l8RSY-DTF1uYuJ1vACmpsAPIZC_lktCVLS_YxRQNI,481093
|
|
214
215
|
aws_cdk/aws_qldb/__init__.py,sha256=Y77mQlE_bPnvp2-xi6Zx7Nqq88MVjB0bGsFskfkTpj8,63825
|
|
215
|
-
aws_cdk/aws_quicksight/__init__.py,sha256=
|
|
216
|
+
aws_cdk/aws_quicksight/__init__.py,sha256=GmBXrz4cuiOiHZBU24eKDQWKek5uI9z_KDoJpP3xxTA,14366277
|
|
216
217
|
aws_cdk/aws_ram/__init__.py,sha256=hTueUpQ-pdpE9TIHA7Ekd4-IMhT006gRbqhaUtTDDy0,51838
|
|
217
218
|
aws_cdk/aws_rbin/__init__.py,sha256=CzabGGl5JnclFXLGuB8hu8bf_z0rWog3FqYK7o84QYo,50396
|
|
218
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
219
|
-
aws_cdk/aws_redshift/__init__.py,sha256
|
|
219
|
+
aws_cdk/aws_rds/__init__.py,sha256=zpJhdg10EBWDOXz3ffCnH3YKld4q4s26VRRRgkPQCvw,2929219
|
|
220
|
+
aws_cdk/aws_redshift/__init__.py,sha256=_bz821c0euCtdo8lBVuh1EQ7r3Rg3kvzgCfEJz1bmLw,405044
|
|
220
221
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=_sToFikuIuA0NKu0ug8TqhCnDsCu-5SLosIeCvtxkH0,170949
|
|
221
222
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=HlrRPKH0kwPz6Ka6zooBl3hqU5s6lpjiLrMjJXHDIro,123625
|
|
222
223
|
aws_cdk/aws_rekognition/__init__.py,sha256=tfQC6KNmufoRNg7cwsMziN0WeEjCi0ht2eAP3tJAUU8,120935
|
|
@@ -241,13 +242,13 @@ aws_cdk/aws_s3express/__init__.py,sha256=Ey2TqZ09cdHtl8rujUVC1IgQa54qiT2B1tFQGzC
|
|
|
241
242
|
aws_cdk/aws_s3objectlambda/__init__.py,sha256=SIlxWqJL2Ssm_ypY8fqfOrr0i01Swdw5eG1SIOPNqBg,68692
|
|
242
243
|
aws_cdk/aws_s3outposts/__init__.py,sha256=E_82WGxBiu2QGNbY88JpkS5qvNNiQ9Hb9Thi3ZHV9k8,115636
|
|
243
244
|
aws_cdk/aws_s3tables/__init__.py,sha256=JJEX51HJKKM6N8_3B8C62tncam0E9StSJDJW7GLmuKE,31603
|
|
244
|
-
aws_cdk/aws_sagemaker/__init__.py,sha256=
|
|
245
|
+
aws_cdk/aws_sagemaker/__init__.py,sha256=OLbuqUKf6QTCkvg3Q4i5G4e-nyGpofCqziL32f84PeE,3121537
|
|
245
246
|
aws_cdk/aws_sam/__init__.py,sha256=GwhKjo0X2m3Hcdj0nmqqVJkGn9h2WbkB5UL_pidSH44,757717
|
|
246
247
|
aws_cdk/aws_scheduler/__init__.py,sha256=oGZiOom3R7ap664AOTZKKtMA7R1E0Y2rTCCL2OL9exY,158932
|
|
247
248
|
aws_cdk/aws_sdb/__init__.py,sha256=83MI2E_PaxkR5JTx1TB0X0cMVf7KsxXNY0MI1h_5T6A,10788
|
|
248
249
|
aws_cdk/aws_secretsmanager/__init__.py,sha256=koa6c4BhHcf-6UlSKrjyFZnDrw1xEt7NZU1StDNEq9s,387865
|
|
249
250
|
aws_cdk/aws_securityhub/__init__.py,sha256=G59_9h5LRgCRrSTu5CQEsvzSJzzL6vyNYx0hro77u_M,735275
|
|
250
|
-
aws_cdk/aws_securitylake/__init__.py,sha256=
|
|
251
|
+
aws_cdk/aws_securitylake/__init__.py,sha256=xz7jAUlOeZKb0_qiCPk7pQD99IX8hkRiu3Khk8FZ6Zc,143360
|
|
251
252
|
aws_cdk/aws_servicecatalog/__init__.py,sha256=TCpVK7DJtj6XzY7jp_yG2aR7kRr5ZoyE806yZNo1qI8,545061
|
|
252
253
|
aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=urPoS8H7S8SUOPqgBx-YVblPFwIfkmzt5T8PcfO14u8,57183
|
|
253
254
|
aws_cdk/aws_servicediscovery/__init__.py,sha256=H6AQzrCQGPO4c7ktgjj7UwBt5RzGcJISiKWfMkTOd9o,367859
|
|
@@ -267,33 +268,33 @@ aws_cdk/aws_sso/__init__.py,sha256=cVECvphmmkiiwwkz5D4fTc1hvpHZh2GJ5HIPkojtk2s,1
|
|
|
267
268
|
aws_cdk/aws_stepfunctions/__init__.py,sha256=3XISZT4SVgiiiyUS7Q-5yzxHgTo-7V5nxD2OJ_oS2R4,1389932
|
|
268
269
|
aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=PFDv5PNL3Kk1mnyrkPkM2yrS2_lL-BTfw6oyg2cB0Yw,5118865
|
|
269
270
|
aws_cdk/aws_supportapp/__init__.py,sha256=B32RErRZHGz0WztdcmabGTML_BGJERh8Cj7I1w_f048,49292
|
|
270
|
-
aws_cdk/aws_synthetics/__init__.py,sha256=
|
|
271
|
+
aws_cdk/aws_synthetics/__init__.py,sha256=uA-B5P2y8KJsiHy9LUDd3jT5TKvSHaj6EIZKPl1dqOQ,274254
|
|
271
272
|
aws_cdk/aws_systemsmanagersap/__init__.py,sha256=I9r9r-Aw_Qd8PuvOWXdSEIOITzlK9PMC8OISc-UF4Lo,32818
|
|
272
273
|
aws_cdk/aws_timestream/__init__.py,sha256=H8FsZmYu015c0A-PqfTINg6AO-g2D1oXy2JqlqitVpY,246308
|
|
273
|
-
aws_cdk/aws_transfer/__init__.py,sha256=
|
|
274
|
+
aws_cdk/aws_transfer/__init__.py,sha256=PQ2qhh_u9IFNtaHAoBIcAXyIOqS-WlU9qARMs-uSvfI,460599
|
|
274
275
|
aws_cdk/aws_verifiedpermissions/__init__.py,sha256=3WdGsRMPeelf1NRu4lir1_-M7P6r0Ex5lgFxsYMTZ2w,154844
|
|
275
276
|
aws_cdk/aws_voiceid/__init__.py,sha256=oNdK-k5gt0-X0evdU_Qxb39gB6Ec6AxIok_RBnEUD2E,22487
|
|
276
277
|
aws_cdk/aws_vpclattice/__init__.py,sha256=mwmiTtBD2rIi2umCjXi3kDbj84o37YYO92c2mDiSJG8,378198
|
|
277
278
|
aws_cdk/aws_waf/__init__.py,sha256=RBdzr4Bd3UjK9V5TtdyemLWOY0WR-JUEh0WjHBTJuRU,212199
|
|
278
279
|
aws_cdk/aws_wafregional/__init__.py,sha256=j18Bfp911qSJGxfyxxs5VOPxhFbiCeZW8Tz4wFC4pa4,276775
|
|
279
|
-
aws_cdk/aws_wafv2/__init__.py,sha256=
|
|
280
|
+
aws_cdk/aws_wafv2/__init__.py,sha256=PdwgsQlAMB1nz_AlP5D5lZBxA-s-rAyUw7waE_dF0Pk,1451954
|
|
280
281
|
aws_cdk/aws_wisdom/__init__.py,sha256=IhuAmt8H5SOzeDF9Xx1ZYZUU17mY6E0rkdMJ8wFsSI4,638986
|
|
281
282
|
aws_cdk/aws_workspaces/__init__.py,sha256=agC72J8zP_G2NI4nzzYjmlSNUygoa7f-ebFcfxhSBts,99201
|
|
282
283
|
aws_cdk/aws_workspacesthinclient/__init__.py,sha256=nFSsouXqpjSDrsEBOH0CGV6CCwHxCjNACgcigDEMN8g,49517
|
|
283
284
|
aws_cdk/aws_workspacesweb/__init__.py,sha256=CppQEMxEhUPkEPh6MmFFfhsm1c2TybopdiZGuuiAEfA,280980
|
|
284
|
-
aws_cdk/aws_xray/__init__.py,sha256=
|
|
285
|
-
aws_cdk/cloud_assembly_schema/__init__.py,sha256=
|
|
285
|
+
aws_cdk/aws_xray/__init__.py,sha256=xEfRY-cPsnAqrrYueXFUxXskU4CxwejB1wrTMGrNKCc,106868
|
|
286
|
+
aws_cdk/cloud_assembly_schema/__init__.py,sha256=7FnuQlp_Lxoe9Qqqysx7AIR7oUEeMLsxjoM_FdCgkBE,440021
|
|
286
287
|
aws_cdk/cloudformation_include/__init__.py,sha256=nWU59UskSwMHLVfmA2qrsTOqUk65NWElIPTvp-KLA_8,50358
|
|
287
|
-
aws_cdk/custom_resources/__init__.py,sha256=
|
|
288
|
+
aws_cdk/custom_resources/__init__.py,sha256=lZy80GjA5K94Dr5vkA4C_77fc4Ow0vrSBQ-4P6K2M18,173059
|
|
288
289
|
aws_cdk/cx_api/__init__.py,sha256=soCQVBkw6fPzkwGqmqxizGVpq9Mq6asAuhqICFAm0wo,176191
|
|
289
290
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=FUcVOwp5XHkYiFms2BGfZWWYCo4vujoEtc9uN-Jc570,3291
|
|
290
291
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=Q0PMbPsP4A7YO-YZe9esn-iziyQHEXR5z1CSSNfeHn8,3306
|
|
291
292
|
aws_cdk/pipelines/__init__.py,sha256=HOXBjF1CPi8wQm8zl8Si7G8DpfKl_DyY7-Bgm8WpjEU,397495
|
|
292
293
|
aws_cdk/region_info/__init__.py,sha256=29jwDjGrb4gSGedV1W1e5SuAYF9ZZKYsz0gsSFjdBO4,39658
|
|
293
294
|
aws_cdk/triggers/__init__.py,sha256=fPVnj7ot9BFSzO-cTWQz9bMuGPG1hqZFJ7ROMkq0vnk,123578
|
|
294
|
-
aws_cdk_lib-2.
|
|
295
|
-
aws_cdk_lib-2.
|
|
296
|
-
aws_cdk_lib-2.
|
|
297
|
-
aws_cdk_lib-2.
|
|
298
|
-
aws_cdk_lib-2.
|
|
299
|
-
aws_cdk_lib-2.
|
|
295
|
+
aws_cdk_lib-2.184.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
296
|
+
aws_cdk_lib-2.184.0.dist-info/METADATA,sha256=i5GoAlihy28LeP_jrAkpMR4Hm1zrZtzSbx8ISVXcWyw,59922
|
|
297
|
+
aws_cdk_lib-2.184.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
|
|
298
|
+
aws_cdk_lib-2.184.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
299
|
+
aws_cdk_lib-2.184.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
300
|
+
aws_cdk_lib-2.184.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|