aws-cdk-lib 2.192.0__py3-none-any.whl → 2.194.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 (39) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.192.0.jsii.tgz → aws-cdk-lib@2.194.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +3 -1
  4. aws_cdk/aws_appsync/__init__.py +4367 -336
  5. aws_cdk/aws_aps/__init__.py +34 -22
  6. aws_cdk/aws_autoscaling/__init__.py +8 -0
  7. aws_cdk/aws_batch/__init__.py +2 -2
  8. aws_cdk/aws_bedrock/__init__.py +6 -4
  9. aws_cdk/aws_ce/__init__.py +34 -22
  10. aws_cdk/aws_cloudfront/__init__.py +3019 -971
  11. aws_cdk/aws_codebuild/__init__.py +19 -10
  12. aws_cdk/aws_codepipeline_actions/__init__.py +526 -0
  13. aws_cdk/aws_dlm/__init__.py +2 -2
  14. aws_cdk/aws_ec2/__init__.py +6 -3
  15. aws_cdk/aws_ecr/__init__.py +417 -0
  16. aws_cdk/aws_ecs/__init__.py +18 -10
  17. aws_cdk/aws_eks/__init__.py +170 -2
  18. aws_cdk/aws_entityresolution/__init__.py +7 -2
  19. aws_cdk/aws_events/__init__.py +41 -8
  20. aws_cdk/aws_lambda/__init__.py +1 -1
  21. aws_cdk/aws_mediapackagev2/__init__.py +50 -6
  22. aws_cdk/aws_memorydb/__init__.py +21 -11
  23. aws_cdk/aws_omics/__init__.py +5 -5
  24. aws_cdk/aws_opensearchservice/__init__.py +45 -25
  25. aws_cdk/aws_qbusiness/__init__.py +2 -2
  26. aws_cdk/aws_quicksight/__init__.py +1 -1
  27. aws_cdk/aws_rds/__init__.py +46 -2
  28. aws_cdk/aws_redshiftserverless/__init__.py +20 -0
  29. aws_cdk/aws_route53resolver/__init__.py +41 -0
  30. aws_cdk/aws_s3/__init__.py +2 -4
  31. aws_cdk/aws_sagemaker/__init__.py +2 -4
  32. aws_cdk/aws_vpclattice/__init__.py +6 -2
  33. aws_cdk/aws_wisdom/__init__.py +25 -6
  34. {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/METADATA +1 -1
  35. {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/RECORD +39 -39
  36. {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/LICENSE +0 -0
  37. {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/NOTICE +0 -0
  38. {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/WHEEL +0 -0
  39. {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/top_level.txt +0 -0
@@ -8878,6 +8878,7 @@ class CfnDBInstance(
8878
8878
  character_set_name="characterSetName",
8879
8879
  copy_tags_to_snapshot=False,
8880
8880
  custom_iam_instance_profile="customIamInstanceProfile",
8881
+ database_insights_mode="databaseInsightsMode",
8881
8882
  db_cluster_identifier="dbClusterIdentifier",
8882
8883
  db_cluster_snapshot_identifier="dbClusterSnapshotIdentifier",
8883
8884
  db_instance_class="dbInstanceClass",
@@ -8974,6 +8975,7 @@ class CfnDBInstance(
8974
8975
  character_set_name: typing.Optional[builtins.str] = None,
8975
8976
  copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
8976
8977
  custom_iam_instance_profile: typing.Optional[builtins.str] = None,
8978
+ database_insights_mode: typing.Optional[builtins.str] = None,
8977
8979
  db_cluster_identifier: typing.Optional[builtins.str] = None,
8978
8980
  db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
8979
8981
  db_instance_class: typing.Optional[builtins.str] = None,
@@ -9057,6 +9059,7 @@ class CfnDBInstance(
9057
9059
  :param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
9058
9060
  :param copy_tags_to_snapshot: Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
9059
9061
  :param custom_iam_instance_profile: The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. This setting is required for RDS Custom. Constraints: - The profile must exist in your account. - The profile must have an IAM role that Amazon EC2 has permissions to assume. - The instance profile name and the associated IAM role name must start with the prefix ``AWSRDSCustom`` . For the list of permissions required for the IAM role, see `Configure IAM and your VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc>`_ in the *Amazon RDS User Guide* .
9062
+ :param database_insights_mode: The mode of Database Insights to enable for the DB instance. .. epigraph:: Aurora DB instances inherit this value from the DB cluster, so you can't change this value.
9060
9063
  :param db_cluster_identifier: The identifier of the DB cluster that this DB instance will belong to. This setting doesn't apply to RDS Custom DB instances.
9061
9064
  :param db_cluster_snapshot_identifier: The identifier for the Multi-AZ DB cluster snapshot to restore from. For more information on Multi-AZ DB clusters, see `Multi-AZ DB cluster deployments <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html>`_ in the *Amazon RDS User Guide* . Constraints: - Must match the identifier of an existing Multi-AZ DB cluster snapshot. - Can't be specified when ``DBSnapshotIdentifier`` is specified. - Must be specified when ``DBSnapshotIdentifier`` isn't specified. - If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the ``DBClusterSnapshotIdentifier`` must be the ARN of the shared snapshot. - Can't be the identifier of an Aurora DB cluster snapshot.
9062
9065
  :param db_instance_class: The compute and memory capacity of the DB instance, for example ``db.m5.large`` . Not all DB instance classes are available in all AWS Regions , or for all database engines. For the full list of DB instance classes, and availability for your engine, see `DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon RDS User Guide* or `Aurora DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon Aurora User Guide* .
@@ -9142,6 +9145,7 @@ class CfnDBInstance(
9142
9145
  character_set_name=character_set_name,
9143
9146
  copy_tags_to_snapshot=copy_tags_to_snapshot,
9144
9147
  custom_iam_instance_profile=custom_iam_instance_profile,
9148
+ database_insights_mode=database_insights_mode,
9145
9149
  db_cluster_identifier=db_cluster_identifier,
9146
9150
  db_cluster_snapshot_identifier=db_cluster_snapshot_identifier,
9147
9151
  db_instance_class=db_instance_class,
@@ -9272,8 +9276,7 @@ class CfnDBInstance(
9272
9276
  @builtins.property
9273
9277
  @jsii.member(jsii_name="attrDatabaseInsightsMode")
9274
9278
  def attr_database_insights_mode(self) -> builtins.str:
9275
- '''The mode of Database Insights that is enabled for the instance.
9276
-
9279
+ '''
9277
9280
  :cloudformationAttribute: DatabaseInsightsMode
9278
9281
  '''
9279
9282
  return typing.cast(builtins.str, jsii.get(self, "attrDatabaseInsightsMode"))
@@ -9617,6 +9620,19 @@ class CfnDBInstance(
9617
9620
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9618
9621
  jsii.set(self, "customIamInstanceProfile", value) # pyright: ignore[reportArgumentType]
9619
9622
 
9623
+ @builtins.property
9624
+ @jsii.member(jsii_name="databaseInsightsMode")
9625
+ def database_insights_mode(self) -> typing.Optional[builtins.str]:
9626
+ '''The mode of Database Insights to enable for the DB instance.'''
9627
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "databaseInsightsMode"))
9628
+
9629
+ @database_insights_mode.setter
9630
+ def database_insights_mode(self, value: typing.Optional[builtins.str]) -> None:
9631
+ if __debug__:
9632
+ type_hints = typing.get_type_hints(_typecheckingstub__b46fcfbcf52de4fba0e79ef45cfd1f9b086be851a81f128b407d6e590bcc50de)
9633
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9634
+ jsii.set(self, "databaseInsightsMode", value) # pyright: ignore[reportArgumentType]
9635
+
9620
9636
  @builtins.property
9621
9637
  @jsii.member(jsii_name="dbClusterIdentifier")
9622
9638
  def db_cluster_identifier(self) -> typing.Optional[builtins.str]:
@@ -10968,6 +10984,7 @@ class CfnDBInstance(
10968
10984
  "character_set_name": "characterSetName",
10969
10985
  "copy_tags_to_snapshot": "copyTagsToSnapshot",
10970
10986
  "custom_iam_instance_profile": "customIamInstanceProfile",
10987
+ "database_insights_mode": "databaseInsightsMode",
10971
10988
  "db_cluster_identifier": "dbClusterIdentifier",
10972
10989
  "db_cluster_snapshot_identifier": "dbClusterSnapshotIdentifier",
10973
10990
  "db_instance_class": "dbInstanceClass",
@@ -11053,6 +11070,7 @@ class CfnDBInstanceProps:
11053
11070
  character_set_name: typing.Optional[builtins.str] = None,
11054
11071
  copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
11055
11072
  custom_iam_instance_profile: typing.Optional[builtins.str] = None,
11073
+ database_insights_mode: typing.Optional[builtins.str] = None,
11056
11074
  db_cluster_identifier: typing.Optional[builtins.str] = None,
11057
11075
  db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
11058
11076
  db_instance_class: typing.Optional[builtins.str] = None,
@@ -11135,6 +11153,7 @@ class CfnDBInstanceProps:
11135
11153
  :param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
11136
11154
  :param copy_tags_to_snapshot: Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
11137
11155
  :param custom_iam_instance_profile: The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. This setting is required for RDS Custom. Constraints: - The profile must exist in your account. - The profile must have an IAM role that Amazon EC2 has permissions to assume. - The instance profile name and the associated IAM role name must start with the prefix ``AWSRDSCustom`` . For the list of permissions required for the IAM role, see `Configure IAM and your VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc>`_ in the *Amazon RDS User Guide* .
11156
+ :param database_insights_mode: The mode of Database Insights to enable for the DB instance. .. epigraph:: Aurora DB instances inherit this value from the DB cluster, so you can't change this value.
11138
11157
  :param db_cluster_identifier: The identifier of the DB cluster that this DB instance will belong to. This setting doesn't apply to RDS Custom DB instances.
11139
11158
  :param db_cluster_snapshot_identifier: The identifier for the Multi-AZ DB cluster snapshot to restore from. For more information on Multi-AZ DB clusters, see `Multi-AZ DB cluster deployments <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html>`_ in the *Amazon RDS User Guide* . Constraints: - Must match the identifier of an existing Multi-AZ DB cluster snapshot. - Can't be specified when ``DBSnapshotIdentifier`` is specified. - Must be specified when ``DBSnapshotIdentifier`` isn't specified. - If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the ``DBClusterSnapshotIdentifier`` must be the ARN of the shared snapshot. - Can't be the identifier of an Aurora DB cluster snapshot.
11140
11159
  :param db_instance_class: The compute and memory capacity of the DB instance, for example ``db.m5.large`` . Not all DB instance classes are available in all AWS Regions , or for all database engines. For the full list of DB instance classes, and availability for your engine, see `DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon RDS User Guide* or `Aurora DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon Aurora User Guide* .
@@ -11228,6 +11247,7 @@ class CfnDBInstanceProps:
11228
11247
  character_set_name="characterSetName",
11229
11248
  copy_tags_to_snapshot=False,
11230
11249
  custom_iam_instance_profile="customIamInstanceProfile",
11250
+ database_insights_mode="databaseInsightsMode",
11231
11251
  db_cluster_identifier="dbClusterIdentifier",
11232
11252
  db_cluster_snapshot_identifier="dbClusterSnapshotIdentifier",
11233
11253
  db_instance_class="dbInstanceClass",
@@ -11320,6 +11340,7 @@ class CfnDBInstanceProps:
11320
11340
  check_type(argname="argument character_set_name", value=character_set_name, expected_type=type_hints["character_set_name"])
11321
11341
  check_type(argname="argument copy_tags_to_snapshot", value=copy_tags_to_snapshot, expected_type=type_hints["copy_tags_to_snapshot"])
11322
11342
  check_type(argname="argument custom_iam_instance_profile", value=custom_iam_instance_profile, expected_type=type_hints["custom_iam_instance_profile"])
11343
+ check_type(argname="argument database_insights_mode", value=database_insights_mode, expected_type=type_hints["database_insights_mode"])
11323
11344
  check_type(argname="argument db_cluster_identifier", value=db_cluster_identifier, expected_type=type_hints["db_cluster_identifier"])
11324
11345
  check_type(argname="argument db_cluster_snapshot_identifier", value=db_cluster_snapshot_identifier, expected_type=type_hints["db_cluster_snapshot_identifier"])
11325
11346
  check_type(argname="argument db_instance_class", value=db_instance_class, expected_type=type_hints["db_instance_class"])
@@ -11415,6 +11436,8 @@ class CfnDBInstanceProps:
11415
11436
  self._values["copy_tags_to_snapshot"] = copy_tags_to_snapshot
11416
11437
  if custom_iam_instance_profile is not None:
11417
11438
  self._values["custom_iam_instance_profile"] = custom_iam_instance_profile
11439
+ if database_insights_mode is not None:
11440
+ self._values["database_insights_mode"] = database_insights_mode
11418
11441
  if db_cluster_identifier is not None:
11419
11442
  self._values["db_cluster_identifier"] = db_cluster_identifier
11420
11443
  if db_cluster_snapshot_identifier is not None:
@@ -11834,6 +11857,19 @@ class CfnDBInstanceProps:
11834
11857
  result = self._values.get("custom_iam_instance_profile")
11835
11858
  return typing.cast(typing.Optional[builtins.str], result)
11836
11859
 
11860
+ @builtins.property
11861
+ def database_insights_mode(self) -> typing.Optional[builtins.str]:
11862
+ '''The mode of Database Insights to enable for the DB instance.
11863
+
11864
+ .. epigraph::
11865
+
11866
+ Aurora DB instances inherit this value from the DB cluster, so you can't change this value.
11867
+
11868
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-databaseinsightsmode
11869
+ '''
11870
+ result = self._values.get("database_insights_mode")
11871
+ return typing.cast(typing.Optional[builtins.str], result)
11872
+
11837
11873
  @builtins.property
11838
11874
  def db_cluster_identifier(self) -> typing.Optional[builtins.str]:
11839
11875
  '''The identifier of the DB cluster that this DB instance will belong to.
@@ -48424,6 +48460,7 @@ def _typecheckingstub__255b0779ca741853674876540bf77279f6293bea05de2cd18724d2b92
48424
48460
  character_set_name: typing.Optional[builtins.str] = None,
48425
48461
  copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
48426
48462
  custom_iam_instance_profile: typing.Optional[builtins.str] = None,
48463
+ database_insights_mode: typing.Optional[builtins.str] = None,
48427
48464
  db_cluster_identifier: typing.Optional[builtins.str] = None,
48428
48465
  db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
48429
48466
  db_instance_class: typing.Optional[builtins.str] = None,
@@ -48594,6 +48631,12 @@ def _typecheckingstub__226e820a1b504a7c3743da9e7c7340401e28197ad7bd4b0cb3f5526c4
48594
48631
  """Type checking stubs"""
48595
48632
  pass
48596
48633
 
48634
+ def _typecheckingstub__b46fcfbcf52de4fba0e79ef45cfd1f9b086be851a81f128b407d6e590bcc50de(
48635
+ value: typing.Optional[builtins.str],
48636
+ ) -> None:
48637
+ """Type checking stubs"""
48638
+ pass
48639
+
48597
48640
  def _typecheckingstub__47e201d1e2bcfacba9b2fdb9245c97a0850bff8695fda8e45cb8e1df70fbde73(
48598
48641
  value: typing.Optional[builtins.str],
48599
48642
  ) -> None:
@@ -49036,6 +49079,7 @@ def _typecheckingstub__3bddb1be0bd1f1699e3a084c5859d94d8879ff15011f2f2eaac29ec16
49036
49079
  character_set_name: typing.Optional[builtins.str] = None,
49037
49080
  copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49038
49081
  custom_iam_instance_profile: typing.Optional[builtins.str] = None,
49082
+ database_insights_mode: typing.Optional[builtins.str] = None,
49039
49083
  db_cluster_identifier: typing.Optional[builtins.str] = None,
49040
49084
  db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
49041
49085
  db_instance_class: typing.Optional[builtins.str] = None,
@@ -1434,6 +1434,15 @@ class CfnWorkgroup(
1434
1434
  '''
1435
1435
  return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrWorkgroup"))
1436
1436
 
1437
+ @builtins.property
1438
+ @jsii.member(jsii_name="attrWorkgroupBaseCapacity")
1439
+ def attr_workgroup_base_capacity(self) -> jsii.Number:
1440
+ '''The base data warehouse capacity of the workgroup in Redshift Processing Units (RPUs).
1441
+
1442
+ :cloudformationAttribute: Workgroup.BaseCapacity
1443
+ '''
1444
+ return typing.cast(jsii.Number, jsii.get(self, "attrWorkgroupBaseCapacity"))
1445
+
1437
1446
  @builtins.property
1438
1447
  @jsii.member(jsii_name="attrWorkgroupConfigParameters")
1439
1448
  def attr_workgroup_config_parameters(self) -> _IResolvable_da3f097b:
@@ -1496,6 +1505,17 @@ class CfnWorkgroup(
1496
1505
  '''
1497
1506
  return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrWorkgroupEnhancedVpcRouting"))
1498
1507
 
1508
+ @builtins.property
1509
+ @jsii.member(jsii_name="attrWorkgroupMaxCapacity")
1510
+ def attr_workgroup_max_capacity(self) -> jsii.Number:
1511
+ '''The maximum data-warehouse capacity Amazon Redshift Serverless uses to serve queries.
1512
+
1513
+ The max capacity is specified in RPUs.
1514
+
1515
+ :cloudformationAttribute: Workgroup.MaxCapacity
1516
+ '''
1517
+ return typing.cast(jsii.Number, jsii.get(self, "attrWorkgroupMaxCapacity"))
1518
+
1499
1519
  @builtins.property
1500
1520
  @jsii.member(jsii_name="attrWorkgroupNamespaceName")
1501
1521
  def attr_workgroup_namespace_name(self) -> builtins.str:
@@ -3480,6 +3480,7 @@ class CfnResolverRule(
3480
3480
  rule_type="ruleType",
3481
3481
 
3482
3482
  # the properties below are optional
3483
+ delegation_record="delegationRecord",
3483
3484
  domain_name="domainName",
3484
3485
  name="name",
3485
3486
  resolver_endpoint_id="resolverEndpointId",
@@ -3503,6 +3504,7 @@ class CfnResolverRule(
3503
3504
  id: builtins.str,
3504
3505
  *,
3505
3506
  rule_type: builtins.str,
3507
+ delegation_record: typing.Optional[builtins.str] = None,
3506
3508
  domain_name: typing.Optional[builtins.str] = None,
3507
3509
  name: typing.Optional[builtins.str] = None,
3508
3510
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -3513,6 +3515,7 @@ class CfnResolverRule(
3513
3515
  :param scope: Scope in which this resource is defined.
3514
3516
  :param id: Construct identifier for this resource (unique in its scope).
3515
3517
  :param rule_type: When you want to forward DNS queries for specified domain name to resolvers on your network, specify ``FORWARD`` . When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify ``SYSTEM`` . For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify ``FORWARD`` for ``RuleType`` . To then have Resolver process queries for apex.example.com, you create a rule and specify ``SYSTEM`` for ``RuleType`` . Currently, only Resolver can create rules that have a value of ``RECURSIVE`` for ``RuleType`` .
3518
+ :param delegation_record: The name server domain for queries to be delegated to if a query matches the delegation record.
3516
3519
  :param domain_name: DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` . If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).
3517
3520
  :param name: The name for the Resolver rule, which you specified when you created the Resolver rule.
3518
3521
  :param resolver_endpoint_id: The ID of the endpoint that the rule is associated with.
@@ -3525,6 +3528,7 @@ class CfnResolverRule(
3525
3528
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3526
3529
  props = CfnResolverRuleProps(
3527
3530
  rule_type=rule_type,
3531
+ delegation_record=delegation_record,
3528
3532
  domain_name=domain_name,
3529
3533
  name=name,
3530
3534
  resolver_endpoint_id=resolver_endpoint_id,
@@ -3648,6 +3652,19 @@ class CfnResolverRule(
3648
3652
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3649
3653
  jsii.set(self, "ruleType", value) # pyright: ignore[reportArgumentType]
3650
3654
 
3655
+ @builtins.property
3656
+ @jsii.member(jsii_name="delegationRecord")
3657
+ def delegation_record(self) -> typing.Optional[builtins.str]:
3658
+ '''The name server domain for queries to be delegated to if a query matches the delegation record.'''
3659
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "delegationRecord"))
3660
+
3661
+ @delegation_record.setter
3662
+ def delegation_record(self, value: typing.Optional[builtins.str]) -> None:
3663
+ if __debug__:
3664
+ type_hints = typing.get_type_hints(_typecheckingstub__b1126d07ce449d0d6220e3fbf183f2d786e81574a4f131914dfe0914a55bb851)
3665
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3666
+ jsii.set(self, "delegationRecord", value) # pyright: ignore[reportArgumentType]
3667
+
3651
3668
  @builtins.property
3652
3669
  @jsii.member(jsii_name="domainName")
3653
3670
  def domain_name(self) -> typing.Optional[builtins.str]:
@@ -4106,6 +4123,7 @@ class CfnResolverRuleAssociationProps:
4106
4123
  jsii_struct_bases=[],
4107
4124
  name_mapping={
4108
4125
  "rule_type": "ruleType",
4126
+ "delegation_record": "delegationRecord",
4109
4127
  "domain_name": "domainName",
4110
4128
  "name": "name",
4111
4129
  "resolver_endpoint_id": "resolverEndpointId",
@@ -4118,6 +4136,7 @@ class CfnResolverRuleProps:
4118
4136
  self,
4119
4137
  *,
4120
4138
  rule_type: builtins.str,
4139
+ delegation_record: typing.Optional[builtins.str] = None,
4121
4140
  domain_name: typing.Optional[builtins.str] = None,
4122
4141
  name: typing.Optional[builtins.str] = None,
4123
4142
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -4127,6 +4146,7 @@ class CfnResolverRuleProps:
4127
4146
  '''Properties for defining a ``CfnResolverRule``.
4128
4147
 
4129
4148
  :param rule_type: When you want to forward DNS queries for specified domain name to resolvers on your network, specify ``FORWARD`` . When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify ``SYSTEM`` . For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify ``FORWARD`` for ``RuleType`` . To then have Resolver process queries for apex.example.com, you create a rule and specify ``SYSTEM`` for ``RuleType`` . Currently, only Resolver can create rules that have a value of ``RECURSIVE`` for ``RuleType`` .
4149
+ :param delegation_record: The name server domain for queries to be delegated to if a query matches the delegation record.
4130
4150
  :param domain_name: DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` . If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).
4131
4151
  :param name: The name for the Resolver rule, which you specified when you created the Resolver rule.
4132
4152
  :param resolver_endpoint_id: The ID of the endpoint that the rule is associated with.
@@ -4146,6 +4166,7 @@ class CfnResolverRuleProps:
4146
4166
  rule_type="ruleType",
4147
4167
 
4148
4168
  # the properties below are optional
4169
+ delegation_record="delegationRecord",
4149
4170
  domain_name="domainName",
4150
4171
  name="name",
4151
4172
  resolver_endpoint_id="resolverEndpointId",
@@ -4165,6 +4186,7 @@ class CfnResolverRuleProps:
4165
4186
  if __debug__:
4166
4187
  type_hints = typing.get_type_hints(_typecheckingstub__fdcaea1870aaf2dc13fe56b2d15a89d6adba2ad5884071fc618c9e4bb2c3ddec)
4167
4188
  check_type(argname="argument rule_type", value=rule_type, expected_type=type_hints["rule_type"])
4189
+ check_type(argname="argument delegation_record", value=delegation_record, expected_type=type_hints["delegation_record"])
4168
4190
  check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
4169
4191
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
4170
4192
  check_type(argname="argument resolver_endpoint_id", value=resolver_endpoint_id, expected_type=type_hints["resolver_endpoint_id"])
@@ -4173,6 +4195,8 @@ class CfnResolverRuleProps:
4173
4195
  self._values: typing.Dict[builtins.str, typing.Any] = {
4174
4196
  "rule_type": rule_type,
4175
4197
  }
4198
+ if delegation_record is not None:
4199
+ self._values["delegation_record"] = delegation_record
4176
4200
  if domain_name is not None:
4177
4201
  self._values["domain_name"] = domain_name
4178
4202
  if name is not None:
@@ -4200,6 +4224,15 @@ class CfnResolverRuleProps:
4200
4224
  assert result is not None, "Required property 'rule_type' is missing"
4201
4225
  return typing.cast(builtins.str, result)
4202
4226
 
4227
+ @builtins.property
4228
+ def delegation_record(self) -> typing.Optional[builtins.str]:
4229
+ '''The name server domain for queries to be delegated to if a query matches the delegation record.
4230
+
4231
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-delegationrecord
4232
+ '''
4233
+ result = self._values.get("delegation_record")
4234
+ return typing.cast(typing.Optional[builtins.str], result)
4235
+
4203
4236
  @builtins.property
4204
4237
  def domain_name(self) -> typing.Optional[builtins.str]:
4205
4238
  '''DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` .
@@ -4838,6 +4871,7 @@ def _typecheckingstub__7253810e416357d129df95b3c7aa9aa0f08e68de7d465658e598912cf
4838
4871
  id: builtins.str,
4839
4872
  *,
4840
4873
  rule_type: builtins.str,
4874
+ delegation_record: typing.Optional[builtins.str] = None,
4841
4875
  domain_name: typing.Optional[builtins.str] = None,
4842
4876
  name: typing.Optional[builtins.str] = None,
4843
4877
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -4865,6 +4899,12 @@ def _typecheckingstub__13530a5c4f7ce175ae03b85dc7d4550ae7a3cb68cb2be12c89a167e8d
4865
4899
  """Type checking stubs"""
4866
4900
  pass
4867
4901
 
4902
+ def _typecheckingstub__b1126d07ce449d0d6220e3fbf183f2d786e81574a4f131914dfe0914a55bb851(
4903
+ value: typing.Optional[builtins.str],
4904
+ ) -> None:
4905
+ """Type checking stubs"""
4906
+ pass
4907
+
4868
4908
  def _typecheckingstub__3e83136a81b10aed2481c602cdca3f63e1c2bcaed82fe69b1ab2413af7c0b7c0(
4869
4909
  value: typing.Optional[builtins.str],
4870
4910
  ) -> None:
@@ -4959,6 +4999,7 @@ def _typecheckingstub__3b7cd1048ae30851b3480dc04a365c7bd487212f9328f80bc61e1bae1
4959
4999
  def _typecheckingstub__fdcaea1870aaf2dc13fe56b2d15a89d6adba2ad5884071fc618c9e4bb2c3ddec(
4960
5000
  *,
4961
5001
  rule_type: builtins.str,
5002
+ delegation_record: typing.Optional[builtins.str] = None,
4962
5003
  domain_name: typing.Optional[builtins.str] = None,
4963
5004
  name: typing.Optional[builtins.str] = None,
4964
5005
  resolver_endpoint_id: typing.Optional[builtins.str] = None,
@@ -4381,7 +4381,7 @@ class CfnBucket(
4381
4381
  :param inventory_configurations: Specifies the inventory configuration for an Amazon S3 bucket. For more information, see `GET Bucket inventory <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html>`_ in the *Amazon S3 API Reference* .
4382
4382
  :param lifecycle_configuration: Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For more information, see `Object Lifecycle Management <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html>`_ in the *Amazon S3 User Guide* .
4383
4383
  :param logging_configuration: Settings that define where logs are stored.
4384
- :param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket. For more information, see `Accelerating data discovery with S3 Metadata <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html>`_ and `Setting up permissions for configuring metadata tables <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html>`_ .
4384
+ :param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket.
4385
4385
  :param metrics_configurations: Specifies a metrics configuration for the CloudWatch request metrics (specified by the metrics configuration ID) from an Amazon S3 bucket. If you're updating an existing metrics configuration, note that this is a full replacement of the existing metrics configuration. If you don't include the elements you want to keep, they are erased. For more information, see `PutBucketMetricsConfiguration <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html>`_ .
4386
4386
  :param notification_configuration: Configuration that defines how Amazon S3 handles bucket notifications.
4387
4387
  :param object_lock_configuration: .. epigraph:: This operation is not supported for directory buckets. Places an Object Lock configuration on the specified bucket. The rule specified in the Object Lock configuration will be applied by default to every new object placed in the specified bucket. For more information, see `Locking Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html>`_ . .. epigraph:: - The ``DefaultRetention`` settings require both a mode and a period. - The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time. - You can enable Object Lock for new or existing buckets. For more information, see `Configuring Object Lock <https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-configure.html>`_ .
@@ -11188,7 +11188,7 @@ class CfnBucketProps:
11188
11188
  :param inventory_configurations: Specifies the inventory configuration for an Amazon S3 bucket. For more information, see `GET Bucket inventory <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html>`_ in the *Amazon S3 API Reference* .
11189
11189
  :param lifecycle_configuration: Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For more information, see `Object Lifecycle Management <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html>`_ in the *Amazon S3 User Guide* .
11190
11190
  :param logging_configuration: Settings that define where logs are stored.
11191
- :param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket. For more information, see `Accelerating data discovery with S3 Metadata <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html>`_ and `Setting up permissions for configuring metadata tables <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html>`_ .
11191
+ :param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket.
11192
11192
  :param metrics_configurations: Specifies a metrics configuration for the CloudWatch request metrics (specified by the metrics configuration ID) from an Amazon S3 bucket. If you're updating an existing metrics configuration, note that this is a full replacement of the existing metrics configuration. If you don't include the elements you want to keep, they are erased. For more information, see `PutBucketMetricsConfiguration <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html>`_ .
11193
11193
  :param notification_configuration: Configuration that defines how Amazon S3 handles bucket notifications.
11194
11194
  :param object_lock_configuration: .. epigraph:: This operation is not supported for directory buckets. Places an Object Lock configuration on the specified bucket. The rule specified in the Object Lock configuration will be applied by default to every new object placed in the specified bucket. For more information, see `Locking Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html>`_ . .. epigraph:: - The ``DefaultRetention`` settings require both a mode and a period. - The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time. - You can enable Object Lock for new or existing buckets. For more information, see `Configuring Object Lock <https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-configure.html>`_ .
@@ -11419,8 +11419,6 @@ class CfnBucketProps:
11419
11419
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBucket.MetadataTableConfigurationProperty]]:
11420
11420
  '''The metadata table configuration of an Amazon S3 general purpose bucket.
11421
11421
 
11422
- For more information, see `Accelerating data discovery with S3 Metadata <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html>`_ and `Setting up permissions for configuring metadata tables <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html>`_ .
11423
-
11424
11422
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-metadatatableconfiguration
11425
11423
  '''
11426
11424
  result = self._values.get("metadata_table_configuration")
@@ -1882,7 +1882,7 @@ class CfnCluster(
1882
1882
  :param current_count: The number of instances that are currently in the instance group of a SageMaker HyperPod cluster.
1883
1883
  :param instance_storage_configs: The configurations of additional storage specified to the instance group where the instance (node) is launched.
1884
1884
  :param on_start_deep_health_checks: A flag indicating whether deep health checks should be performed when the HyperPod cluster instance group is created or updated. Deep health checks are comprehensive, invasive tests that validate the health of the underlying hardware and infrastructure components.
1885
- :param override_vpc_config: Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC.
1885
+ :param override_vpc_config: The customized Amazon VPC configuration at the instance group level that overrides the default Amazon VPC configuration of the SageMaker HyperPod cluster.
1886
1886
  :param threads_per_core: The number of threads per CPU core you specified under ``CreateCluster`` .
1887
1887
 
1888
1888
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html
@@ -2038,9 +2038,7 @@ class CfnCluster(
2038
2038
  def override_vpc_config(
2039
2039
  self,
2040
2040
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConfigProperty"]]:
2041
- '''Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.
2042
-
2043
- You can control access to and from your resources by configuring a VPC.
2041
+ '''The customized Amazon VPC configuration at the instance group level that overrides the default Amazon VPC configuration of the SageMaker HyperPod cluster.
2044
2042
 
2045
2043
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-overridevpcconfig
2046
2044
  '''
@@ -917,7 +917,7 @@ class CfnListener(
917
917
  def __init__(self, *, status_code: jsii.Number) -> None:
918
918
  '''Describes an action that returns a custom HTTP response.
919
919
 
920
- :param status_code: The HTTP response code.
920
+ :param status_code: The HTTP response code. Only ``404`` and ``500`` status codes are supported.
921
921
 
922
922
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-fixedresponse.html
923
923
  :exampleMetadata: fixture=_generated
@@ -943,6 +943,8 @@ class CfnListener(
943
943
  def status_code(self) -> jsii.Number:
944
944
  '''The HTTP response code.
945
945
 
946
+ Only ``404`` and ``500`` status codes are supported.
947
+
946
948
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-fixedresponse.html#cfn-vpclattice-listener-fixedresponse-statuscode
947
949
  '''
948
950
  result = self._values.get("status_code")
@@ -2871,7 +2873,7 @@ class CfnRule(
2871
2873
  def __init__(self, *, status_code: jsii.Number) -> None:
2872
2874
  '''Describes an action that returns a custom HTTP response.
2873
2875
 
2874
- :param status_code: The HTTP response code.
2876
+ :param status_code: The HTTP response code. Only ``404`` and ``500`` status codes are supported.
2875
2877
 
2876
2878
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-fixedresponse.html
2877
2879
  :exampleMetadata: fixture=_generated
@@ -2897,6 +2899,8 @@ class CfnRule(
2897
2899
  def status_code(self) -> jsii.Number:
2898
2900
  '''The HTTP response code.
2899
2901
 
2902
+ Only ``404`` and ``500`` status codes are supported.
2903
+
2900
2904
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-fixedresponse.html#cfn-vpclattice-rule-fixedresponse-statuscode
2901
2905
  '''
2902
2906
  result = self._values.get("status_code")
@@ -4127,7 +4127,7 @@ class CfnAIPrompt(
4127
4127
  :param scope: Scope in which this resource is defined.
4128
4128
  :param id: Construct identifier for this resource (unique in its scope).
4129
4129
  :param api_format: The API format used for this AI Prompt.
4130
- :param model_id: The identifier of the model used for this AI Prompt. Model Ids supported are: ``anthropic.claude-3-haiku-20240307-v1:0`` .
4130
+ :param model_id: The identifier of the model used for this AI Prompt. The following model Ids are supported:. - ``anthropic.claude-3-haiku--v1:0`` - ``apac.amazon.nova-lite-v1:0`` - ``apac.amazon.nova-micro-v1:0`` - ``apac.amazon.nova-pro-v1:0`` - ``apac.anthropic.claude-3-5-sonnet--v2:0`` - ``apac.anthropic.claude-3-haiku-20240307-v1:0`` - ``eu.amazon.nova-lite-v1:0`` - ``eu.amazon.nova-micro-v1:0`` - ``eu.amazon.nova-pro-v1:0`` - ``eu.anthropic.claude-3-7-sonnet-20250219-v1:0`` - ``eu.anthropic.claude-3-haiku-20240307-v1:0`` - ``us.amazon.nova-lite-v1:0`` - ``us.amazon.nova-micro-v1:0`` - ``us.amazon.nova-pro-v1:0`` - ``us.anthropic.claude-3-5-haiku-20241022-v1:0`` - ``us.anthropic.claude-3-7-sonnet-20250219-v1:0`` - ``us.anthropic.claude-3-haiku-20240307-v1:0``
4131
4131
  :param template_configuration: The configuration of the prompt template for this AI Prompt.
4132
4132
  :param template_type: The type of the prompt template for this AI Prompt.
4133
4133
  :param type: The type of this AI Prompt.
@@ -4246,7 +4246,10 @@ class CfnAIPrompt(
4246
4246
  @builtins.property
4247
4247
  @jsii.member(jsii_name="modelId")
4248
4248
  def model_id(self) -> builtins.str:
4249
- '''The identifier of the model used for this AI Prompt.'''
4249
+ '''The identifier of the model used for this AI Prompt.
4250
+
4251
+ The following model Ids are supported:.
4252
+ '''
4250
4253
  return typing.cast(builtins.str, jsii.get(self, "modelId"))
4251
4254
 
4252
4255
  @model_id.setter
@@ -4502,7 +4505,7 @@ class CfnAIPromptProps:
4502
4505
  '''Properties for defining a ``CfnAIPrompt``.
4503
4506
 
4504
4507
  :param api_format: The API format used for this AI Prompt.
4505
- :param model_id: The identifier of the model used for this AI Prompt. Model Ids supported are: ``anthropic.claude-3-haiku-20240307-v1:0`` .
4508
+ :param model_id: The identifier of the model used for this AI Prompt. The following model Ids are supported:. - ``anthropic.claude-3-haiku--v1:0`` - ``apac.amazon.nova-lite-v1:0`` - ``apac.amazon.nova-micro-v1:0`` - ``apac.amazon.nova-pro-v1:0`` - ``apac.anthropic.claude-3-5-sonnet--v2:0`` - ``apac.anthropic.claude-3-haiku-20240307-v1:0`` - ``eu.amazon.nova-lite-v1:0`` - ``eu.amazon.nova-micro-v1:0`` - ``eu.amazon.nova-pro-v1:0`` - ``eu.anthropic.claude-3-7-sonnet-20250219-v1:0`` - ``eu.anthropic.claude-3-haiku-20240307-v1:0`` - ``us.amazon.nova-lite-v1:0`` - ``us.amazon.nova-micro-v1:0`` - ``us.amazon.nova-pro-v1:0`` - ``us.anthropic.claude-3-5-haiku-20241022-v1:0`` - ``us.anthropic.claude-3-7-sonnet-20250219-v1:0`` - ``us.anthropic.claude-3-haiku-20240307-v1:0``
4506
4509
  :param template_configuration: The configuration of the prompt template for this AI Prompt.
4507
4510
  :param template_type: The type of the prompt template for this AI Prompt.
4508
4511
  :param type: The type of this AI Prompt.
@@ -4579,9 +4582,25 @@ class CfnAIPromptProps:
4579
4582
 
4580
4583
  @builtins.property
4581
4584
  def model_id(self) -> builtins.str:
4582
- '''The identifier of the model used for this AI Prompt.
4583
-
4584
- Model Ids supported are: ``anthropic.claude-3-haiku-20240307-v1:0`` .
4585
+ '''The identifier of the model used for this AI Prompt. The following model Ids are supported:.
4586
+
4587
+ - ``anthropic.claude-3-haiku--v1:0``
4588
+ - ``apac.amazon.nova-lite-v1:0``
4589
+ - ``apac.amazon.nova-micro-v1:0``
4590
+ - ``apac.amazon.nova-pro-v1:0``
4591
+ - ``apac.anthropic.claude-3-5-sonnet--v2:0``
4592
+ - ``apac.anthropic.claude-3-haiku-20240307-v1:0``
4593
+ - ``eu.amazon.nova-lite-v1:0``
4594
+ - ``eu.amazon.nova-micro-v1:0``
4595
+ - ``eu.amazon.nova-pro-v1:0``
4596
+ - ``eu.anthropic.claude-3-7-sonnet-20250219-v1:0``
4597
+ - ``eu.anthropic.claude-3-haiku-20240307-v1:0``
4598
+ - ``us.amazon.nova-lite-v1:0``
4599
+ - ``us.amazon.nova-micro-v1:0``
4600
+ - ``us.amazon.nova-pro-v1:0``
4601
+ - ``us.anthropic.claude-3-5-haiku-20241022-v1:0``
4602
+ - ``us.anthropic.claude-3-7-sonnet-20250219-v1:0``
4603
+ - ``us.anthropic.claude-3-haiku-20240307-v1:0``
4585
4604
 
4586
4605
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiprompt.html#cfn-wisdom-aiprompt-modelid
4587
4606
  '''
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.192.0
3
+ Version: 2.194.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