aws-cdk-lib 2.173.3__py3-none-any.whl → 2.174.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 (88) hide show
  1. aws_cdk/__init__.py +210 -181
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.173.3.jsii.tgz → aws-cdk-lib@2.174.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +127 -168
  5. aws_cdk/aws_appconfig/__init__.py +498 -1
  6. aws_cdk/aws_applicationautoscaling/__init__.py +4 -1
  7. aws_cdk/aws_appsync/__init__.py +4 -0
  8. aws_cdk/aws_autoscaling/__init__.py +96 -0
  9. aws_cdk/aws_batch/__init__.py +1084 -233
  10. aws_cdk/aws_bedrock/__init__.py +2119 -181
  11. aws_cdk/aws_cassandra/__init__.py +476 -4
  12. aws_cdk/aws_cleanrooms/__init__.py +543 -17
  13. aws_cdk/aws_cloudformation/__init__.py +172 -169
  14. aws_cdk/aws_cloudfront/__init__.py +773 -26
  15. aws_cdk/aws_cloudtrail/__init__.py +8 -2
  16. aws_cdk/aws_codebuild/__init__.py +83 -0
  17. aws_cdk/aws_codepipeline/__init__.py +2 -1
  18. aws_cdk/aws_cognito/__init__.py +232 -200
  19. aws_cdk/aws_connect/__init__.py +187 -36
  20. aws_cdk/aws_connectcampaignsv2/__init__.py +106 -12
  21. aws_cdk/aws_databrew/__init__.py +69 -1
  22. aws_cdk/aws_datasync/__init__.py +33 -28
  23. aws_cdk/aws_datazone/__init__.py +141 -41
  24. aws_cdk/aws_dlm/__init__.py +20 -10
  25. aws_cdk/aws_dms/__init__.py +722 -30
  26. aws_cdk/aws_dynamodb/__init__.py +76 -4
  27. aws_cdk/aws_ec2/__init__.py +1233 -65
  28. aws_cdk/aws_ecr/__init__.py +31 -0
  29. aws_cdk/aws_ecr_assets/__init__.py +5 -0
  30. aws_cdk/aws_ecs/__init__.py +88 -11
  31. aws_cdk/aws_efs/__init__.py +15 -8
  32. aws_cdk/aws_eks/__init__.py +114 -45
  33. aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
  34. aws_cdk/aws_emrserverless/__init__.py +143 -0
  35. aws_cdk/aws_events/__init__.py +50 -30
  36. aws_cdk/aws_fis/__init__.py +33 -33
  37. aws_cdk/aws_fsx/__init__.py +20 -10
  38. aws_cdk/aws_glue/__init__.py +34 -11
  39. aws_cdk/aws_greengrass/__init__.py +8 -8
  40. aws_cdk/aws_guardduty/__init__.py +1 -1
  41. aws_cdk/aws_imagebuilder/__init__.py +45 -47
  42. aws_cdk/aws_internetmonitor/__init__.py +3 -3
  43. aws_cdk/aws_invoicing/__init__.py +55 -30
  44. aws_cdk/aws_iot/__init__.py +1117 -4
  45. aws_cdk/aws_iot1click/__init__.py +17 -7
  46. aws_cdk/aws_kendra/__init__.py +4 -6
  47. aws_cdk/aws_lambda/__init__.py +15 -1
  48. aws_cdk/aws_logs/__init__.py +4011 -86
  49. aws_cdk/aws_m2/__init__.py +41 -0
  50. aws_cdk/aws_mediaconnect/__init__.py +202 -7
  51. aws_cdk/aws_memorydb/__init__.py +22 -22
  52. aws_cdk/aws_networkmanager/__init__.py +758 -0
  53. aws_cdk/aws_opensearchservice/__init__.py +222 -0
  54. aws_cdk/aws_organizations/__init__.py +5 -3
  55. aws_cdk/aws_pcs/__init__.py +3038 -0
  56. aws_cdk/aws_pipes/__init__.py +10 -10
  57. aws_cdk/aws_qbusiness/__init__.py +415 -140
  58. aws_cdk/aws_quicksight/__init__.py +15932 -6448
  59. aws_cdk/aws_ram/__init__.py +5 -11
  60. aws_cdk/aws_rbin/__init__.py +28 -16
  61. aws_cdk/aws_rds/__init__.py +184 -24
  62. aws_cdk/aws_redshiftserverless/__init__.py +156 -0
  63. aws_cdk/aws_resiliencehub/__init__.py +2 -1
  64. aws_cdk/aws_route53_targets/__init__.py +5 -5
  65. aws_cdk/aws_s3/__init__.py +25 -15
  66. aws_cdk/aws_s3express/__init__.py +7 -7
  67. aws_cdk/aws_s3tables/__init__.py +683 -0
  68. aws_cdk/aws_sagemaker/__init__.py +574 -189
  69. aws_cdk/aws_secretsmanager/__init__.py +2 -0
  70. aws_cdk/aws_securityhub/__init__.py +41 -165
  71. aws_cdk/aws_servicediscovery/__init__.py +10 -3
  72. aws_cdk/aws_ses/__init__.py +190 -5
  73. aws_cdk/aws_sns/__init__.py +7 -3
  74. aws_cdk/aws_synthetics/__init__.py +29 -4
  75. aws_cdk/aws_transfer/__init__.py +8 -0
  76. aws_cdk/aws_vpclattice/__init__.py +147 -77
  77. aws_cdk/aws_wafv2/__init__.py +20 -8
  78. aws_cdk/aws_wisdom/__init__.py +162 -111
  79. aws_cdk/aws_workspaces/__init__.py +10 -4
  80. aws_cdk/cloud_assembly_schema/__init__.py +22 -0
  81. aws_cdk/custom_resources/__init__.py +31 -0
  82. aws_cdk/cx_api/__init__.py +19 -0
  83. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/LICENSE +1 -1
  84. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/METADATA +2 -2
  85. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/NOTICE +1 -1
  86. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/RECORD +88 -86
  87. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/WHEEL +0 -0
  88. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/top_level.txt +0 -0
@@ -1056,7 +1056,7 @@ class CfnWorkspacesPool(
1056
1056
  :param pool_name: The name of the pool.
1057
1057
  :param application_settings: The persistent application settings for users of the pool.
1058
1058
  :param description: The description of the pool.
1059
- :param tags: The tags for the pool.
1059
+ :param tags:
1060
1060
  :param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
1061
1061
  '''
1062
1062
  if __debug__:
@@ -1235,7 +1235,11 @@ class CfnWorkspacesPool(
1235
1235
  @builtins.property
1236
1236
  @jsii.member(jsii_name="tags")
1237
1237
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1238
- '''The tags for the pool.'''
1238
+ '''
1239
+ :deprecated: this property has been deprecated
1240
+
1241
+ :stability: deprecated
1242
+ '''
1239
1243
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
1240
1244
 
1241
1245
  @tags.setter
@@ -1517,7 +1521,7 @@ class CfnWorkspacesPoolProps:
1517
1521
  :param pool_name: The name of the pool.
1518
1522
  :param application_settings: The persistent application settings for users of the pool.
1519
1523
  :param description: The description of the pool.
1520
- :param tags: The tags for the pool.
1524
+ :param tags:
1521
1525
  :param timeout_settings: The amount of time that a pool session remains active after users disconnect. If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.
1522
1526
 
1523
1527
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html
@@ -1645,9 +1649,11 @@ class CfnWorkspacesPoolProps:
1645
1649
 
1646
1650
  @builtins.property
1647
1651
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1648
- '''The tags for the pool.
1652
+ '''
1653
+ :deprecated: this property has been deprecated
1649
1654
 
1650
1655
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspacespool.html#cfn-workspaces-workspacespool-tags
1656
+ :stability: deprecated
1651
1657
  '''
1652
1658
  result = self._values.get("tags")
1653
1659
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
@@ -315,6 +315,7 @@ class ArtifactType(enum.Enum):
315
315
  name_mapping={
316
316
  "version": "version",
317
317
  "artifacts": "artifacts",
318
+ "minimum_cli_version": "minimumCliVersion",
318
319
  "missing": "missing",
319
320
  "runtime": "runtime",
320
321
  },
@@ -325,6 +326,7 @@ class AssemblyManifest:
325
326
  *,
326
327
  version: builtins.str,
327
328
  artifacts: typing.Optional[typing.Mapping[builtins.str, typing.Union[ArtifactManifest, typing.Dict[builtins.str, typing.Any]]]] = None,
329
+ minimum_cli_version: typing.Optional[builtins.str] = None,
328
330
  missing: typing.Optional[typing.Sequence[typing.Union["MissingContext", typing.Dict[builtins.str, typing.Any]]]] = None,
329
331
  runtime: typing.Optional[typing.Union["RuntimeInfo", typing.Dict[builtins.str, typing.Any]]] = None,
330
332
  ) -> None:
@@ -332,6 +334,7 @@ class AssemblyManifest:
332
334
 
333
335
  :param version: Protocol version.
334
336
  :param artifacts: The set of artifacts in this assembly. Default: - no artifacts.
337
+ :param minimum_cli_version: Required CLI version, if available. If the manifest producer knows, it can put the minimum version of the CLI here that supports reading this assembly. If set, it can be used to show a more informative error message to users. Default: - Minimum CLI version unknown
335
338
  :param missing: Missing context information. If this field has values, it means that the cloud assembly is not complete and should not be deployed. Default: - no missing context.
336
339
  :param runtime: Runtime information. Default: - no info.
337
340
 
@@ -403,6 +406,7 @@ class AssemblyManifest:
403
406
  )
404
407
  )
405
408
  },
409
+ minimum_cli_version="minimumCliVersion",
406
410
  missing=[MissingContext(
407
411
  key="key",
408
412
  props=AmiContextQuery(
@@ -435,6 +439,7 @@ class AssemblyManifest:
435
439
  type_hints = typing.get_type_hints(_typecheckingstub__d707328dcc86d4e43fc56bf16523e6c309819b8983de0d413e55cdeb244d4810)
436
440
  check_type(argname="argument version", value=version, expected_type=type_hints["version"])
437
441
  check_type(argname="argument artifacts", value=artifacts, expected_type=type_hints["artifacts"])
442
+ check_type(argname="argument minimum_cli_version", value=minimum_cli_version, expected_type=type_hints["minimum_cli_version"])
438
443
  check_type(argname="argument missing", value=missing, expected_type=type_hints["missing"])
439
444
  check_type(argname="argument runtime", value=runtime, expected_type=type_hints["runtime"])
440
445
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -442,6 +447,8 @@ class AssemblyManifest:
442
447
  }
443
448
  if artifacts is not None:
444
449
  self._values["artifacts"] = artifacts
450
+ if minimum_cli_version is not None:
451
+ self._values["minimum_cli_version"] = minimum_cli_version
445
452
  if missing is not None:
446
453
  self._values["missing"] = missing
447
454
  if runtime is not None:
@@ -465,6 +472,20 @@ class AssemblyManifest:
465
472
  result = self._values.get("artifacts")
466
473
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, ArtifactManifest]], result)
467
474
 
475
+ @builtins.property
476
+ def minimum_cli_version(self) -> typing.Optional[builtins.str]:
477
+ '''Required CLI version, if available.
478
+
479
+ If the manifest producer knows, it can put the minimum version of the CLI
480
+ here that supports reading this assembly.
481
+
482
+ If set, it can be used to show a more informative error message to users.
483
+
484
+ :default: - Minimum CLI version unknown
485
+ '''
486
+ result = self._values.get("minimum_cli_version")
487
+ return typing.cast(typing.Optional[builtins.str], result)
488
+
468
489
  @builtins.property
469
490
  def missing(self) -> typing.Optional[typing.List["MissingContext"]]:
470
491
  '''Missing context information.
@@ -8638,6 +8659,7 @@ def _typecheckingstub__d707328dcc86d4e43fc56bf16523e6c309819b8983de0d413e55cdeb2
8638
8659
  *,
8639
8660
  version: builtins.str,
8640
8661
  artifacts: typing.Optional[typing.Mapping[builtins.str, typing.Union[ArtifactManifest, typing.Dict[builtins.str, typing.Any]]]] = None,
8662
+ minimum_cli_version: typing.Optional[builtins.str] = None,
8641
8663
  missing: typing.Optional[typing.Sequence[typing.Union[MissingContext, typing.Dict[builtins.str, typing.Any]]]] = None,
8642
8664
  runtime: typing.Optional[typing.Union[RuntimeInfo, typing.Dict[builtins.str, typing.Any]]] = None,
8643
8665
  ) -> None:
@@ -588,6 +588,10 @@ Since a successful resource provisioning might or might not produce outputs, thi
588
588
 
589
589
  In both the cases, you will get a synth time error if you attempt to use it in conjunction with `ignoreErrorCodesMatching`.
590
590
 
591
+ ### Setting ServiceTimeout for Custom Resources
592
+
593
+ You can set the maximum time that can elapse before a custom resource operation times out by setting `serviceTimeout` property. The default value is 3600 seconds.
594
+
591
595
  ### Customizing the Lambda function implementing the custom resource
592
596
 
593
597
  Use the `role`, `timeout`, `memorySize`, `logGroup`, `functionName` and `removalPolicy` properties to customize
@@ -1076,6 +1080,7 @@ class AwsCustomResource(
1076
1080
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
1077
1081
  resource_type: typing.Optional[builtins.str] = None,
1078
1082
  role: typing.Optional[_IRole_235f5d8e] = None,
1083
+ service_timeout: typing.Optional[_Duration_4839e8c3] = None,
1079
1084
  timeout: typing.Optional[_Duration_4839e8c3] = None,
1080
1085
  vpc: typing.Optional[_IVpc_f30d5663] = None,
1081
1086
  vpc_subnets: typing.Optional[typing.Union[_SubnetSelection_e57d76df, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -1095,6 +1100,7 @@ class AwsCustomResource(
1095
1100
  :param removal_policy: The policy to apply when this resource is removed from the application. Default: cdk.RemovalPolicy.Destroy
1096
1101
  :param resource_type: Cloudformation Resource type. Default: - Custom::AWS
1097
1102
  :param role: The execution role for the singleton Lambda function implementing this custom resource provider. This role will apply to all ``AwsCustomResource`` instances in the stack. The role must be assumable by the ``lambda.amazonaws.com`` service principal. Default: - a new role is created
1103
+ :param service_timeout: The maximum time that can elapse before a custom resource operation times out. You should not need to set this property. It is intended to allow quick turnaround even if the implementor of the custom resource forgets to include a ``try/catch``. We have included the ``try/catch``, and AWS service calls usually do not take an hour to complete. The value must be between 1 second and 3600 seconds. Default: Duration.seconds(3600)
1098
1104
  :param timeout: The timeout for the singleton Lambda function implementing this custom resource. Default: Duration.minutes(2)
1099
1105
  :param vpc: The vpc to provision the lambda function in. Default: - the function is not provisioned inside a vpc.
1100
1106
  :param vpc_subnets: Which subnets from the VPC to place the lambda function in. Only used if 'vpc' is supplied. Note: internet access for Lambdas requires a NAT gateway, so picking Public subnets is not allowed. Default: - the Vpc default strategy if not specified
@@ -1116,6 +1122,7 @@ class AwsCustomResource(
1116
1122
  removal_policy=removal_policy,
1117
1123
  resource_type=resource_type,
1118
1124
  role=role,
1125
+ service_timeout=service_timeout,
1119
1126
  timeout=timeout,
1120
1127
  vpc=vpc,
1121
1128
  vpc_subnets=vpc_subnets,
@@ -1278,6 +1285,7 @@ class AwsCustomResourcePolicy(
1278
1285
  "removal_policy": "removalPolicy",
1279
1286
  "resource_type": "resourceType",
1280
1287
  "role": "role",
1288
+ "service_timeout": "serviceTimeout",
1281
1289
  "timeout": "timeout",
1282
1290
  "vpc": "vpc",
1283
1291
  "vpc_subnets": "vpcSubnets",
@@ -1299,6 +1307,7 @@ class AwsCustomResourceProps:
1299
1307
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
1300
1308
  resource_type: typing.Optional[builtins.str] = None,
1301
1309
  role: typing.Optional[_IRole_235f5d8e] = None,
1310
+ service_timeout: typing.Optional[_Duration_4839e8c3] = None,
1302
1311
  timeout: typing.Optional[_Duration_4839e8c3] = None,
1303
1312
  vpc: typing.Optional[_IVpc_f30d5663] = None,
1304
1313
  vpc_subnets: typing.Optional[typing.Union[_SubnetSelection_e57d76df, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -1319,6 +1328,7 @@ class AwsCustomResourceProps:
1319
1328
  :param removal_policy: The policy to apply when this resource is removed from the application. Default: cdk.RemovalPolicy.Destroy
1320
1329
  :param resource_type: Cloudformation Resource type. Default: - Custom::AWS
1321
1330
  :param role: The execution role for the singleton Lambda function implementing this custom resource provider. This role will apply to all ``AwsCustomResource`` instances in the stack. The role must be assumable by the ``lambda.amazonaws.com`` service principal. Default: - a new role is created
1331
+ :param service_timeout: The maximum time that can elapse before a custom resource operation times out. You should not need to set this property. It is intended to allow quick turnaround even if the implementor of the custom resource forgets to include a ``try/catch``. We have included the ``try/catch``, and AWS service calls usually do not take an hour to complete. The value must be between 1 second and 3600 seconds. Default: Duration.seconds(3600)
1322
1332
  :param timeout: The timeout for the singleton Lambda function implementing this custom resource. Default: Duration.minutes(2)
1323
1333
  :param vpc: The vpc to provision the lambda function in. Default: - the function is not provisioned inside a vpc.
1324
1334
  :param vpc_subnets: Which subnets from the VPC to place the lambda function in. Only used if 'vpc' is supplied. Note: internet access for Lambdas requires a NAT gateway, so picking Public subnets is not allowed. Default: - the Vpc default strategy if not specified
@@ -1366,6 +1376,7 @@ class AwsCustomResourceProps:
1366
1376
  check_type(argname="argument removal_policy", value=removal_policy, expected_type=type_hints["removal_policy"])
1367
1377
  check_type(argname="argument resource_type", value=resource_type, expected_type=type_hints["resource_type"])
1368
1378
  check_type(argname="argument role", value=role, expected_type=type_hints["role"])
1379
+ check_type(argname="argument service_timeout", value=service_timeout, expected_type=type_hints["service_timeout"])
1369
1380
  check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
1370
1381
  check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
1371
1382
  check_type(argname="argument vpc_subnets", value=vpc_subnets, expected_type=type_hints["vpc_subnets"])
@@ -1394,6 +1405,8 @@ class AwsCustomResourceProps:
1394
1405
  self._values["resource_type"] = resource_type
1395
1406
  if role is not None:
1396
1407
  self._values["role"] = role
1408
+ if service_timeout is not None:
1409
+ self._values["service_timeout"] = service_timeout
1397
1410
  if timeout is not None:
1398
1411
  self._values["timeout"] = timeout
1399
1412
  if vpc is not None:
@@ -1546,6 +1559,22 @@ class AwsCustomResourceProps:
1546
1559
  result = self._values.get("role")
1547
1560
  return typing.cast(typing.Optional[_IRole_235f5d8e], result)
1548
1561
 
1562
+ @builtins.property
1563
+ def service_timeout(self) -> typing.Optional[_Duration_4839e8c3]:
1564
+ '''The maximum time that can elapse before a custom resource operation times out.
1565
+
1566
+ You should not need to set this property. It is intended to allow quick turnaround
1567
+ even if the implementor of the custom resource forgets to include a ``try/catch``.
1568
+ We have included the ``try/catch``, and AWS service calls usually do not take an hour
1569
+ to complete.
1570
+
1571
+ The value must be between 1 second and 3600 seconds.
1572
+
1573
+ :default: Duration.seconds(3600)
1574
+ '''
1575
+ result = self._values.get("service_timeout")
1576
+ return typing.cast(typing.Optional[_Duration_4839e8c3], result)
1577
+
1549
1578
  @builtins.property
1550
1579
  def timeout(self) -> typing.Optional[_Duration_4839e8c3]:
1551
1580
  '''The timeout for the singleton Lambda function implementing this custom resource.
@@ -3183,6 +3212,7 @@ def _typecheckingstub__4b163f566913e92c7adaa1ea97e50050b801bd514d3b2f5e3ddf86c11
3183
3212
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
3184
3213
  resource_type: typing.Optional[builtins.str] = None,
3185
3214
  role: typing.Optional[_IRole_235f5d8e] = None,
3215
+ service_timeout: typing.Optional[_Duration_4839e8c3] = None,
3186
3216
  timeout: typing.Optional[_Duration_4839e8c3] = None,
3187
3217
  vpc: typing.Optional[_IVpc_f30d5663] = None,
3188
3218
  vpc_subnets: typing.Optional[typing.Union[_SubnetSelection_e57d76df, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -3222,6 +3252,7 @@ def _typecheckingstub__2b5a9dace9a09081edfef936656f2d5670f198fb300a32c31957c93e5
3222
3252
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
3223
3253
  resource_type: typing.Optional[builtins.str] = None,
3224
3254
  role: typing.Optional[_IRole_235f5d8e] = None,
3255
+ service_timeout: typing.Optional[_Duration_4839e8c3] = None,
3225
3256
  timeout: typing.Optional[_Duration_4839e8c3] = None,
3226
3257
  vpc: typing.Optional[_IVpc_f30d5663] = None,
3227
3258
  vpc_subnets: typing.Optional[typing.Union[_SubnetSelection_e57d76df, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -495,6 +495,25 @@ This is a feature flag as the old behavior was technically incorrect but users m
495
495
  },
496
496
  }
497
497
  ```
498
+
499
+ * `@aws-cdk/aws-route53-targets:userPoolDomainNameMethodWithoutCustomResource`
500
+
501
+ When enabled, use a new method for DNS Name of user pool domain target without creating a custom resource.
502
+
503
+ When this feature flag is enabled, a new method will be used to get the DNS Name of the user pool domain target. The old method
504
+ creates a custom resource internally, but the new method doesn't need a custom resource.
505
+
506
+ If the flag is set to false then a custom resource will be created when using `UserPoolDomainTarget`.
507
+
508
+ *cdk.json*
509
+
510
+ ```json
511
+ {
512
+ "context": {
513
+ "@aws-cdk/aws-route53-targets:userPoolDomainNameMethodWithoutCustomResource": true
514
+ }
515
+ }
516
+ ```
498
517
  '''
499
518
  from pkgutil import extend_path
500
519
  __path__ = extend_path(__path__, __name__)
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2018-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
189
+ Copyright 2018-2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.173.3
3
+ Version: 2.174.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
@@ -24,7 +24,7 @@ License-File: NOTICE
24
24
  Requires-Dist: aws-cdk.asset-awscli-v1<3.0.0,>=2.2.208
25
25
  Requires-Dist: aws-cdk.asset-kubectl-v20<3.0.0,>=2.1.3
26
26
  Requires-Dist: aws-cdk.asset-node-proxy-agent-v6<3.0.0,>=2.1.0
27
- Requires-Dist: aws-cdk.cloud-assembly-schema<39.0.0,>=38.0.1
27
+ Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.0.1
28
28
  Requires-Dist: constructs<11.0.0,>=10.0.0
29
29
  Requires-Dist: jsii<2.0.0,>=1.104.0
30
30
  Requires-Dist: publication>=0.0.3
@@ -1,5 +1,5 @@
1
1
  AWS Cloud Development Kit (AWS CDK)
2
- Copyright 2018-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ Copyright 2018-2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
 
4
4
  -------------------------------------------------------------------------------
5
5