aws-cdk-lib 2.178.2__py3-none-any.whl → 2.180.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (70) hide show
  1. aws_cdk/__init__.py +83 -41
  2. aws_cdk/_jsii/__init__.py +1 -2
  3. aws_cdk/_jsii/{aws-cdk-lib@2.178.2.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +47 -0
  5. aws_cdk/aws_apigateway/__init__.py +176 -35
  6. aws_cdk/aws_apigatewayv2/__init__.py +151 -32
  7. aws_cdk/aws_apigatewayv2_integrations/__init__.py +348 -0
  8. aws_cdk/aws_applicationautoscaling/__init__.py +8 -8
  9. aws_cdk/aws_appsync/__init__.py +10 -7
  10. aws_cdk/aws_backup/__init__.py +89 -0
  11. aws_cdk/aws_batch/__init__.py +89 -50
  12. aws_cdk/aws_bedrock/__init__.py +506 -62
  13. aws_cdk/aws_cloudfront/__init__.py +1037 -146
  14. aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
  15. aws_cdk/aws_cloudtrail/__init__.py +4 -8
  16. aws_cdk/aws_cloudwatch/__init__.py +1 -1
  17. aws_cdk/aws_codebuild/__init__.py +218 -2
  18. aws_cdk/aws_codepipeline/__init__.py +113 -28
  19. aws_cdk/aws_codepipeline_actions/__init__.py +554 -63
  20. aws_cdk/aws_codestar/__init__.py +2 -1
  21. aws_cdk/aws_cognito/__init__.py +676 -29
  22. aws_cdk/aws_connect/__init__.py +257 -0
  23. aws_cdk/aws_datasync/__init__.py +279 -50
  24. aws_cdk/aws_deadline/__init__.py +683 -6
  25. aws_cdk/aws_directoryservice/__init__.py +9 -4
  26. aws_cdk/aws_dlm/__init__.py +2 -2
  27. aws_cdk/aws_dms/__init__.py +3 -3
  28. aws_cdk/aws_dynamodb/__init__.py +0 -54
  29. aws_cdk/aws_ec2/__init__.py +402 -130
  30. aws_cdk/aws_ecs/__init__.py +28 -43
  31. aws_cdk/aws_efs/__init__.py +1 -1
  32. aws_cdk/aws_eks/__init__.py +560 -182
  33. aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -27
  34. aws_cdk/aws_emrcontainers/__init__.py +44 -1
  35. aws_cdk/aws_events/__init__.py +17 -26
  36. aws_cdk/aws_events_targets/__init__.py +303 -16
  37. aws_cdk/aws_fms/__init__.py +5 -5
  38. aws_cdk/aws_fsx/__init__.py +5 -4
  39. aws_cdk/aws_glue/__init__.py +161 -0
  40. aws_cdk/aws_groundstation/__init__.py +23 -1
  41. aws_cdk/aws_iam/__init__.py +15 -15
  42. aws_cdk/aws_iot/__init__.py +7 -0
  43. aws_cdk/aws_ivs/__init__.py +254 -77
  44. aws_cdk/aws_kinesis/__init__.py +689 -35
  45. aws_cdk/aws_lambda/__init__.py +10 -15
  46. aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
  47. aws_cdk/aws_logs/__init__.py +62 -13
  48. aws_cdk/aws_medialive/__init__.py +314 -4
  49. aws_cdk/aws_opensearchserverless/__init__.py +19 -0
  50. aws_cdk/aws_pinpoint/__init__.py +14 -9
  51. aws_cdk/aws_rds/__init__.py +246 -82
  52. aws_cdk/aws_s3/__init__.py +287 -9
  53. aws_cdk/aws_s3objectlambda/__init__.py +2 -2
  54. aws_cdk/aws_ses/__init__.py +228 -8
  55. aws_cdk/aws_ssm/__init__.py +4 -5
  56. aws_cdk/aws_stepfunctions/__init__.py +301 -70
  57. aws_cdk/aws_stepfunctions_tasks/__init__.py +269 -163
  58. aws_cdk/aws_supportapp/__init__.py +7 -7
  59. aws_cdk/aws_transfer/__init__.py +820 -2
  60. aws_cdk/aws_wafv2/__init__.py +17 -9
  61. aws_cdk/custom_resources/__init__.py +23 -26
  62. aws_cdk/cx_api/__init__.py +16 -0
  63. aws_cdk/pipelines/__init__.py +2 -2
  64. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -2
  65. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +69 -70
  66. aws_cdk/lambda_layer_kubectl/__init__.py +0 -107
  67. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
  68. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
  69. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
  70. {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
@@ -468,6 +468,8 @@ class CfnLoggingConfiguration(
468
468
  '''Defines an association between logging destinations and a web ACL resource, for logging from AWS WAF .
469
469
 
470
470
  As part of the association, you can specify parts of the standard logging fields to keep out of the logs and you can specify filters so that you log only a subset of the logging records.
471
+
472
+ If you configure data protection for the web ACL, the protection applies to the data that AWS WAF sends to the logs.
471
473
  .. epigraph::
472
474
 
473
475
  You can define one logging destination per web ACL.
@@ -535,7 +537,7 @@ class CfnLoggingConfiguration(
535
537
  :param log_destination_configs: The logging destination configuration that you want to associate with the web ACL. .. epigraph:: You can associate one logging destination to a web ACL.
536
538
  :param resource_arn: The Amazon Resource Name (ARN) of the web ACL that you want to associate with ``LogDestinationConfigs`` .
537
539
  :param logging_filter: Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
538
- :param redacted_fields: The parts of the request that you want to keep out of the logs. For example, if you redact the ``SingleHeader`` field, the ``HEADER`` field in the logs will be ``REDACTED`` for all rules that use the ``SingleHeader`` ``FieldToMatch`` setting. Redaction applies only to the component that's specified in the rule's ``FieldToMatch`` setting, so the ``SingleHeader`` redaction doesn't apply to rules that use the ``Headers`` ``FieldToMatch`` . .. epigraph:: You can specify only the following fields for redaction: ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` . > This setting has no impact on request sampling. With request sampling, the only way to exclude fields is by disabling sampling in the web ACL visibility configuration.
540
+ :param redacted_fields: The parts of the request that you want to keep out of the logs. For example, if you redact the ``SingleHeader`` field, the ``HEADER`` field in the logs will be ``REDACTED`` for all rules that use the ``SingleHeader`` ``FieldToMatch`` setting. If you configure data protection for the web ACL, the protection applies to the data that AWS WAF sends to the logs. Redaction applies only to the component that's specified in the rule's ``FieldToMatch`` setting, so the ``SingleHeader`` redaction doesn't apply to rules that use the ``Headers`` ``FieldToMatch`` . .. epigraph:: You can specify only the following fields for redaction: ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` . > This setting has no impact on request sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
539
541
  '''
540
542
  if __debug__:
541
543
  type_hints = typing.get_type_hints(_typecheckingstub__8a8c4ba5ee1b98a4ed1dd5001182ec8712406026687793bcb17c7a78771fa41c)
@@ -1430,7 +1432,7 @@ class CfnLoggingConfigurationProps:
1430
1432
  :param log_destination_configs: The logging destination configuration that you want to associate with the web ACL. .. epigraph:: You can associate one logging destination to a web ACL.
1431
1433
  :param resource_arn: The Amazon Resource Name (ARN) of the web ACL that you want to associate with ``LogDestinationConfigs`` .
1432
1434
  :param logging_filter: Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
1433
- :param redacted_fields: The parts of the request that you want to keep out of the logs. For example, if you redact the ``SingleHeader`` field, the ``HEADER`` field in the logs will be ``REDACTED`` for all rules that use the ``SingleHeader`` ``FieldToMatch`` setting. Redaction applies only to the component that's specified in the rule's ``FieldToMatch`` setting, so the ``SingleHeader`` redaction doesn't apply to rules that use the ``Headers`` ``FieldToMatch`` . .. epigraph:: You can specify only the following fields for redaction: ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` . > This setting has no impact on request sampling. With request sampling, the only way to exclude fields is by disabling sampling in the web ACL visibility configuration.
1435
+ :param redacted_fields: The parts of the request that you want to keep out of the logs. For example, if you redact the ``SingleHeader`` field, the ``HEADER`` field in the logs will be ``REDACTED`` for all rules that use the ``SingleHeader`` ``FieldToMatch`` setting. If you configure data protection for the web ACL, the protection applies to the data that AWS WAF sends to the logs. Redaction applies only to the component that's specified in the rule's ``FieldToMatch`` setting, so the ``SingleHeader`` redaction doesn't apply to rules that use the ``Headers`` ``FieldToMatch`` . .. epigraph:: You can specify only the following fields for redaction: ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` . > This setting has no impact on request sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
1434
1436
 
1435
1437
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-loggingconfiguration.html
1436
1438
  :exampleMetadata: fixture=_generated
@@ -1521,10 +1523,12 @@ class CfnLoggingConfigurationProps:
1521
1523
 
1522
1524
  For example, if you redact the ``SingleHeader`` field, the ``HEADER`` field in the logs will be ``REDACTED`` for all rules that use the ``SingleHeader`` ``FieldToMatch`` setting.
1523
1525
 
1526
+ If you configure data protection for the web ACL, the protection applies to the data that AWS WAF sends to the logs.
1527
+
1524
1528
  Redaction applies only to the component that's specified in the rule's ``FieldToMatch`` setting, so the ``SingleHeader`` redaction doesn't apply to rules that use the ``Headers`` ``FieldToMatch`` .
1525
1529
  .. epigraph::
1526
1530
 
1527
- You can specify only the following fields for redaction: ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` . > This setting has no impact on request sampling. With request sampling, the only way to exclude fields is by disabling sampling in the web ACL visibility configuration.
1531
+ You can specify only the following fields for redaction: ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` . > This setting has no impact on request sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
1528
1532
 
1529
1533
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-loggingconfiguration.html#cfn-wafv2-loggingconfiguration-redactedfields
1530
1534
  '''
@@ -4435,7 +4439,7 @@ class CfnRuleGroup(
4435
4439
  - In a logging configuration, this is used in the ``RedactedFields`` property to specify a field to redact from the logging records. For this use case, note the following:
4436
4440
  - Even though all ``FieldToMatch`` settings are available, the only valid settings for field redaction are ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` .
4437
4441
  - In this documentation, the descriptions of the individual fields talk about specifying the web request component to inspect, but for field redaction, you are specifying the component type to redact from the logs.
4438
- - If you have request sampling enabled, the redacted fields configuration for logging has no impact on sampling. The only way to exclude fields from request sampling is by disabling sampling in the web ACL visibility configuration.
4442
+ - If you have request sampling enabled, the redacted fields configuration for logging has no impact on sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
4439
4443
 
4440
4444
  :param all_query_arguments: Inspect all query arguments.
4441
4445
  :param body: Inspect the request body as plain text. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form. AWS WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to AWS WAF for inspection. - For Application Load Balancer and AWS AppSync , the limit is fixed at 8 KB (8,192 bytes). - For CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access, the default limit is 16 KB (16,384 bytes), and you can increase the limit for each resource type in the web ACL ``AssociationConfig`` , for additional processing fees. For information about how to handle oversized request bodies, see the ``Body`` object configuration.
@@ -10492,7 +10496,7 @@ class CfnRuleGroup(
10492
10496
 
10493
10497
  :param cloud_watch_metrics_enabled: Indicates whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see `AWS WAF Metrics <https://docs.aws.amazon.com/waf/latest/developerguide/monitoring-cloudwatch.html#waf-metrics>`_ in the *AWS WAF Developer Guide* . For web ACLs, the metrics are for web requests that have the web ACL default action applied. AWS WAF applies the default action to web requests that pass the inspection of all rules in the web ACL without being either allowed or blocked. For more information, see `The web ACL default action <https://docs.aws.amazon.com/waf/latest/developerguide/web-acl-default-action.html>`_ in the *AWS WAF Developer Guide* .
10494
10498
  :param metric_name: A name of the Amazon CloudWatch metric dimension. The name can contain only the characters: A-Z, a-z, 0-9, - (hyphen), and _ (underscore). The name can be from one to 128 characters long. It can't contain whitespace or metric names that are reserved for AWS WAF , for example ``All`` and ``Default_Action`` .
10495
- :param sampled_requests_enabled: Indicates whether AWS WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the AWS WAF console. .. epigraph:: Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. The only way to exclude fields from request sampling is by disabling sampling in the web ACL visibility configuration.
10499
+ :param sampled_requests_enabled: Indicates whether AWS WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the AWS WAF console. If you configure data protection for the web ACL, the protection applies to the web ACL's sampled web request data. .. epigraph:: Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
10496
10500
 
10497
10501
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html
10498
10502
  :exampleMetadata: fixture=_generated
@@ -10556,9 +10560,11 @@ class CfnRuleGroup(
10556
10560
  '''Indicates whether AWS WAF should store a sampling of the web requests that match the rules.
10557
10561
 
10558
10562
  You can view the sampled requests through the AWS WAF console.
10563
+
10564
+ If you configure data protection for the web ACL, the protection applies to the web ACL's sampled web request data.
10559
10565
  .. epigraph::
10560
10566
 
10561
- Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. The only way to exclude fields from request sampling is by disabling sampling in the web ACL visibility configuration.
10567
+ Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
10562
10568
 
10563
10569
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-visibilityconfig.html#cfn-wafv2-rulegroup-visibilityconfig-sampledrequestsenabled
10564
10570
  '''
@@ -13915,7 +13921,7 @@ class CfnWebACL(
13915
13921
  - In a logging configuration, this is used in the ``RedactedFields`` property to specify a field to redact from the logging records. For this use case, note the following:
13916
13922
  - Even though all ``FieldToMatch`` settings are available, the only valid settings for field redaction are ``UriPath`` , ``QueryString`` , ``SingleHeader`` , and ``Method`` .
13917
13923
  - In this documentation, the descriptions of the individual fields talk about specifying the web request component to inspect, but for field redaction, you are specifying the component type to redact from the logs.
13918
- - If you have request sampling enabled, the redacted fields configuration for logging has no impact on sampling. The only way to exclude fields from request sampling is by disabling sampling in the web ACL visibility configuration.
13924
+ - If you have request sampling enabled, the redacted fields configuration for logging has no impact on sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
13919
13925
 
13920
13926
  :param all_query_arguments: Inspect all query arguments.
13921
13927
  :param body: Inspect the request body as plain text. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form. AWS WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to AWS WAF for inspection. - For Application Load Balancer and AWS AppSync , the limit is fixed at 8 KB (8,192 bytes). - For CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access, the default limit is 16 KB (16,384 bytes), and you can increase the limit for each resource type in the web ACL ``AssociationConfig`` , for additional processing fees. For information about how to handle oversized request bodies, see the ``Body`` object configuration.
@@ -19733,7 +19739,7 @@ class CfnWebACL(
19733
19739
 
19734
19740
  :param cloud_watch_metrics_enabled: Indicates whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see `AWS WAF Metrics <https://docs.aws.amazon.com/waf/latest/developerguide/monitoring-cloudwatch.html#waf-metrics>`_ in the *AWS WAF Developer Guide* . For web ACLs, the metrics are for web requests that have the web ACL default action applied. AWS WAF applies the default action to web requests that pass the inspection of all rules in the web ACL without being either allowed or blocked. For more information, see `The web ACL default action <https://docs.aws.amazon.com/waf/latest/developerguide/web-acl-default-action.html>`_ in the *AWS WAF Developer Guide* .
19735
19741
  :param metric_name: A name of the Amazon CloudWatch metric dimension. The name can contain only the characters: A-Z, a-z, 0-9, - (hyphen), and _ (underscore). The name can be from one to 128 characters long. It can't contain whitespace or metric names that are reserved for AWS WAF , for example ``All`` and ``Default_Action`` .
19736
- :param sampled_requests_enabled: Indicates whether AWS WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the AWS WAF console. .. epigraph:: Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. The only way to exclude fields from request sampling is by disabling sampling in the web ACL visibility configuration.
19742
+ :param sampled_requests_enabled: Indicates whether AWS WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the AWS WAF console. If you configure data protection for the web ACL, the protection applies to the web ACL's sampled web request data. .. epigraph:: Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
19737
19743
 
19738
19744
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html
19739
19745
  :exampleMetadata: fixture=_generated
@@ -19797,9 +19803,11 @@ class CfnWebACL(
19797
19803
  '''Indicates whether AWS WAF should store a sampling of the web requests that match the rules.
19798
19804
 
19799
19805
  You can view the sampled requests through the AWS WAF console.
19806
+
19807
+ If you configure data protection for the web ACL, the protection applies to the web ACL's sampled web request data.
19800
19808
  .. epigraph::
19801
19809
 
19802
- Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. The only way to exclude fields from request sampling is by disabling sampling in the web ACL visibility configuration.
19810
+ Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
19803
19811
 
19804
19812
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-visibilityconfig.html#cfn-wafv2-webacl-visibilityconfig-sampledrequestsenabled
19805
19813
  '''
@@ -1194,21 +1194,20 @@ class AwsCustomResourcePolicy(
1194
1194
  Example::
1195
1195
 
1196
1196
  get_parameter = cr.AwsCustomResource(self, "GetParameter",
1197
- on_update=cr.AwsSdkCall( # will also be called for a CREATE event
1197
+ on_update=cr.AwsSdkCall(
1198
1198
  service="SSM",
1199
1199
  action="GetParameter",
1200
1200
  parameters={
1201
1201
  "Name": "my-parameter",
1202
1202
  "WithDecryption": True
1203
1203
  },
1204
- physical_resource_id=cr.PhysicalResourceId.of(Date.now().to_string())),
1204
+ physical_resource_id=cr.PhysicalResourceId.of(Date.now().to_string()),
1205
+ logging=cr.Logging.with_data_hidden()
1206
+ ),
1205
1207
  policy=cr.AwsCustomResourcePolicy.from_sdk_calls(
1206
1208
  resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE
1207
1209
  )
1208
1210
  )
1209
-
1210
- # Use the value in another construct with
1211
- get_parameter.get_response_field("Parameter.Value")
1212
1211
  '''
1213
1212
 
1214
1213
  @jsii.member(jsii_name="fromSdkCalls")
@@ -2286,24 +2285,23 @@ class PhysicalResourceId(
2286
2285
 
2287
2286
  Example::
2288
2287
 
2289
- get_parameter = cr.AwsCustomResource(self, "AssociateVPCWithHostedZone",
2288
+ cross_account_role_arn = "arn:aws:iam::OTHERACCOUNT:role/CrossAccountRoleName" # arn of role deployed in separate account
2289
+
2290
+ call_region = "us-west-1" # sdk call to be made in specified region (optional)
2291
+
2292
+ cr.AwsCustomResource(self, "CrossAccount",
2290
2293
  on_create=cr.AwsSdkCall(
2291
- assumed_role_arn="arn:aws:iam::OTHERACCOUNT:role/CrossAccount/ManageHostedZoneConnections",
2292
- service="Route53",
2293
- action="AssociateVPCWithHostedZone",
2294
- parameters={
2295
- "HostedZoneId": "hz-123",
2296
- "VPC": {
2297
- "VPCId": "vpc-123",
2298
- "VPCRegion": "region-for-vpc"
2299
- }
2300
- },
2301
- physical_resource_id=cr.PhysicalResourceId.of("${vpcStack.SharedVpc.VpcId}-${vpcStack.Region}-${PrivateHostedZone.HostedZoneId}")
2294
+ assumed_role_arn=cross_account_role_arn,
2295
+ region=call_region, # optional
2296
+ service="sts",
2297
+ action="GetCallerIdentity",
2298
+ physical_resource_id=cr.PhysicalResourceId.of("id")
2302
2299
  ),
2303
- # Will ignore any resource and use the assumedRoleArn as resource and 'sts:AssumeRole' for service:action
2304
- policy=cr.AwsCustomResourcePolicy.from_sdk_calls(
2305
- resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE
2306
- )
2300
+ policy=cr.AwsCustomResourcePolicy.from_statements([iam.PolicyStatement.from_json({
2301
+ "Effect": "Allow",
2302
+ "Action": "sts:AssumeRole",
2303
+ "Resource": cross_account_role_arn
2304
+ })])
2307
2305
  )
2308
2306
  '''
2309
2307
 
@@ -2867,21 +2865,20 @@ class SdkCallsPolicyOptions:
2867
2865
  Example::
2868
2866
 
2869
2867
  get_parameter = cr.AwsCustomResource(self, "GetParameter",
2870
- on_update=cr.AwsSdkCall( # will also be called for a CREATE event
2868
+ on_update=cr.AwsSdkCall(
2871
2869
  service="SSM",
2872
2870
  action="GetParameter",
2873
2871
  parameters={
2874
2872
  "Name": "my-parameter",
2875
2873
  "WithDecryption": True
2876
2874
  },
2877
- physical_resource_id=cr.PhysicalResourceId.of(Date.now().to_string())),
2875
+ physical_resource_id=cr.PhysicalResourceId.of(Date.now().to_string()),
2876
+ logging=cr.Logging.with_data_hidden()
2877
+ ),
2878
2878
  policy=cr.AwsCustomResourcePolicy.from_sdk_calls(
2879
2879
  resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE
2880
2880
  )
2881
2881
  )
2882
-
2883
- # Use the value in another construct with
2884
- get_parameter.get_response_field("Parameter.Value")
2885
2882
  '''
2886
2883
  if __debug__:
2887
2884
  type_hints = typing.get_type_hints(_typecheckingstub__0cd00e8add38e42b6c4d7db0390a899ccaf5bbe0367bfb387986125dacc7a297)
@@ -613,6 +613,22 @@ When this feature flag is enabled, CDK expands the scope of usage data collectio
613
613
  }
614
614
  }
615
615
  ```
616
+
617
+ * `@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy`
618
+
619
+ When this feature flag is enabled, Lambda will create new inline policies with AddToRolePolicy.
620
+ The purpose of this is to prevent lambda from creating a dependency on the Default Policy Statement.
621
+ This solves an issue where a circular dependency could occur if adding lambda to something like a Cognito Trigger, then adding the User Pool to the lambda execution role permissions.
622
+
623
+ *cdk.json*
624
+
625
+ ```json
626
+ {
627
+ "context": {
628
+ "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": true
629
+ }
630
+ }
631
+ ```
616
632
  '''
617
633
  from pkgutil import extend_path
618
634
  __path__ = extend_path(__path__, __name__)
@@ -1195,9 +1195,9 @@ separate cdk repo and are just importing them for use in one of your (many) pipe
1195
1195
  # shared_xRegion_us_west2_key_arn: str
1196
1196
 
1197
1197
 
1198
- us_west1_bucket = s3.Bucket.from_bucket_attributes(scope, "UsEast1Bucket",
1198
+ us_west1_bucket = s3.Bucket.from_bucket_attributes(scope, "UsWest1Bucket",
1199
1199
  bucket_arn=shared_xRegion_us_west1_bucket_arn,
1200
- encryption_key=kms.Key.from_key_arn(scope, "UsEast1BucketKeyArn", shared_xRegion_us_west1_bucket_arn)
1200
+ encryption_key=kms.Key.from_key_arn(scope, "UsWest1BucketKeyArn", shared_xRegion_us_west1_bucket_arn)
1201
1201
  )
1202
1202
 
1203
1203
  us_west2_bucket = s3.Bucket.from_bucket_attributes(scope, "UsWest2Bucket",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.178.2
3
+ Version: 2.180.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
@@ -22,7 +22,6 @@ Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
23
  License-File: NOTICE
24
24
  Requires-Dist: aws-cdk.asset-awscli-v1<3.0.0,>=2.2.208
25
- Requires-Dist: aws-cdk.asset-kubectl-v20<3.0.0,>=2.1.3
26
25
  Requires-Dist: aws-cdk.asset-node-proxy-agent-v6<3.0.0,>=2.1.0
27
26
  Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.2.0
28
27
  Requires-Dist: constructs<11.0.0,>=10.0.0
@@ -1,28 +1,28 @@
1
- aws_cdk/__init__.py,sha256=YcuP_Df5wM2W4hq3ACXg-qK0g4dhDosHpR2gROOGsSY,1942153
1
+ aws_cdk/__init__.py,sha256=SzJ2SHebo-EIoKCxJyGrdjNzYeGYoXsr7qT0xlRXczE,1945767
2
2
  aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/_jsii/__init__.py,sha256=-UHIbsvD0RVOh3CKCSSKerAMpyJQQJ8B6ArA2MKxdaQ,1582
4
- aws_cdk/_jsii/aws-cdk-lib@2.178.2.jsii.tgz,sha256=eNwYTXbZZ5KrXoWuPDmTfE-H6ZPJ0jQo_czo4nF-cks,24487247
3
+ aws_cdk/_jsii/__init__.py,sha256=3sb5VELvCQwR5Ahpmg_g1hEIReyUyGzpk2qekFUrZHk,1543
4
+ aws_cdk/_jsii/aws-cdk-lib@2.180.0.jsii.tgz,sha256=phVD1vdEbxD4KesFoLqaodb1fRiz5QKPmgAGUlF5FtM,24637113
5
5
  aws_cdk/alexa_ask/__init__.py,sha256=yF4ftch7XArzAniw_xoUmGi3wLGeBqIUlOjBTHSxDb4,36370
6
6
  aws_cdk/assertions/__init__.py,sha256=vX--kb5ot1oIPFr5H5ElSpuie_TwWOzu1KZU9kcvmuw,92306
7
7
  aws_cdk/aws_accessanalyzer/__init__.py,sha256=XiNBttjwK1s2CYyccwKCXH5Nzb74L1i6rVnZ9Zwh49I,57464
8
- aws_cdk/aws_acmpca/__init__.py,sha256=uU2logjQaXCdy2M8FoJqG_pZK60duckNN2fuQD3r9lM,333199
8
+ aws_cdk/aws_acmpca/__init__.py,sha256=HRcoRza8TcPjlkJMRp6fAmLevz8Sy2q2o_6HBiCY89E,337535
9
9
  aws_cdk/aws_amazonmq/__init__.py,sha256=pqRGMdV7xi_wvtViL_EszXbMBKjFT5ZwUcLL7m5hBjU,165077
10
10
  aws_cdk/aws_amplify/__init__.py,sha256=AJZkT4LNj9W0I_KiX16Rx6GiESe2Sz6GjYMdbg1ykSQ,203500
11
11
  aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=lI4dQQuIH1iEHTtQLW3wTAKIC1_xraUOlLeTOEst6T0,431551
12
- aws_cdk/aws_apigateway/__init__.py,sha256=cvE_LLuu4Fb0JlHbvPqk89-7G3Vg0kzAdud4NecaR3Q,1929332
13
- aws_cdk/aws_apigatewayv2/__init__.py,sha256=KxQCFwxFI-2_tRYDEC7KMjDrP1CXN8etvI7DK9v_poI,1070233
12
+ aws_cdk/aws_apigateway/__init__.py,sha256=7wRVb_ufOdmndvIu-vfsdKCshZsO8LmY2ktx4u5PmQE,1936464
13
+ aws_cdk/aws_apigatewayv2/__init__.py,sha256=hIPktleoMMMNM8ZHarJSJvzVEW0TDbhoz6XjJl3aPMI,1075837
14
14
  aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=dlvfuPzC0x7irbpVRZRpVyLH4FihHnqGOwl9VUwRB5k,55670
15
- aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=wjmIEkQbsxT6LLvOErVhwijlVUsOApQ4yd80nXeKiug,128000
15
+ aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=b49Ownun7jTBIQIjVCUCLKc277gyPzxb0QX_UM_RSGU,141317
16
16
  aws_cdk/aws_appconfig/__init__.py,sha256=uhCZ3TB2BkCKA4V0IndUAQ6TaRFivS-W8ggRA1yhUN0,743798
17
17
  aws_cdk/aws_appflow/__init__.py,sha256=irV1oQfUhKmhb5E2Vu8YZmyz4EFJ5ZIWafU5LsludjE,787082
18
18
  aws_cdk/aws_appintegrations/__init__.py,sha256=un2UJMbuTnmKPt4nnFlngTf7d-kr6XWFHnNq_RAvZK4,87864
19
- aws_cdk/aws_applicationautoscaling/__init__.py,sha256=5RP7kuKakbVbiP1HDsY5w0h0njRDHm1kGQiQdA15azQ,511389
19
+ aws_cdk/aws_applicationautoscaling/__init__.py,sha256=SrTxxikHsYMRBGLhlRJ3aNcvAaE_B2qPPEzWdYUtv0U,511389
20
20
  aws_cdk/aws_applicationinsights/__init__.py,sha256=dFFqVnowlQumb7yZXHdoQTZjZvHMQUrb2BMhuuJdAHM,210812
21
21
  aws_cdk/aws_applicationsignals/__init__.py,sha256=2ay00vhqDKLDwH5tSgclxP4g6T7Gubw5lniuMr6Io0w,164626
22
22
  aws_cdk/aws_appmesh/__init__.py,sha256=6pS5nJjwlxxvf6L09DvTnwRbnN0Hg5-sF6xQSe6DuUk,1607404
23
23
  aws_cdk/aws_apprunner/__init__.py,sha256=1SZg3NdECkG99iWRNUkqCi1Tz7IIzGMYQVkybr1jECg,241154
24
24
  aws_cdk/aws_appstream/__init__.py,sha256=vgdLPfwWL81Qsy1VgPcP7BuZg9swpw_3yE417BHp9Bc,452009
25
- aws_cdk/aws_appsync/__init__.py,sha256=8sPqrdgZmlXam2eiUbxXFlQ9oyRPPJuv_1RVQ4-sGbc,1196708
25
+ aws_cdk/aws_appsync/__init__.py,sha256=jNyaj5yLlxUTqGIOUwKTXxrFqAfBA2UKdkFLqhbyzRY,1197480
26
26
  aws_cdk/aws_apptest/__init__.py,sha256=o7PvWT6mdxtk85HXG2XYW5sxuT3NPNS5PbyGOshFWiw,148303
27
27
  aws_cdk/aws_aps/__init__.py,sha256=ej6TuVkrURw0zKivZj8h9sbrtpxlIO4q2udmlQ896Lo,90208
28
28
  aws_cdk/aws_arczonalshift/__init__.py,sha256=5LhX-5zdNGdKmrtiS4ts42Z-T-IGv0xgTAMJM3Ptx54,46832
@@ -33,11 +33,11 @@ aws_cdk/aws_autoscaling_common/__init__.py,sha256=kVLM6Pg4nnXlCMBchyRmam2CZ9nsSt
33
33
  aws_cdk/aws_autoscaling_hooktargets/__init__.py,sha256=QPzKlft8xvfOdhH60R0p9Yua32YHCagRkeNxVW8L1Ls,11720
34
34
  aws_cdk/aws_autoscalingplans/__init__.py,sha256=7JRe3KgF5TciICPUqE1OuAguOPAelX5JmiuASXf-dEs,121127
35
35
  aws_cdk/aws_b2bi/__init__.py,sha256=gnVoqv-1oBDuE8u2P-84BfnIymQesCMhWiDNShfhu5I,206003
36
- aws_cdk/aws_backup/__init__.py,sha256=PsECzUOkPfpBV1QMpntxjjFD5lJQovUxDzNe-0JVxTc,444967
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=_UXZWBQTEqagXeLx2iZ0qXvrRmavQ0kCbi08sJVWyJg,1466766
38
+ aws_cdk/aws_batch/__init__.py,sha256=MvW2W3Zemns9yyD4sbpamctXbzVkSQbHE7RRAUgJvt0,1472180
39
39
  aws_cdk/aws_bcmdataexports/__init__.py,sha256=HI1cpueYOVZr-EDYqDX--ss7DkvI07HxGq6YR4cIE40,55627
40
- aws_cdk/aws_bedrock/__init__.py,sha256=uc5c8Q9amLUcYLAheCvvj7vFettpxXC2z13oJAwJxLw,1500903
40
+ aws_cdk/aws_bedrock/__init__.py,sha256=fa-EcNaV1aU3SO74YU_SAZJ-CQOmQaSCdNlYa0BK7uM,1527338
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
@@ -48,28 +48,28 @@ aws_cdk/aws_cleanrooms/__init__.py,sha256=ODQSNf7LoRveHalAHEK0KZisLkrcpzxRRY-gra
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
50
  aws_cdk/aws_cloudformation/__init__.py,sha256=CRk--hBmv0sH85blhLY8NKi13Md0w8In3yOXRwWUC_4,505422
51
- aws_cdk/aws_cloudfront/__init__.py,sha256=doR0O_IA6Iost1Xl71ta4UDwGM1534JmC0e_KxvWwaY,1594996
51
+ aws_cdk/aws_cloudfront/__init__.py,sha256=JFtWoEPT16FhuhOBz7LO9WsE3-lm3qRNFZq65U6NlF0,1636113
52
52
  aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=Svd8hUJhY0KNHirVPPGjF1vmiBBiGoxlcCI93XvdeYQ,142419
53
- aws_cdk/aws_cloudfront_origins/__init__.py,sha256=wE3NXKNIZsjqIXeC_fHusD3GiCgn_s1fgN0RmV1AlnE,248817
54
- aws_cdk/aws_cloudtrail/__init__.py,sha256=SR3F0AY-_crTFNdl3_oJlT1MMKoxLs1x3idEmsvyhyA,365868
55
- aws_cdk/aws_cloudwatch/__init__.py,sha256=jxQVRMi9HdBhvKY4BZEAEk1F5M3gyN91RfHsGihoAYQ,815681
53
+ aws_cdk/aws_cloudfront_origins/__init__.py,sha256=D8kwMlk2NKWrXsB7J9EDcGJYL9BSxN1uXWdw7olR1eg,320367
54
+ aws_cdk/aws_cloudtrail/__init__.py,sha256=LxrK3Pu3EE5qYp1kRGtymKbU53fUYGOvFSFWqDJODzY,365726
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=EzevNi2yZ-p9a3Owik6a5SSHtln5zPgxNSf3mMfvhtQ,1089499
58
+ aws_cdk/aws_codebuild/__init__.py,sha256=-YMwrrDSRn0qDHX188NhCKtiqxQ2SLjyCkwuUhTij4c,1099801
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
62
62
  aws_cdk/aws_codeguruprofiler/__init__.py,sha256=9ZfE-WJXwoc-Uv59gwaYhCYrnGwO-rwlMNlZxC2vkE8,48308
63
63
  aws_cdk/aws_codegurureviewer/__init__.py,sha256=9497p0WcylnIXlvJ90LQbpqVllRhIEZTaiIPk1oQLuM,27281
64
- aws_cdk/aws_codepipeline/__init__.py,sha256=bH6FJCjhj91alOBmRhinVE_XrElKBQIhA8brZzrpaNk,603329
65
- aws_cdk/aws_codepipeline_actions/__init__.py,sha256=Chv9K_HjA8nyVonRDqo2Q2AjK-W_sE9lJ_ExuSoNW3s,636673
66
- aws_cdk/aws_codestar/__init__.py,sha256=vV4bYlH_WZanATY7a3Vck3vZn0sMxuwvNcu5byCRRZc,38557
64
+ aws_cdk/aws_codepipeline/__init__.py,sha256=WTa7Go670i2B6RjyQJ-97hoBMKRbnWH14I_d4dUKIe8,608160
65
+ aws_cdk/aws_codepipeline_actions/__init__.py,sha256=ctudwRfgPUlNJj9kNCb8Pq7KO1eA_YGjjqXuxbW1jLs,658780
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=VD2Q37yBMLJrij-SwnIhvyiQ_5zoHi2jmXihfsAKs10,1428932
69
+ aws_cdk/aws_cognito/__init__.py,sha256=z73KcNJwU_XwWVuj13PDKsuD1g1351a6mjQ9N1zdWXY,1462081
70
70
  aws_cdk/aws_comprehend/__init__.py,sha256=GDiEy9xnCOeMohZp-yAG7enyePdDabwWxpxRSewOvcE,156707
71
71
  aws_cdk/aws_config/__init__.py,sha256=rZqzMN81iMllSOa_ChJUJTkRe5bthuHZvuB0PgLUCw0,866027
72
- aws_cdk/aws_connect/__init__.py,sha256=cwvIqEqcjOlIMQMfptOhbkzg6h-xbmnH0S4IC3ZDk5o,922501
72
+ aws_cdk/aws_connect/__init__.py,sha256=kv4KxEz2WfkcACq387j6OQKNW6arzT4Wv6RHg9bkXys,933091
73
73
  aws_cdk/aws_connectcampaigns/__init__.py,sha256=kgMelxhrzF-0fUD_OSfiKGYzmiR7lLhdR_7LbAyspZk,55255
74
74
  aws_cdk/aws_connectcampaignsv2/__init__.py,sha256=asWEfzbQJKbEJ4r3A7NLZ8G4d4zmMFeb1saNJzqsRUs,183394
75
75
  aws_cdk/aws_controltower/__init__.py,sha256=A8S5pth0EQjF2VDaKNSAVGm5VSvyFmWybFkQ1WvM_aQ,61382
@@ -77,66 +77,66 @@ aws_cdk/aws_cur/__init__.py,sha256=BPw-mdiO8wH2fyUwq2svzKyiI13F-AIv-jSgqco8OS8,3
77
77
  aws_cdk/aws_customerprofiles/__init__.py,sha256=knoCVSBbZZiDjnU6A9hofazmbyd2YVbkMDCCKyTK3Yw,596427
78
78
  aws_cdk/aws_databrew/__init__.py,sha256=U8tBGuMZutowBH2JhAP6nXxmuFY9nzqrPpY4z4LzpR8,535977
79
79
  aws_cdk/aws_datapipeline/__init__.py,sha256=liVPxcKxLvGlJbzUXX2HlbkD7tT0qsY2ldQ80zXSsLQ,60560
80
- aws_cdk/aws_datasync/__init__.py,sha256=WoSkNt4ieWAd8tsOdrFonZHgkSIOQnBnaxFbblvpdCQ,589460
80
+ aws_cdk/aws_datasync/__init__.py,sha256=jJg8H3RxzJUbAVavKMnLamCGfEUofE8zg-KH4Pm44SU,604844
81
81
  aws_cdk/aws_datazone/__init__.py,sha256=ACrD2nZIBeeLTacBwJ4FbSYiKJ4ImRJCwKCn4aeO2OI,369593
82
82
  aws_cdk/aws_dax/__init__.py,sha256=I1yrJ8vZ4TR6U7JC6FFDmCtlDTW63xabfSsdQkMQ4q0,76119
83
- aws_cdk/aws_deadline/__init__.py,sha256=A6KoV80jzpexWrtAJ93Io2K_WSQBhG9iT4LXySw1r6I,296493
83
+ aws_cdk/aws_deadline/__init__.py,sha256=H6eXRMn0HdVsKwC7bGrvRJXx8h1nC_bxHoHWfn8UXUk,328425
84
84
  aws_cdk/aws_detective/__init__.py,sha256=BVovwAOykTby6xBDxbmdJMC0P-DO60b6-B48tCgITew,41475
85
85
  aws_cdk/aws_devicefarm/__init__.py,sha256=Z21GYys0UdEgNaGKrgqifJ7AhHjl1n4I6sKPo0PLDLM,153518
86
86
  aws_cdk/aws_devopsguru/__init__.py,sha256=lwWFQk86um82RMa2nYWY031kpUOG856qQbAVUbnU6sA,65882
87
- aws_cdk/aws_directoryservice/__init__.py,sha256=n2jtcjwzkd_OM52cXMSi9pKJbLqjFKddI7OV1OmXk7E,66664
88
- aws_cdk/aws_dlm/__init__.py,sha256=kTkwvOmbn7pTCq8Agc0NZXtmFuZKDaYKxBVSeCJ08sY,246393
89
- aws_cdk/aws_dms/__init__.py,sha256=QND2uLHXslXdpbBrArkTFf2ffDz1jKjUQRdH-VXauec,1028104
87
+ aws_cdk/aws_directoryservice/__init__.py,sha256=BNqlJ87KcS89A62YiWFqCTpXmFLVa3DWbHp3oRTXS8c,66703
88
+ aws_cdk/aws_dlm/__init__.py,sha256=qs1uPD5T4WKLL_xif8zYk1YXhw5idTfkgW7sFrpztWo,246473
89
+ aws_cdk/aws_dms/__init__.py,sha256=7APrJeecAM2Tdd6gWsb1_6xXoF5mZTqx1Y-4IXFUGhY,1028170
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
- aws_cdk/aws_dynamodb/__init__.py,sha256=Vy-epDAxtxilQOwWLCuzYr7ATm6Cr0OBM-xGF5Xw6WA,1022189
93
- aws_cdk/aws_ec2/__init__.py,sha256=E-SiGSVlHgDhpT2NSxdsX7ZyFOKjrJrwkfrw-TUH4uw,5929380
92
+ aws_cdk/aws_dynamodb/__init__.py,sha256=K8IosDJk6P9pT24Lwh165rwgxJqDPf5kwd_Wo33uqns,1018005
93
+ aws_cdk/aws_ec2/__init__.py,sha256=ZJDJ7yGxgTahEtbpDuKWVYneBdC5_G9A8jxooVDDWXM,5950372
94
94
  aws_cdk/aws_ecr/__init__.py,sha256=wnnELMrtsDB8zOzwB9ql4ExiyqmTcTuVcQwLZhryXGQ,299507
95
95
  aws_cdk/aws_ecr_assets/__init__.py,sha256=pVYFzoIWqh2lGnA0VARJXUwyJJw6BWGteKTiTnQI2UA,84919
96
- aws_cdk/aws_ecs/__init__.py,sha256=wHzXwdqWKANwHWNbYz98Rek-TS8G1rgRH-IZ77EX4pQ,2733457
96
+ aws_cdk/aws_ecs/__init__.py,sha256=K2NamU26mzPHH5DHaRGlM78aAY-aUnqHy__vhpprmc8,2732815
97
97
  aws_cdk/aws_ecs_patterns/__init__.py,sha256=BMxXLUS3kQlDxCUBRCIKNcpBxgrXL4whnTYpH-NwK4Q,1039923
98
- aws_cdk/aws_efs/__init__.py,sha256=u8hnVQszmgEgNwoVMXJvdqtJmDgp38e0pmCxtqFXBXg,283710
99
- aws_cdk/aws_eks/__init__.py,sha256=0L1AJZElHt3d9jYgkI7NAM0Be2ZBJmthDj3fi7Yk23k,1218500
98
+ aws_cdk/aws_efs/__init__.py,sha256=Vwby-0vbcL99svN6PMviQkzgmYldJ6wK1q2Ft_giUCk,283704
99
+ aws_cdk/aws_eks/__init__.py,sha256=df3QfL51m3v5SwLAejpO-TvveCYHTOzduxYKdx5QPiE,1236644
100
100
  aws_cdk/aws_elasticache/__init__.py,sha256=PzbNJILv0gtYn_xKUkzgmK1cw5zBu2V4bj1R4AWVPNo,527489
101
101
  aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zkQcloEtO1N4Z0oj24wRxhwAEZQnYXhIJFNclDh4SW8,165453
102
102
  aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=87f9RCYjZ1tYCg_ork7bK6tEyvVt8J8b6xAr3JTbgpU,163062
103
- aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=NrOFl4uLdhH7kWUThV5kSLLK9afq1_0PZWSs9jD_QD8,1639464
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
107
  aws_cdk/aws_emr/__init__.py,sha256=P1AEXmz9H3rGxofyt07yVvFLe63lxCfBSl0tNh2w_wA,765465
108
- aws_cdk/aws_emrcontainers/__init__.py,sha256=GeMJ0uWT-oOPvkEshbyQLg3b4H-Uz7YEnZS9UI9CT60,29516
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=qToPjNAuz2X9xwIPyphYq0OPBX7Ynofz51aJkCoXqkg,691230
112
- aws_cdk/aws_events_targets/__init__.py,sha256=gTogZJsbwNMmQofVufir7YwKRVWPhJM07Mt_xCJqKXw,280637
111
+ aws_cdk/aws_events/__init__.py,sha256=_LVqVv5zQS7CLreF8OIfimwin3qdAtXZObzGOpZzWR4,690890
112
+ aws_cdk/aws_events_targets/__init__.py,sha256=-7Iu_YnxudK_goEYA2rhRc6-Lf_quUXtmXZC3kmpd1Q,294495
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
116
116
  aws_cdk/aws_fis/__init__.py,sha256=nTz_j8iiqdpSLXQOsxA7cKlr0ORKRjtcixG_5W3RCkU,121146
117
- aws_cdk/aws_fms/__init__.py,sha256=5BX2tNrg_dGHeNWrIm4Qq7nnNFF2O9RdLQf82mOcA50,263801
117
+ aws_cdk/aws_fms/__init__.py,sha256=UN3VPl3JJw9WgBbEP796SzqNr5tddaCWvPhk7S9L4mI,263758
118
118
  aws_cdk/aws_forecast/__init__.py,sha256=axaCnCEG2bM7Bg2EZqMp3Q1NtrOChjHmweGKyH2ZSv0,62533
119
119
  aws_cdk/aws_frauddetector/__init__.py,sha256=g5M3QBrjZa_z3_3MK8l4oymI2xJwWp-t9Uoe_e16-rU,262259
120
- aws_cdk/aws_fsx/__init__.py,sha256=2qh9aOr4krW83kDpG3FIHdx8849mVkYX7yAC_YY-8Go,583314
120
+ aws_cdk/aws_fsx/__init__.py,sha256=jhB48w1oLGmtFlun2K7RhWesFQ7uddRlrjjTz9zmIzM,583664
121
121
  aws_cdk/aws_gamelift/__init__.py,sha256=QKZTcBUCwyve8mrNrBh5jLsMNdx5WHoHcu_zth7lsO8,738055
122
122
  aws_cdk/aws_globalaccelerator/__init__.py,sha256=7IfeGNzsn9T7rzhqvYLpa70URgBYcSuYQDEdxJLLGqA,233870
123
123
  aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7duMb6LWqPPc4KhtF5LnMQYo,26848
124
- aws_cdk/aws_glue/__init__.py,sha256=t5-ShPKPRWSLHkayzBVtBzcbCY9ToXHug0h2IufTeVk,1028794
124
+ aws_cdk/aws_glue/__init__.py,sha256=LI2OcoGyK8wrl-rawkFda9bGA9LlbQclAMsTqqtASu0,1038143
125
125
  aws_cdk/aws_grafana/__init__.py,sha256=pmmMe_yT0f3a-OuqpY1r9LvkZ4g3plyYaXpbLpXyqv0,104423
126
126
  aws_cdk/aws_greengrass/__init__.py,sha256=JY6CXCvkLRyjtROOu1G907b0fwdCzHCjJQcVyxL3EBg,662483
127
127
  aws_cdk/aws_greengrassv2/__init__.py,sha256=M2Zo-YjJx2cOYvTiF_xIalSh5VgB7Br8Gpp1QaPueJ8,213877
128
- aws_cdk/aws_groundstation/__init__.py,sha256=M5Nzqhn58ypp7DjlzVlotO6JJlVSIBT91-ftG0Bnx4Y,216739
128
+ aws_cdk/aws_groundstation/__init__.py,sha256=hPZkcNCJiPbU8-OI4iCYpC27uzednN1Vt6F3KVVrJbA,217851
129
129
  aws_cdk/aws_guardduty/__init__.py,sha256=tTeepLCnXlvz9VJPdWk3oFwGIMja8SF2mAWphKUCBYY,260372
130
130
  aws_cdk/aws_healthimaging/__init__.py,sha256=bNpcbOhCYjvvgCJwb6pbmA8BH_8RjtjKJZG8f40I8qQ,17410
131
131
  aws_cdk/aws_healthlake/__init__.py,sha256=dMFbQBLwb5u5qcae0VijYlqI8dU47O7F4Cr7uSPqFsE,55398
132
- aws_cdk/aws_iam/__init__.py,sha256=C82zjEffoS7GQnu21cVVLlUC1M0YNrdGsXWC2d_vC10,848405
132
+ aws_cdk/aws_iam/__init__.py,sha256=fvkibNUDfqZPYTZ8ugHazEQinn7J56oKY7Itz94uNWg,848284
133
133
  aws_cdk/aws_identitystore/__init__.py,sha256=yXjJuier75gXXW5QBSRTsGvDx5BdNdu9VRcnLhbEMlQ,32106
134
134
  aws_cdk/aws_imagebuilder/__init__.py,sha256=xnhEuR7Ad_174z7mrTVY9k6e31IKVwOVpXfFUmZHUWI,592140
135
135
  aws_cdk/aws_inspector/__init__.py,sha256=rQysIyMgQRYemWRRG-6q4gLbU5M3t4q8HcoO2kfxx0c,44512
136
136
  aws_cdk/aws_inspectorv2/__init__.py,sha256=lhoSgVEY46jpcneaikoJMwXS3RC6tPKjIggPB4xjXhE,165335
137
137
  aws_cdk/aws_internetmonitor/__init__.py,sha256=FpugpXTCcYp_CUFYFH7QM56ZJ4tpXBtMYdP-xA0INa8,83648
138
138
  aws_cdk/aws_invoicing/__init__.py,sha256=KTxORme27Kcdk1tHgvnp5_Uv4Yz35yHKRRyoWLVBCkY,31161
139
- aws_cdk/aws_iot/__init__.py,sha256=lNpX5zRXahHcVX-RXEm7idAGDMLHeeKw5Av_HqEA2KA,1213247
139
+ aws_cdk/aws_iot/__init__.py,sha256=sTFIW8kqi-wgYhevEVEK1WG7UhT1Kwr4DkirDJ2z90c,1213837
140
140
  aws_cdk/aws_iotanalytics/__init__.py,sha256=1HxqAu9zDVNGOXtskvE47QO70V4Atu7RDnaNAibS3fo,360378
141
141
  aws_cdk/aws_iotcoredeviceadvisor/__init__.py,sha256=QdtVnj56P0XSXJt9GYeViSdWyfleWiAvoVSuY2IDFIk,32292
142
142
  aws_cdk/aws_iotevents/__init__.py,sha256=x-reNiI450GnQ_Id5EkzK1w2WwzCyF0N28T-pBCrcFY,447236
@@ -146,28 +146,28 @@ aws_cdk/aws_iotsitewise/__init__.py,sha256=uq6uxzUf6Esj6OGSYT7jj9Td-9bKKoGyv2niV
146
146
  aws_cdk/aws_iotthingsgraph/__init__.py,sha256=gg9NwfV9uFqW6K86FJN42tyqed8OfYc2NIMsn64cSxk,17488
147
147
  aws_cdk/aws_iottwinmaker/__init__.py,sha256=OEh9aDebGH1uG3m5X4vQ41MDd60LttdrHR1Lupj7EWQ,290337
148
148
  aws_cdk/aws_iotwireless/__init__.py,sha256=4CH5FU78eROY9OERkpEBmjpQin4zX2FdUV_u7EoIEF4,413142
149
- aws_cdk/aws_ivs/__init__.py,sha256=HrgQ4fLpO_vpVzGeCZyEzNByHWDritbJAFj8TAJ6N_U,228348
149
+ aws_cdk/aws_ivs/__init__.py,sha256=JH93lwieTEdk59GIqwaxVUftibpm-2G0VpvOgjJXQ0g,232032
150
150
  aws_cdk/aws_ivschat/__init__.py,sha256=HiaDg_mYBiXsJOQ-SRqOm3pCVNGSMyZlZPSmP7OiOgo,63899
151
151
  aws_cdk/aws_kafkaconnect/__init__.py,sha256=FASSuZBa366AAzRGfFavD73yQaPTVqEWhjWrYSnGYkE,172468
152
152
  aws_cdk/aws_kendra/__init__.py,sha256=wmhRX-J7tHmHyCPlPR-Wh3NcD7XucI4xV0OJnkIM4qo,682344
153
153
  aws_cdk/aws_kendraranking/__init__.py,sha256=3HBuK2dbNWAYDUbjyCmc7D9M9pDo1jg-DNCh412kdhY,25204
154
- aws_cdk/aws_kinesis/__init__.py,sha256=Tvk6Fswv9fmKQx4eM9GQLqX1wtCzv8LEJ1kjIiQWRe4,327494
154
+ aws_cdk/aws_kinesis/__init__.py,sha256=Zy8yybVxFdNNNFkamLRdGFivYe7J90nrGAT_HiGONVM,353435
155
155
  aws_cdk/aws_kinesisanalytics/__init__.py,sha256=0ZPCWgzPFOS99sfyhzdTfr7-eQQMoUlR_eDmf5PCmc0,587440
156
156
  aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=zAK6orw0mZs0V98cWWb94KcE76_nieuxXVFgKQCD9XM,387963
157
157
  aws_cdk/aws_kinesisfirehose/__init__.py,sha256=VEotjAQbAd68keH_1ow03klvcK2XP-6FtT1VAsbjOrg,843299
158
158
  aws_cdk/aws_kinesisvideo/__init__.py,sha256=KR-ZCTMZFNR9EJ32dIjEfeiZQMJZha33v-2lg0-mhYY,38745
159
159
  aws_cdk/aws_kms/__init__.py,sha256=zVprnq7sot7-s8S3-EUMDO4YB7Y1DTDIycenuMo3edw,251590
160
160
  aws_cdk/aws_lakeformation/__init__.py,sha256=MmGVkaQ4_kMg9y78pdpq-YO4OEJXC5vMi3Z5UliTZ3M,335979
161
- aws_cdk/aws_lambda/__init__.py,sha256=jL6252JXoqTc0y6CqyPiWOF6nx0zPjdPrGRBBPrtuJk,1743681
161
+ aws_cdk/aws_lambda/__init__.py,sha256=UJHyX_dNT0LaIal-Glpfx3jqkRKNyqbsYHrJg8MD4Pc,1743516
162
162
  aws_cdk/aws_lambda_destinations/__init__.py,sha256=WHB7Vk6jk0pwFVUEAPGfFuSUUOJirZ7h3K5Z92yoE8E,24123
163
- aws_cdk/aws_lambda_event_sources/__init__.py,sha256=_aWw9afEtjScuwOKb7-K2LLQMzxW4_N7DI8kpBfBebY,237751
163
+ aws_cdk/aws_lambda_event_sources/__init__.py,sha256=zL9hyaZTZbcJNwWfLQkryhBzWBi-5MgxjFBivhzzH0A,247801
164
164
  aws_cdk/aws_lambda_nodejs/__init__.py,sha256=5ZHsuf92bN0tyUQDKHmsVuF0s6nW28juTIgcMUyPen4,179430
165
165
  aws_cdk/aws_launchwizard/__init__.py,sha256=rPNzud_j-MSKV7aH_fJcJhTHdXtzItJA8hVk37HJHuY,24028
166
166
  aws_cdk/aws_lex/__init__.py,sha256=wYvO4joPahEBoAF9dg_wj6u1nymh32ukEYkG4UfWAew,707100
167
167
  aws_cdk/aws_licensemanager/__init__.py,sha256=y37V03_LDcfC2j681MxlhN1J5O5o3dJjFZnFJ0u7V9U,87983
168
168
  aws_cdk/aws_lightsail/__init__.py,sha256=KmkcfLrR3CMiPBEo6eQynMCi4eWi-nmK_zzFAYh-f1E,540635
169
169
  aws_cdk/aws_location/__init__.py,sha256=NYplr3y4CQ0jwMMzJHtdPwfLOT4IuDCPgmJOO8_Ub-M,206501
170
- aws_cdk/aws_logs/__init__.py,sha256=2y6UPqdgXLb_hxaxl-yNCfs4WufdFGA1NTw0VoQlkMs,788264
170
+ aws_cdk/aws_logs/__init__.py,sha256=wPk1wjoUedpODUGY0RZRKaOL14pzy74NIpKJMWn6iRY,790534
171
171
  aws_cdk/aws_logs_destinations/__init__.py,sha256=PeHzCEdgpSjOK9a-gcjQDrvkaYPh7a_dm8n40OimfUE,12811
172
172
  aws_cdk/aws_lookoutequipment/__init__.py,sha256=Fe9zxH-m07GxYnFan0JQvtzyUBRyfUYiXOCB0Jd8tXg,59482
173
173
  aws_cdk/aws_lookoutmetrics/__init__.py,sha256=1c54i_vcrqAvaWckONfh13-jVU7NwRd9CyBUPoW1RKY,158857
@@ -177,7 +177,7 @@ aws_cdk/aws_macie/__init__.py,sha256=xXvQHQdKuJ7SofkaDYmRiLmRD_tJpnylnTOfIXxTYwg
177
177
  aws_cdk/aws_managedblockchain/__init__.py,sha256=WxVZF_ow6armjJzcITtlgPujUTnLwYWX-rWIzM82K24,100887
178
178
  aws_cdk/aws_mediaconnect/__init__.py,sha256=6EJuYbnT4e4DSc4IEcX6iUJbCsuZHY3Ld_Z7JwVb_EM,548399
179
179
  aws_cdk/aws_mediaconvert/__init__.py,sha256=ZfjtSjqYyAhLR-O8I46o8VoKV0BaquNucRO6JH6Wdvk,90282
180
- aws_cdk/aws_medialive/__init__.py,sha256=jmysUbA2IKUSywEzITQTyXidPok3ztJv_4qbJueB7bU,1983252
180
+ aws_cdk/aws_medialive/__init__.py,sha256=aWHlNa1XLi6uvT9UQauMQLgYEm5PLPxlPyuzhFjGxro,2000660
181
181
  aws_cdk/aws_mediapackage/__init__.py,sha256=4JVrXRSIj0JAQxOe0I2PHHaTmOGSnKxeiDYd3TxgTD0,443187
182
182
  aws_cdk/aws_mediapackagev2/__init__.py,sha256=pz4lI-CGfFGjvUkGQgrCkJBTb5q7o9rGbwvbmC6dljo,234860
183
183
  aws_cdk/aws_mediastore/__init__.py,sha256=q-oy27t6Z9XihVlcW0gtbWltKaLyj4dCNKJfVyOrp0U,59415
@@ -194,7 +194,7 @@ aws_cdk/aws_notifications/__init__.py,sha256=KamPOKidmdEYT0iOq10cLORZfyx6AWxTdhF
194
194
  aws_cdk/aws_notificationscontacts/__init__.py,sha256=mcjKdAlwKIg6bZM3f1sqC25vc9WcY3N-W5bbTLKQVDY,25712
195
195
  aws_cdk/aws_oam/__init__.py,sha256=0qetIc7_rUXkL7S1zYnpxf0qlXIvtFg5oCPIorDLSr4,50978
196
196
  aws_cdk/aws_omics/__init__.py,sha256=NR3_mE3uKGgGBpebGkT2HLfX62shU4qsc6fNyFeRTOQ,157529
197
- aws_cdk/aws_opensearchserverless/__init__.py,sha256=McQrpCTwqItfSNLtg8Z7_hi6blDrNTx74Q5meiFou7c,116559
197
+ aws_cdk/aws_opensearchserverless/__init__.py,sha256=tkVqO7uffM984lmqQrUYu8wIHDqajlxwjvA2FsFh_O8,118144
198
198
  aws_cdk/aws_opensearchservice/__init__.py,sha256=7jlcpyQz6gNNKv4RPw8TH3n_MFMckm3ppozUtv-xflw,643650
199
199
  aws_cdk/aws_opsworks/__init__.py,sha256=8V_ueRxKAdkbxMoaSbJNbdrlbSbswYlEaFCSzm-aHk4,437770
200
200
  aws_cdk/aws_opsworkscm/__init__.py,sha256=I7MOUF6zDNYpn-1TNoJWLK7sNObnKuFzXzcS3ixG3ug,88231
@@ -206,7 +206,7 @@ aws_cdk/aws_pcaconnectorad/__init__.py,sha256=Ou-wec5zycs6ml41c8rFMaig-RxlNfabqX
206
206
  aws_cdk/aws_pcaconnectorscep/__init__.py,sha256=_IqglqYUVuO6PW5idVxVAly8miAwiE8t2zhQ2cdkinw,45135
207
207
  aws_cdk/aws_pcs/__init__.py,sha256=IwuX-IhSuU6MW8xD98iPF-PduSPW2YTGSmXfdeJZRs4,149217
208
208
  aws_cdk/aws_personalize/__init__.py,sha256=AvUNyVwnqzb784BilPiv8Eb6Yi_WkEaWjc_wky01Ueo,137374
209
- aws_cdk/aws_pinpoint/__init__.py,sha256=g1pIpw6jc6rhyVPBoBcsvFLzwN7xbGoZPFHY_FHmMyI,862228
209
+ aws_cdk/aws_pinpoint/__init__.py,sha256=h9secEtICDcLaQG5j78L4JLIBf3mWNfF4giKyFentgw,862368
210
210
  aws_cdk/aws_pinpointemail/__init__.py,sha256=ZFWliw43D_CFFVIFEJ5Ke98HCxSvfD7dvv62Dm8T6co,139494
211
211
  aws_cdk/aws_pipes/__init__.py,sha256=FJ7RVHqGWy2vf-jcIJWD-h2ip-YVJSDYf0r7Ap6o1r0,488355
212
212
  aws_cdk/aws_proton/__init__.py,sha256=tpbXvDjtyU1SyvVXJEaqwaJAMiZ1xlriFJhfqpJPOOs,71292
@@ -215,7 +215,7 @@ aws_cdk/aws_qldb/__init__.py,sha256=Y77mQlE_bPnvp2-xi6Zx7Nqq88MVjB0bGsFskfkTpj8,
215
215
  aws_cdk/aws_quicksight/__init__.py,sha256=UXM2FjMmmM6tYWk-Y0_qzPfQYU4gmTEoF1gZDOhD1kY,15478029
216
216
  aws_cdk/aws_ram/__init__.py,sha256=hTueUpQ-pdpE9TIHA7Ekd4-IMhT006gRbqhaUtTDDy0,51838
217
217
  aws_cdk/aws_rbin/__init__.py,sha256=CzabGGl5JnclFXLGuB8hu8bf_z0rWog3FqYK7o84QYo,50396
218
- aws_cdk/aws_rds/__init__.py,sha256=Pz7I4m3Fl_fxTGgZUt_S_Dre7k_6gsFEqin4amSXfjE,2877358
218
+ aws_cdk/aws_rds/__init__.py,sha256=b-R8sg6Q_si8HDRm2jiGnumb_usD4JPtO812qyqliKc,2887753
219
219
  aws_cdk/aws_redshift/__init__.py,sha256=-bwoe5p1CLfrWeIJYNyTaeD9Ydv6Au2dvI5nFDRuZXg,405207
220
220
  aws_cdk/aws_redshiftserverless/__init__.py,sha256=_sToFikuIuA0NKu0ug8TqhCnDsCu-5SLosIeCvtxkH0,170949
221
221
  aws_cdk/aws_refactorspaces/__init__.py,sha256=HlrRPKH0kwPz6Ka6zooBl3hqU5s6lpjiLrMjJXHDIro,123625
@@ -233,12 +233,12 @@ aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=0WSDxnS6OvT32w-Mxqq42R2fYD
233
233
  aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=_tJI6bM9ZJJwOwM1wjYJIBH5zjnfXBLWj996joYsoYs,95213
234
234
  aws_cdk/aws_route53resolver/__init__.py,sha256=nJbfiGeiK-Ol3xK2i2NNla7SkYZRwQSHKZpOWFDdKjo,244028
235
235
  aws_cdk/aws_rum/__init__.py,sha256=RKoOvHz8UScEGP9v_A5mKXdxOmz1pFL6ANj0bgWSybg,74371
236
- aws_cdk/aws_s3/__init__.py,sha256=H5wNzarz70U0nQQcI-TR5EXUnMFgW_CRO9I7JQPNsuE,1258520
236
+ aws_cdk/aws_s3/__init__.py,sha256=nAupJyZb_g-qrtlDBBfkn538N6WM9b64Lo49PU78714,1275688
237
237
  aws_cdk/aws_s3_assets/__init__.py,sha256=f7RpzeNM5tiA_-lENWwIdwVWBSvcAle5V0sKunuNjto,49202
238
238
  aws_cdk/aws_s3_deployment/__init__.py,sha256=OWyq4P4wZ3G1Z4LWGBDshPm6M1tuzJjP2UpfOKQqY_A,122378
239
239
  aws_cdk/aws_s3_notifications/__init__.py,sha256=X8q1NjKIwZ3ksb2Y4ElKtjmJQJy5HekQTN2mfLPd2Bw,10061
240
240
  aws_cdk/aws_s3express/__init__.py,sha256=Ey2TqZ09cdHtl8rujUVC1IgQa54qiT2B1tFQGzCLMZE,87162
241
- aws_cdk/aws_s3objectlambda/__init__.py,sha256=YIJS7WAUpkcanakWCqrA13BiNWInyfz8HrZ0No3YuMM,68696
241
+ aws_cdk/aws_s3objectlambda/__init__.py,sha256=SIlxWqJL2Ssm_ypY8fqfOrr0i01Swdw5eG1SIOPNqBg,68692
242
242
  aws_cdk/aws_s3outposts/__init__.py,sha256=E_82WGxBiu2QGNbY88JpkS5qvNNiQ9Hb9Thi3ZHV9k8,115636
243
243
  aws_cdk/aws_s3tables/__init__.py,sha256=JJEX51HJKKM6N8_3B8C62tncam0E9StSJDJW7GLmuKE,31603
244
244
  aws_cdk/aws_sagemaker/__init__.py,sha256=kmTvCkBn8WyRVcyYkPmNUDLeDwgBN3WWROgOLx1qmuM,3116810
@@ -251,7 +251,7 @@ aws_cdk/aws_securitylake/__init__.py,sha256=rfFddxAoKNIz_ne3EN9GTtzk6IkF10Q4e7A-
251
251
  aws_cdk/aws_servicecatalog/__init__.py,sha256=TCpVK7DJtj6XzY7jp_yG2aR7kRr5ZoyE806yZNo1qI8,545061
252
252
  aws_cdk/aws_servicecatalogappregistry/__init__.py,sha256=urPoS8H7S8SUOPqgBx-YVblPFwIfkmzt5T8PcfO14u8,57183
253
253
  aws_cdk/aws_servicediscovery/__init__.py,sha256=H6AQzrCQGPO4c7ktgjj7UwBt5RzGcJISiKWfMkTOd9o,367859
254
- aws_cdk/aws_ses/__init__.py,sha256=TyQiq-3-EAPfIf8kdja-mMhX8Ak927VnN3BPxWnKNMs,943183
254
+ aws_cdk/aws_ses/__init__.py,sha256=O1tG59u6WO1p4QwR7LKKA2LwH0MbNEjsK4k6Di9V_N4,951588
255
255
  aws_cdk/aws_ses_actions/__init__.py,sha256=OL6WyVSh2wmikWy6ohT9tk__mIuBFBVM6hr7-CT14HU,51664
256
256
  aws_cdk/aws_shield/__init__.py,sha256=u2HOZSSMan1klAHeQMyi9q_RpsWBZo_5rstEk1FZLSc,105419
257
257
  aws_cdk/aws_signer/__init__.py,sha256=dCiLzdcNfJFM08BJu_PP3sEe9QjFcu8kcyRiQHwP5ns,59411
@@ -259,24 +259,24 @@ aws_cdk/aws_simspaceweaver/__init__.py,sha256=aMmfPBIGNmC2ck7Wdox-uWXiQ8tPVUOEmS
259
259
  aws_cdk/aws_sns/__init__.py,sha256=gvXHoXYykIHnXE4MvwGhLKyEf4arSKJAjaYL9hNMtFU,403076
260
260
  aws_cdk/aws_sns_subscriptions/__init__.py,sha256=qHhGt1KvVVSk5xzggHF2EImcDsuTYd_s4N5P46xB5SE,63443
261
261
  aws_cdk/aws_sqs/__init__.py,sha256=w5CIS33073ckGzxaSh0dX8Td5TrdS9O7N2V6WvVlexI,287239
262
- aws_cdk/aws_ssm/__init__.py,sha256=-ko6Qc6a84dPJhfsdQcnGX40_P6hSwkrZDVYHH-SxXM,598872
262
+ aws_cdk/aws_ssm/__init__.py,sha256=rfWSqlENcmnh1wrGFe__SdCudEgrZCNDMvWnKwdacww,598956
263
263
  aws_cdk/aws_ssmcontacts/__init__.py,sha256=KXKVp3qGHj2REJDqVdaMdBp9oU9gOrMgt8j9MK8igck,139323
264
264
  aws_cdk/aws_ssmincidents/__init__.py,sha256=ZtoIKZxZ5Dxna86zAT90NxVTC3u4YQWxNjTQbS85E4Q,113521
265
265
  aws_cdk/aws_ssmquicksetup/__init__.py,sha256=Pp0tR4uOEKGvJYqmFaEkgh1bU4hq59gffLqbyRyYFDs,81025
266
266
  aws_cdk/aws_sso/__init__.py,sha256=cVECvphmmkiiwwkz5D4fTc1hvpHZh2GJ5HIPkojtk2s,157127
267
- aws_cdk/aws_stepfunctions/__init__.py,sha256=CpxkB_bcjGMIbf5Jun5B554dvdSVGPqfKmfA-nd6VjQ,1376338
268
- aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=ZPc1SccS0b61AbbKPEC0eSLN7qR31US_xNOh_x1MP-Q,5114502
269
- aws_cdk/aws_supportapp/__init__.py,sha256=VZDqjJz27VZK05fKO_gcgptJfjPpQRPnAFoB2IEq39s,49409
267
+ aws_cdk/aws_stepfunctions/__init__.py,sha256=IWPyHsxMIp8ZOQ8_zJz26Jqwaw-Kn7KKD-SLTmMEJs8,1388145
268
+ aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=PFDv5PNL3Kk1mnyrkPkM2yrS2_lL-BTfw6oyg2cB0Yw,5118865
269
+ aws_cdk/aws_supportapp/__init__.py,sha256=B32RErRZHGz0WztdcmabGTML_BGJERh8Cj7I1w_f048,49292
270
270
  aws_cdk/aws_synthetics/__init__.py,sha256=F0d4WuE-M1JQWeIq6r3X94o6bk3oZIbojBv2kKEYNmk,273854
271
271
  aws_cdk/aws_systemsmanagersap/__init__.py,sha256=I9r9r-Aw_Qd8PuvOWXdSEIOITzlK9PMC8OISc-UF4Lo,32818
272
272
  aws_cdk/aws_timestream/__init__.py,sha256=H8FsZmYu015c0A-PqfTINg6AO-g2D1oXy2JqlqitVpY,246308
273
- aws_cdk/aws_transfer/__init__.py,sha256=WWqZ_C8mJXG-z4zXAJ6EIDC34iPFGdagz7t3m3bcbF0,402236
273
+ aws_cdk/aws_transfer/__init__.py,sha256=bqLHpN4lQ1AAqdQRiFrI9HOpyF9M3Lz878HqXiJkw1w,447847
274
274
  aws_cdk/aws_verifiedpermissions/__init__.py,sha256=3WdGsRMPeelf1NRu4lir1_-M7P6r0Ex5lgFxsYMTZ2w,154844
275
275
  aws_cdk/aws_voiceid/__init__.py,sha256=oNdK-k5gt0-X0evdU_Qxb39gB6Ec6AxIok_RBnEUD2E,22487
276
276
  aws_cdk/aws_vpclattice/__init__.py,sha256=HEwqRo71G0_UXqXEC-p9CEYqhDc3dMdCSayxedVfef8,370794
277
277
  aws_cdk/aws_waf/__init__.py,sha256=RBdzr4Bd3UjK9V5TtdyemLWOY0WR-JUEh0WjHBTJuRU,212199
278
278
  aws_cdk/aws_wafregional/__init__.py,sha256=j18Bfp911qSJGxfyxxs5VOPxhFbiCeZW8Tz4wFC4pa4,276775
279
- aws_cdk/aws_wafv2/__init__.py,sha256=B8BFdmlkGFO9paaHvXgcX93Zqo6KXqe02J-ZKw-aJcA,1397925
279
+ aws_cdk/aws_wafv2/__init__.py,sha256=AFRQMo7QLkQcWuB0eULFbs7230uBFell4LhXcod94GA,1399290
280
280
  aws_cdk/aws_wisdom/__init__.py,sha256=_HAGCmyHTM-YvA7iVB6rGg5TslEv2Uou7sTX980bzAQ,637024
281
281
  aws_cdk/aws_workspaces/__init__.py,sha256=agC72J8zP_G2NI4nzzYjmlSNUygoa7f-ebFcfxhSBts,99201
282
282
  aws_cdk/aws_workspacesthinclient/__init__.py,sha256=j97IQv3GVHYSSXVlM1iHtt0kyu683OGJhVMNQyZMAKA,49473
@@ -284,17 +284,16 @@ aws_cdk/aws_workspacesweb/__init__.py,sha256=rwBUuyqhfbslzQEpdAZ8RKoleSnptZkH5T0
284
284
  aws_cdk/aws_xray/__init__.py,sha256=xQBSDBK6NWs8C09LUjc531ff8Liy3SO9Mwu6LpXURdE,98567
285
285
  aws_cdk/cloud_assembly_schema/__init__.py,sha256=ApKCUX46_fvGyHP6HyfzRdbOUCqXqmbpNK65ZSURwuI,428944
286
286
  aws_cdk/cloudformation_include/__init__.py,sha256=nWU59UskSwMHLVfmA2qrsTOqUk65NWElIPTvp-KLA_8,50358
287
- aws_cdk/custom_resources/__init__.py,sha256=qDnfMSMTdozNA2WPdN78oSmODHZu3DZdX8l-nzmLNFo,168471
288
- aws_cdk/cx_api/__init__.py,sha256=0TFBEZ1zN8u_XbUUQz3knclPYsBKJwunZ0ypsohCaOY,175495
287
+ aws_cdk/custom_resources/__init__.py,sha256=yhqIybvAUuCth3twMsH4MnQB7J-Guj2RcYFRbyUFr7c,168133
288
+ aws_cdk/cx_api/__init__.py,sha256=HnicSH0FiXtYfJjhM1aNgn5UqWK-ycdCHhZ3Ft8GKSA,176055
289
289
  aws_cdk/lambda_layer_awscli/__init__.py,sha256=FUcVOwp5XHkYiFms2BGfZWWYCo4vujoEtc9uN-Jc570,3291
290
- aws_cdk/lambda_layer_kubectl/__init__.py,sha256=n4HLk6edsx2fSmW82ybM_RwaRCsxvfgCBjgCpRrc1K4,3563
291
290
  aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=Q0PMbPsP4A7YO-YZe9esn-iziyQHEXR5z1CSSNfeHn8,3306
292
- aws_cdk/pipelines/__init__.py,sha256=PMIOp-7-2JByt8yJ72-uv07gSSPJ1BTxdykdDG17nfA,397495
291
+ aws_cdk/pipelines/__init__.py,sha256=HOXBjF1CPi8wQm8zl8Si7G8DpfKl_DyY7-Bgm8WpjEU,397495
293
292
  aws_cdk/region_info/__init__.py,sha256=29jwDjGrb4gSGedV1W1e5SuAYF9ZZKYsz0gsSFjdBO4,39658
294
293
  aws_cdk/triggers/__init__.py,sha256=fPVnj7ot9BFSzO-cTWQz9bMuGPG1hqZFJ7ROMkq0vnk,123578
295
- aws_cdk_lib-2.178.2.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
296
- aws_cdk_lib-2.178.2.dist-info/METADATA,sha256=N1YjJNA2P3DV4zHMIBCbr6TPmMn7an1T8fRGYCwuaag,60027
297
- aws_cdk_lib-2.178.2.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
298
- aws_cdk_lib-2.178.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
299
- aws_cdk_lib-2.178.2.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
300
- aws_cdk_lib-2.178.2.dist-info/RECORD,,
294
+ aws_cdk_lib-2.180.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
295
+ aws_cdk_lib-2.180.0.dist-info/METADATA,sha256=BtuWX2G4E-YQTEs1h6Jw-k0nZcG4I2K2k-nHEI0ssP0,59972
296
+ aws_cdk_lib-2.180.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
297
+ aws_cdk_lib-2.180.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
298
+ aws_cdk_lib-2.180.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
299
+ aws_cdk_lib-2.180.0.dist-info/RECORD,,