aws-cdk-lib 2.187.0__py3-none-any.whl → 2.188.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 (53) hide show
  1. aws_cdk/__init__.py +22 -3
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.187.0.jsii.tgz → aws-cdk-lib@2.188.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amplify/__init__.py +21 -9
  5. aws_cdk/aws_apigateway/__init__.py +25 -19
  6. aws_cdk/aws_apigatewayv2/__init__.py +88 -0
  7. aws_cdk/aws_appconfig/__init__.py +30 -14
  8. aws_cdk/aws_arczonalshift/__init__.py +4 -4
  9. aws_cdk/aws_bedrock/__init__.py +605 -10
  10. aws_cdk/aws_budgets/__init__.py +8 -8
  11. aws_cdk/aws_cassandra/__init__.py +3 -1
  12. aws_cdk/aws_ce/__init__.py +2 -2
  13. aws_cdk/aws_cloudformation/__init__.py +3 -3
  14. aws_cdk/aws_codebuild/__init__.py +23 -1
  15. aws_cdk/aws_codepipeline/__init__.py +47 -32
  16. aws_cdk/aws_codepipeline_actions/__init__.py +2786 -1042
  17. aws_cdk/aws_codestarnotifications/__init__.py +16 -16
  18. aws_cdk/aws_cognito/__init__.py +8 -2
  19. aws_cdk/aws_ec2/__init__.py +2091 -227
  20. aws_cdk/aws_eks/__init__.py +112 -10
  21. aws_cdk/aws_events_targets/__init__.py +136 -0
  22. aws_cdk/aws_gamelift/__init__.py +5 -5
  23. aws_cdk/aws_iam/__init__.py +6 -4
  24. aws_cdk/aws_identitystore/__init__.py +15 -13
  25. aws_cdk/aws_kinesisfirehose/__init__.py +38 -0
  26. aws_cdk/aws_lambda_event_sources/__init__.py +22 -22
  27. aws_cdk/aws_lex/__init__.py +21 -17
  28. aws_cdk/aws_logs/__init__.py +18 -0
  29. aws_cdk/aws_logs_destinations/__init__.py +146 -0
  30. aws_cdk/aws_notifications/__init__.py +4 -4
  31. aws_cdk/aws_omics/__init__.py +9 -1
  32. aws_cdk/aws_opensearchserverless/__init__.py +31 -23
  33. aws_cdk/aws_organizations/__init__.py +1 -1
  34. aws_cdk/aws_pcaconnectorad/__init__.py +3 -2
  35. aws_cdk/aws_quicksight/__init__.py +35 -22
  36. aws_cdk/aws_rds/__init__.py +84 -0
  37. aws_cdk/aws_route53/__init__.py +3 -3
  38. aws_cdk/aws_route53recoverycontrol/__init__.py +4 -6
  39. aws_cdk/aws_rum/__init__.py +13 -10
  40. aws_cdk/aws_s3/__init__.py +3 -6
  41. aws_cdk/aws_sagemaker/__init__.py +41 -0
  42. aws_cdk/aws_ssmincidents/__init__.py +10 -10
  43. aws_cdk/aws_systemsmanagersap/__init__.py +17 -7
  44. aws_cdk/aws_transfer/__init__.py +19 -10
  45. aws_cdk/aws_wafv2/__init__.py +80 -35
  46. aws_cdk/cx_api/__init__.py +23 -2
  47. aws_cdk/pipelines/__init__.py +32 -0
  48. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/METADATA +1 -1
  49. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/RECORD +53 -53
  50. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/LICENSE +0 -0
  51. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/NOTICE +0 -0
  52. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/WHEEL +0 -0
  53. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/top_level.txt +0 -0
@@ -153,6 +153,20 @@ rds.DatabaseCluster(self, "DatabaseCluster",
153
153
  )
154
154
  ```
155
155
 
156
+ To configure [the life cycle type of the cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html), use the `engineLifecycleSupport` property:
157
+
158
+ ```python
159
+ # vpc: ec2.IVpc
160
+
161
+
162
+ rds.DatabaseCluster(self, "DatabaseCluster",
163
+ engine=rds.DatabaseClusterEngine.aurora_mysql(version=rds.AuroraMysqlEngineVersion.VER_3_07_0),
164
+ writer=rds.ClusterInstance.serverless_v2("writerInstance"),
165
+ vpc=vpc,
166
+ engine_lifecycle_support=rds.EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT
167
+ )
168
+ ```
169
+
156
170
  ### Updating the database instances in a cluster
157
171
 
158
172
  Database cluster instances may be updated in bulk or on a rolling basis.
@@ -21128,6 +21142,7 @@ class DatabaseClusterEngine(
21128
21142
  "enable_data_api": "enableDataApi",
21129
21143
  "enable_local_write_forwarding": "enableLocalWriteForwarding",
21130
21144
  "enable_performance_insights": "enablePerformanceInsights",
21145
+ "engine_lifecycle_support": "engineLifecycleSupport",
21131
21146
  "iam_authentication": "iamAuthentication",
21132
21147
  "instance_identifier_base": "instanceIdentifierBase",
21133
21148
  "instance_props": "instanceProps",
@@ -21187,6 +21202,7 @@ class DatabaseClusterFromSnapshotProps:
21187
21202
  enable_data_api: typing.Optional[builtins.bool] = None,
21188
21203
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
21189
21204
  enable_performance_insights: typing.Optional[builtins.bool] = None,
21205
+ engine_lifecycle_support: typing.Optional["EngineLifecycleSupport"] = None,
21190
21206
  iam_authentication: typing.Optional[builtins.bool] = None,
21191
21207
  instance_identifier_base: typing.Optional[builtins.str] = None,
21192
21208
  instance_props: typing.Optional[typing.Union["InstanceProps", typing.Dict[builtins.str, typing.Any]]] = None,
@@ -21243,6 +21259,7 @@ class DatabaseClusterFromSnapshotProps:
21243
21259
  :param enable_data_api: Whether to enable the Data API for the cluster. Default: - false
21244
21260
  :param enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. This setting can only be enabled for Aurora MySQL 3.04 or higher, and for Aurora PostgreSQL 16.4 or higher (for version 16), 15.8 or higher (for version 15), and 14.13 or higher (for version 14). Default: false
21245
21261
  :param enable_performance_insights: Whether to enable Performance Insights for the DB cluster. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set, or ``databaseInsightsMode`` is set to ``DatabaseInsightsMode.ADVANCED``.
21262
+ :param engine_lifecycle_support: The life cycle type for this DB cluster. Default: undefined - AWS RDS default setting is ``EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT``
21246
21263
  :param iam_authentication: Whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. Default: false
21247
21264
  :param instance_identifier_base: Base identifier for instances. Every replica is named by appending the replica number to this string, 1-based. Default: - clusterIdentifier is used with the word "Instance" appended. If clusterIdentifier is not provided, the identifier is automatically generated.
21248
21265
  :param instance_props: (deprecated) Settings for the individual instances that are launched.
@@ -21318,6 +21335,7 @@ class DatabaseClusterFromSnapshotProps:
21318
21335
  check_type(argname="argument enable_data_api", value=enable_data_api, expected_type=type_hints["enable_data_api"])
21319
21336
  check_type(argname="argument enable_local_write_forwarding", value=enable_local_write_forwarding, expected_type=type_hints["enable_local_write_forwarding"])
21320
21337
  check_type(argname="argument enable_performance_insights", value=enable_performance_insights, expected_type=type_hints["enable_performance_insights"])
21338
+ check_type(argname="argument engine_lifecycle_support", value=engine_lifecycle_support, expected_type=type_hints["engine_lifecycle_support"])
21321
21339
  check_type(argname="argument iam_authentication", value=iam_authentication, expected_type=type_hints["iam_authentication"])
21322
21340
  check_type(argname="argument instance_identifier_base", value=instance_identifier_base, expected_type=type_hints["instance_identifier_base"])
21323
21341
  check_type(argname="argument instance_props", value=instance_props, expected_type=type_hints["instance_props"])
@@ -21393,6 +21411,8 @@ class DatabaseClusterFromSnapshotProps:
21393
21411
  self._values["enable_local_write_forwarding"] = enable_local_write_forwarding
21394
21412
  if enable_performance_insights is not None:
21395
21413
  self._values["enable_performance_insights"] = enable_performance_insights
21414
+ if engine_lifecycle_support is not None:
21415
+ self._values["engine_lifecycle_support"] = engine_lifecycle_support
21396
21416
  if iam_authentication is not None:
21397
21417
  self._values["iam_authentication"] = iam_authentication
21398
21418
  if instance_identifier_base is not None:
@@ -21711,6 +21731,17 @@ class DatabaseClusterFromSnapshotProps:
21711
21731
  result = self._values.get("enable_performance_insights")
21712
21732
  return typing.cast(typing.Optional[builtins.bool], result)
21713
21733
 
21734
+ @builtins.property
21735
+ def engine_lifecycle_support(self) -> typing.Optional["EngineLifecycleSupport"]:
21736
+ '''The life cycle type for this DB cluster.
21737
+
21738
+ :default: undefined - AWS RDS default setting is ``EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT``
21739
+
21740
+ :see: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
21741
+ '''
21742
+ result = self._values.get("engine_lifecycle_support")
21743
+ return typing.cast(typing.Optional["EngineLifecycleSupport"], result)
21744
+
21714
21745
  @builtins.property
21715
21746
  def iam_authentication(self) -> typing.Optional[builtins.bool]:
21716
21747
  '''Whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts.
@@ -22108,6 +22139,7 @@ class DatabaseClusterFromSnapshotProps:
22108
22139
  "enable_data_api": "enableDataApi",
22109
22140
  "enable_local_write_forwarding": "enableLocalWriteForwarding",
22110
22141
  "enable_performance_insights": "enablePerformanceInsights",
22142
+ "engine_lifecycle_support": "engineLifecycleSupport",
22111
22143
  "iam_authentication": "iamAuthentication",
22112
22144
  "instance_identifier_base": "instanceIdentifierBase",
22113
22145
  "instance_props": "instanceProps",
@@ -22166,6 +22198,7 @@ class DatabaseClusterProps:
22166
22198
  enable_data_api: typing.Optional[builtins.bool] = None,
22167
22199
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
22168
22200
  enable_performance_insights: typing.Optional[builtins.bool] = None,
22201
+ engine_lifecycle_support: typing.Optional["EngineLifecycleSupport"] = None,
22169
22202
  iam_authentication: typing.Optional[builtins.bool] = None,
22170
22203
  instance_identifier_base: typing.Optional[builtins.str] = None,
22171
22204
  instance_props: typing.Optional[typing.Union["InstanceProps", typing.Dict[builtins.str, typing.Any]]] = None,
@@ -22221,6 +22254,7 @@ class DatabaseClusterProps:
22221
22254
  :param enable_data_api: Whether to enable the Data API for the cluster. Default: - false
22222
22255
  :param enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. This setting can only be enabled for Aurora MySQL 3.04 or higher, and for Aurora PostgreSQL 16.4 or higher (for version 16), 15.8 or higher (for version 15), and 14.13 or higher (for version 14). Default: false
22223
22256
  :param enable_performance_insights: Whether to enable Performance Insights for the DB cluster. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set, or ``databaseInsightsMode`` is set to ``DatabaseInsightsMode.ADVANCED``.
22257
+ :param engine_lifecycle_support: The life cycle type for this DB cluster. Default: undefined - AWS RDS default setting is ``EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT``
22224
22258
  :param iam_authentication: Whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. Default: false
22225
22259
  :param instance_identifier_base: Base identifier for instances. Every replica is named by appending the replica number to this string, 1-based. Default: - clusterIdentifier is used with the word "Instance" appended. If clusterIdentifier is not provided, the identifier is automatically generated.
22226
22260
  :param instance_props: (deprecated) Settings for the individual instances that are launched.
@@ -22304,6 +22338,7 @@ class DatabaseClusterProps:
22304
22338
  check_type(argname="argument enable_data_api", value=enable_data_api, expected_type=type_hints["enable_data_api"])
22305
22339
  check_type(argname="argument enable_local_write_forwarding", value=enable_local_write_forwarding, expected_type=type_hints["enable_local_write_forwarding"])
22306
22340
  check_type(argname="argument enable_performance_insights", value=enable_performance_insights, expected_type=type_hints["enable_performance_insights"])
22341
+ check_type(argname="argument engine_lifecycle_support", value=engine_lifecycle_support, expected_type=type_hints["engine_lifecycle_support"])
22307
22342
  check_type(argname="argument iam_authentication", value=iam_authentication, expected_type=type_hints["iam_authentication"])
22308
22343
  check_type(argname="argument instance_identifier_base", value=instance_identifier_base, expected_type=type_hints["instance_identifier_base"])
22309
22344
  check_type(argname="argument instance_props", value=instance_props, expected_type=type_hints["instance_props"])
@@ -22378,6 +22413,8 @@ class DatabaseClusterProps:
22378
22413
  self._values["enable_local_write_forwarding"] = enable_local_write_forwarding
22379
22414
  if enable_performance_insights is not None:
22380
22415
  self._values["enable_performance_insights"] = enable_performance_insights
22416
+ if engine_lifecycle_support is not None:
22417
+ self._values["engine_lifecycle_support"] = engine_lifecycle_support
22381
22418
  if iam_authentication is not None:
22382
22419
  self._values["iam_authentication"] = iam_authentication
22383
22420
  if instance_identifier_base is not None:
@@ -22673,6 +22710,17 @@ class DatabaseClusterProps:
22673
22710
  result = self._values.get("enable_performance_insights")
22674
22711
  return typing.cast(typing.Optional[builtins.bool], result)
22675
22712
 
22713
+ @builtins.property
22714
+ def engine_lifecycle_support(self) -> typing.Optional["EngineLifecycleSupport"]:
22715
+ '''The life cycle type for this DB cluster.
22716
+
22717
+ :default: undefined - AWS RDS default setting is ``EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT``
22718
+
22719
+ :see: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
22720
+ '''
22721
+ result = self._values.get("engine_lifecycle_support")
22722
+ return typing.cast(typing.Optional["EngineLifecycleSupport"], result)
22723
+
22676
22724
  @builtins.property
22677
22725
  def iam_authentication(self) -> typing.Optional[builtins.bool]:
22678
22726
  '''Whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts.
@@ -27328,6 +27376,31 @@ class Endpoint(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_rds.Endpoint"
27328
27376
  return typing.cast(builtins.str, jsii.get(self, "socketAddress"))
27329
27377
 
27330
27378
 
27379
+ @jsii.enum(jsii_type="aws-cdk-lib.aws_rds.EngineLifecycleSupport")
27380
+ class EngineLifecycleSupport(enum.Enum):
27381
+ '''Engine lifecycle support for Amazon RDS and Amazon Aurora.
27382
+
27383
+ :exampleMetadata: infused
27384
+
27385
+ Example::
27386
+
27387
+ # vpc: ec2.IVpc
27388
+
27389
+
27390
+ rds.DatabaseCluster(self, "DatabaseCluster",
27391
+ engine=rds.DatabaseClusterEngine.aurora_mysql(version=rds.AuroraMysqlEngineVersion.VER_3_07_0),
27392
+ writer=rds.ClusterInstance.serverless_v2("writerInstance"),
27393
+ vpc=vpc,
27394
+ engine_lifecycle_support=rds.EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT
27395
+ )
27396
+ '''
27397
+
27398
+ OPEN_SOURCE_RDS_EXTENDED_SUPPORT = "OPEN_SOURCE_RDS_EXTENDED_SUPPORT"
27399
+ '''Using Amazon RDS extended support.'''
27400
+ OPEN_SOURCE_RDS_EXTENDED_SUPPORT_DISABLED = "OPEN_SOURCE_RDS_EXTENDED_SUPPORT_DISABLED"
27401
+ '''Not using Amazon RDS extended support.'''
27402
+
27403
+
27331
27404
  @jsii.data_type(
27332
27405
  jsii_type="aws-cdk-lib.aws_rds.EngineVersion",
27333
27406
  jsii_struct_bases=[],
@@ -42217,6 +42290,7 @@ class DatabaseClusterFromSnapshot(
42217
42290
  enable_data_api: typing.Optional[builtins.bool] = None,
42218
42291
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
42219
42292
  enable_performance_insights: typing.Optional[builtins.bool] = None,
42293
+ engine_lifecycle_support: typing.Optional[EngineLifecycleSupport] = None,
42220
42294
  iam_authentication: typing.Optional[builtins.bool] = None,
42221
42295
  instance_identifier_base: typing.Optional[builtins.str] = None,
42222
42296
  instance_props: typing.Optional[typing.Union[InstanceProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -42274,6 +42348,7 @@ class DatabaseClusterFromSnapshot(
42274
42348
  :param enable_data_api: Whether to enable the Data API for the cluster. Default: - false
42275
42349
  :param enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. This setting can only be enabled for Aurora MySQL 3.04 or higher, and for Aurora PostgreSQL 16.4 or higher (for version 16), 15.8 or higher (for version 15), and 14.13 or higher (for version 14). Default: false
42276
42350
  :param enable_performance_insights: Whether to enable Performance Insights for the DB cluster. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set, or ``databaseInsightsMode`` is set to ``DatabaseInsightsMode.ADVANCED``.
42351
+ :param engine_lifecycle_support: The life cycle type for this DB cluster. Default: undefined - AWS RDS default setting is ``EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT``
42277
42352
  :param iam_authentication: Whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. Default: false
42278
42353
  :param instance_identifier_base: Base identifier for instances. Every replica is named by appending the replica number to this string, 1-based. Default: - clusterIdentifier is used with the word "Instance" appended. If clusterIdentifier is not provided, the identifier is automatically generated.
42279
42354
  :param instance_props: (deprecated) Settings for the individual instances that are launched.
@@ -42333,6 +42408,7 @@ class DatabaseClusterFromSnapshot(
42333
42408
  enable_data_api=enable_data_api,
42334
42409
  enable_local_write_forwarding=enable_local_write_forwarding,
42335
42410
  enable_performance_insights=enable_performance_insights,
42411
+ engine_lifecycle_support=engine_lifecycle_support,
42336
42412
  iam_authentication=iam_authentication,
42337
42413
  instance_identifier_base=instance_identifier_base,
42338
42414
  instance_props=instance_props,
@@ -46374,6 +46450,7 @@ class DatabaseCluster(
46374
46450
  enable_data_api: typing.Optional[builtins.bool] = None,
46375
46451
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
46376
46452
  enable_performance_insights: typing.Optional[builtins.bool] = None,
46453
+ engine_lifecycle_support: typing.Optional[EngineLifecycleSupport] = None,
46377
46454
  iam_authentication: typing.Optional[builtins.bool] = None,
46378
46455
  instance_identifier_base: typing.Optional[builtins.str] = None,
46379
46456
  instance_props: typing.Optional[typing.Union[InstanceProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -46430,6 +46507,7 @@ class DatabaseCluster(
46430
46507
  :param enable_data_api: Whether to enable the Data API for the cluster. Default: - false
46431
46508
  :param enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. This setting can only be enabled for Aurora MySQL 3.04 or higher, and for Aurora PostgreSQL 16.4 or higher (for version 16), 15.8 or higher (for version 15), and 14.13 or higher (for version 14). Default: false
46432
46509
  :param enable_performance_insights: Whether to enable Performance Insights for the DB cluster. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set, or ``databaseInsightsMode`` is set to ``DatabaseInsightsMode.ADVANCED``.
46510
+ :param engine_lifecycle_support: The life cycle type for this DB cluster. Default: undefined - AWS RDS default setting is ``EngineLifecycleSupport.OPEN_SOURCE_RDS_EXTENDED_SUPPORT``
46433
46511
  :param iam_authentication: Whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. Default: false
46434
46512
  :param instance_identifier_base: Base identifier for instances. Every replica is named by appending the replica number to this string, 1-based. Default: - clusterIdentifier is used with the word "Instance" appended. If clusterIdentifier is not provided, the identifier is automatically generated.
46435
46513
  :param instance_props: (deprecated) Settings for the individual instances that are launched.
@@ -46488,6 +46566,7 @@ class DatabaseCluster(
46488
46566
  enable_data_api=enable_data_api,
46489
46567
  enable_local_write_forwarding=enable_local_write_forwarding,
46490
46568
  enable_performance_insights=enable_performance_insights,
46569
+ engine_lifecycle_support=engine_lifecycle_support,
46491
46570
  iam_authentication=iam_authentication,
46492
46571
  instance_identifier_base=instance_identifier_base,
46493
46572
  instance_props=instance_props,
@@ -47415,6 +47494,7 @@ __all__ = [
47415
47494
  "DatabaseSecret",
47416
47495
  "DatabaseSecretProps",
47417
47496
  "Endpoint",
47497
+ "EngineLifecycleSupport",
47418
47498
  "EngineVersion",
47419
47499
  "IAuroraClusterInstance",
47420
47500
  "IClusterEngine",
@@ -50189,6 +50269,7 @@ def _typecheckingstub__1e44b5aef872ca17869a17181382f06cd0166bdbe07e2c33701d3bf1e
50189
50269
  enable_data_api: typing.Optional[builtins.bool] = None,
50190
50270
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
50191
50271
  enable_performance_insights: typing.Optional[builtins.bool] = None,
50272
+ engine_lifecycle_support: typing.Optional[EngineLifecycleSupport] = None,
50192
50273
  iam_authentication: typing.Optional[builtins.bool] = None,
50193
50274
  instance_identifier_base: typing.Optional[builtins.str] = None,
50194
50275
  instance_props: typing.Optional[typing.Union[InstanceProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -50247,6 +50328,7 @@ def _typecheckingstub__a32e21c90ab65d3cfdb3b7ef2a0d741ba1528ec8824cd1817d1e485b4
50247
50328
  enable_data_api: typing.Optional[builtins.bool] = None,
50248
50329
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
50249
50330
  enable_performance_insights: typing.Optional[builtins.bool] = None,
50331
+ engine_lifecycle_support: typing.Optional[EngineLifecycleSupport] = None,
50250
50332
  iam_authentication: typing.Optional[builtins.bool] = None,
50251
50333
  instance_identifier_base: typing.Optional[builtins.str] = None,
50252
50334
  instance_props: typing.Optional[typing.Union[InstanceProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -51475,6 +51557,7 @@ def _typecheckingstub__d1a2e259091e12a41b0f5818df495769518e049ebcc89ed340ffc7ba4
51475
51557
  enable_data_api: typing.Optional[builtins.bool] = None,
51476
51558
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
51477
51559
  enable_performance_insights: typing.Optional[builtins.bool] = None,
51560
+ engine_lifecycle_support: typing.Optional[EngineLifecycleSupport] = None,
51478
51561
  iam_authentication: typing.Optional[builtins.bool] = None,
51479
51562
  instance_identifier_base: typing.Optional[builtins.str] = None,
51480
51563
  instance_props: typing.Optional[typing.Union[InstanceProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -51972,6 +52055,7 @@ def _typecheckingstub__c6184cbbefaa372690b9776dafecbf5857cf9bfbab91d1666aad22c56
51972
52055
  enable_data_api: typing.Optional[builtins.bool] = None,
51973
52056
  enable_local_write_forwarding: typing.Optional[builtins.bool] = None,
51974
52057
  enable_performance_insights: typing.Optional[builtins.bool] = None,
52058
+ engine_lifecycle_support: typing.Optional[EngineLifecycleSupport] = None,
51975
52059
  iam_authentication: typing.Optional[builtins.bool] = None,
51976
52060
  instance_identifier_base: typing.Optional[builtins.str] = None,
51977
52061
  instance_props: typing.Optional[typing.Union[InstanceProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -2254,7 +2254,7 @@ class CfnHostedZone(
2254
2254
  :param scope: Scope in which this resource is defined.
2255
2255
  :param id: Construct identifier for this resource (unique in its scope).
2256
2256
  :param hosted_zone_config: A complex type that contains an optional comment. If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
2257
- :param hosted_zone_tags: Adds, edits, or deletes tags for a health check or a hosted zone. For information about using tags for cost allocation, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the *AWS Billing and Cost Management User Guide* .
2257
+ :param hosted_zone_tags: Adds, edits, or deletes tags for a health check or a hosted zone. For information about using tags for cost allocation, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the *Billing and Cost Management User Guide* .
2258
2258
  :param name: The name of the domain. Specify a fully qualified domain name, for example, *www.example.com* . The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats *www.example.com* (without a trailing dot) and *www.example.com.* (with a trailing dot) as identical. If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of ``NameServers`` that are returned by the ``Fn::GetAtt`` intrinsic function.
2259
2259
  :param query_logging_config: Creates a configuration for DNS query logging. After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group. DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following: - Route 53 edge location that responded to the DNS query - Domain or subdomain that was requested - DNS record type, such as A or AAAA - DNS response code, such as ``NoError`` or ``ServFail`` - **Log Group and Resource Policy** - Before you create a query logging configuration, perform the following operations. .. epigraph:: If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically. - Create a CloudWatch Logs log group, and make note of the ARN, which you specify when you create a query logging configuration. Note the following: - You must create the log group in the us-east-1 region. - You must use the same AWS account to create the log group and the hosted zone that you want to configure query logging for. - When you create log groups for query logging, we recommend that you use a consistent prefix, for example: ``/aws/route53/ *hosted zone name*`` In the next step, you'll create a resource policy, which controls access to one or more log groups and the associated AWS resources, such as Route 53 hosted zones. There's a limit on the number of resource policies that you can create, so we recommend that you use a consistent prefix so you can use the same resource policy for all the log groups that you create for query logging. - Create a CloudWatch Logs resource policy, and give it the permissions that Route 53 needs to create log streams and to send query logs to log streams. You must create the CloudWatch Logs resource policy in the us-east-1 region. For the value of ``Resource`` , specify the ARN for the log group that you created in the previous step. To use the same resource policy for all the CloudWatch Logs log groups that you created for query logging configurations, replace the hosted zone name with ``*`` , for example: ``arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*`` To avoid the confused deputy problem, a security issue where an entity without a permission for an action can coerce a more-privileged entity to perform it, you can optionally limit the permissions that a service has to a resource in a resource-based policy by supplying the following values: - For ``aws:SourceArn`` , supply the hosted zone ARN used in creating the query logging configuration. For example, ``aws:SourceArn: arn:aws:route53:::hostedzone/hosted zone ID`` . - For ``aws:SourceAccount`` , supply the account ID for the account that creates the query logging configuration. For example, ``aws:SourceAccount:111111111111`` . For more information, see `The confused deputy problem <https://docs.aws.amazon.com/IAM/latest/UserGuide/confused-deputy.html>`_ in the *AWS IAM User Guide* . .. epigraph:: You can't use the CloudWatch console to create or edit a resource policy. You must use the CloudWatch API, one of the AWS SDKs, or the AWS CLI . - **Log Streams and Edge Locations** - When Route 53 finishes creating the configuration for DNS query logging, it does the following: - Creates a log stream for an edge location the first time that the edge location responds to DNS queries for the specified hosted zone. That log stream is used to log all queries that Route 53 responds to for that edge location. - Begins to send query logs to the applicable log stream. The name of each log stream is in the following format: ``*hosted zone ID* / *edge location code*`` The edge location code is a three-letter code and an arbitrarily assigned number, for example, DFW3. The three-letter code typically corresponds with the International Air Transport Association airport code for an airport near the edge location. (These abbreviations might change in the future.) For a list of edge locations, see "The Route 53 Global Network" on the `Route 53 Product Details <https://docs.aws.amazon.com/route53/details/>`_ page. - **Queries That Are Logged** - Query logs contain only the queries that DNS resolvers forward to Route 53. If a DNS resolver has already cached the response to a query (such as the IP address for a load balancer for example.com), the resolver will continue to return the cached response. It doesn't forward another query to Route 53 until the TTL for the corresponding resource record set expires. Depending on how many DNS queries are submitted for a resource record set, and depending on the TTL for that resource record set, query logs might contain information about only one query out of every several thousand queries that are submitted to DNS. For more information about how DNS works, see `Routing Internet Traffic to Your Website or Web Application <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html>`_ in the *Amazon Route 53 Developer Guide* . - **Log File Format** - For a list of the values in each query log and the format of each value, see `Logging DNS Queries <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html>`_ in the *Amazon Route 53 Developer Guide* . - **Pricing** - For information about charges for query logs, see `Amazon CloudWatch Pricing <https://docs.aws.amazon.com/cloudwatch/pricing/>`_ . - **How to Stop Logging** - If you want Route 53 to stop sending query logs to CloudWatch Logs, delete the query logging configuration. For more information, see `DeleteQueryLoggingConfig <https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html>`_ .
2260
2260
  :param vpcs: *Private hosted zones:* A complex type that contains information about the VPCs that are associated with the specified hosted zone. .. epigraph:: For public hosted zones, omit ``VPCs`` , ``VPCId`` , and ``VPCRegion`` .
@@ -2702,7 +2702,7 @@ class CfnHostedZoneProps:
2702
2702
  '''Properties for defining a ``CfnHostedZone``.
2703
2703
 
2704
2704
  :param hosted_zone_config: A complex type that contains an optional comment. If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
2705
- :param hosted_zone_tags: Adds, edits, or deletes tags for a health check or a hosted zone. For information about using tags for cost allocation, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the *AWS Billing and Cost Management User Guide* .
2705
+ :param hosted_zone_tags: Adds, edits, or deletes tags for a health check or a hosted zone. For information about using tags for cost allocation, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the *Billing and Cost Management User Guide* .
2706
2706
  :param name: The name of the domain. Specify a fully qualified domain name, for example, *www.example.com* . The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats *www.example.com* (without a trailing dot) and *www.example.com.* (with a trailing dot) as identical. If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of ``NameServers`` that are returned by the ``Fn::GetAtt`` intrinsic function.
2707
2707
  :param query_logging_config: Creates a configuration for DNS query logging. After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group. DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following: - Route 53 edge location that responded to the DNS query - Domain or subdomain that was requested - DNS record type, such as A or AAAA - DNS response code, such as ``NoError`` or ``ServFail`` - **Log Group and Resource Policy** - Before you create a query logging configuration, perform the following operations. .. epigraph:: If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically. - Create a CloudWatch Logs log group, and make note of the ARN, which you specify when you create a query logging configuration. Note the following: - You must create the log group in the us-east-1 region. - You must use the same AWS account to create the log group and the hosted zone that you want to configure query logging for. - When you create log groups for query logging, we recommend that you use a consistent prefix, for example: ``/aws/route53/ *hosted zone name*`` In the next step, you'll create a resource policy, which controls access to one or more log groups and the associated AWS resources, such as Route 53 hosted zones. There's a limit on the number of resource policies that you can create, so we recommend that you use a consistent prefix so you can use the same resource policy for all the log groups that you create for query logging. - Create a CloudWatch Logs resource policy, and give it the permissions that Route 53 needs to create log streams and to send query logs to log streams. You must create the CloudWatch Logs resource policy in the us-east-1 region. For the value of ``Resource`` , specify the ARN for the log group that you created in the previous step. To use the same resource policy for all the CloudWatch Logs log groups that you created for query logging configurations, replace the hosted zone name with ``*`` , for example: ``arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*`` To avoid the confused deputy problem, a security issue where an entity without a permission for an action can coerce a more-privileged entity to perform it, you can optionally limit the permissions that a service has to a resource in a resource-based policy by supplying the following values: - For ``aws:SourceArn`` , supply the hosted zone ARN used in creating the query logging configuration. For example, ``aws:SourceArn: arn:aws:route53:::hostedzone/hosted zone ID`` . - For ``aws:SourceAccount`` , supply the account ID for the account that creates the query logging configuration. For example, ``aws:SourceAccount:111111111111`` . For more information, see `The confused deputy problem <https://docs.aws.amazon.com/IAM/latest/UserGuide/confused-deputy.html>`_ in the *AWS IAM User Guide* . .. epigraph:: You can't use the CloudWatch console to create or edit a resource policy. You must use the CloudWatch API, one of the AWS SDKs, or the AWS CLI . - **Log Streams and Edge Locations** - When Route 53 finishes creating the configuration for DNS query logging, it does the following: - Creates a log stream for an edge location the first time that the edge location responds to DNS queries for the specified hosted zone. That log stream is used to log all queries that Route 53 responds to for that edge location. - Begins to send query logs to the applicable log stream. The name of each log stream is in the following format: ``*hosted zone ID* / *edge location code*`` The edge location code is a three-letter code and an arbitrarily assigned number, for example, DFW3. The three-letter code typically corresponds with the International Air Transport Association airport code for an airport near the edge location. (These abbreviations might change in the future.) For a list of edge locations, see "The Route 53 Global Network" on the `Route 53 Product Details <https://docs.aws.amazon.com/route53/details/>`_ page. - **Queries That Are Logged** - Query logs contain only the queries that DNS resolvers forward to Route 53. If a DNS resolver has already cached the response to a query (such as the IP address for a load balancer for example.com), the resolver will continue to return the cached response. It doesn't forward another query to Route 53 until the TTL for the corresponding resource record set expires. Depending on how many DNS queries are submitted for a resource record set, and depending on the TTL for that resource record set, query logs might contain information about only one query out of every several thousand queries that are submitted to DNS. For more information about how DNS works, see `Routing Internet Traffic to Your Website or Web Application <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html>`_ in the *Amazon Route 53 Developer Guide* . - **Log File Format** - For a list of the values in each query log and the format of each value, see `Logging DNS Queries <https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html>`_ in the *Amazon Route 53 Developer Guide* . - **Pricing** - For information about charges for query logs, see `Amazon CloudWatch Pricing <https://docs.aws.amazon.com/cloudwatch/pricing/>`_ . - **How to Stop Logging** - If you want Route 53 to stop sending query logs to CloudWatch Logs, delete the query logging configuration. For more information, see `DeleteQueryLoggingConfig <https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html>`_ .
2708
2708
  :param vpcs: *Private hosted zones:* A complex type that contains information about the VPCs that are associated with the specified hosted zone. .. epigraph:: For public hosted zones, omit ``VPCs`` , ``VPCId`` , and ``VPCRegion`` .
@@ -2772,7 +2772,7 @@ class CfnHostedZoneProps:
2772
2772
  ) -> typing.Optional[typing.List[CfnHostedZone.HostedZoneTagProperty]]:
2773
2773
  '''Adds, edits, or deletes tags for a health check or a hosted zone.
2774
2774
 
2775
- For information about using tags for cost allocation, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the *AWS Billing and Cost Management User Guide* .
2775
+ For information about using tags for cost allocation, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the *Billing and Cost Management User Guide* .
2776
2776
 
2777
2777
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzonetags
2778
2778
  '''
@@ -114,7 +114,7 @@ class CfnCluster(
114
114
  :param scope: Scope in which this resource is defined.
115
115
  :param id: Construct identifier for this resource (unique in its scope).
116
116
  :param name: Name of the cluster. You can use any non-white space character in the name except the following: & > < ' (single quote) " (double quote) ; (semicolon).
117
- :param network_type: Cluster supports IPv4 endpoints and Dual-stack IPv4 and IPv6 endpoints. NetworkType can be IPV4 or DUALSTACK.
117
+ :param network_type: The network-type can either be IPV4 or DUALSTACK.
118
118
  :param tags: The tags associated with the cluster.
119
119
  '''
120
120
  if __debug__:
@@ -213,7 +213,7 @@ class CfnCluster(
213
213
  @builtins.property
214
214
  @jsii.member(jsii_name="networkType")
215
215
  def network_type(self) -> typing.Optional[builtins.str]:
216
- '''Cluster supports IPv4 endpoints and Dual-stack IPv4 and IPv6 endpoints.'''
216
+ '''The network-type can either be IPV4 or DUALSTACK.'''
217
217
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "networkType"))
218
218
 
219
219
  @network_type.setter
@@ -327,7 +327,7 @@ class CfnClusterProps:
327
327
  '''Properties for defining a ``CfnCluster``.
328
328
 
329
329
  :param name: Name of the cluster. You can use any non-white space character in the name except the following: & > < ' (single quote) " (double quote) ; (semicolon).
330
- :param network_type: Cluster supports IPv4 endpoints and Dual-stack IPv4 and IPv6 endpoints. NetworkType can be IPV4 or DUALSTACK.
330
+ :param network_type: The network-type can either be IPV4 or DUALSTACK.
331
331
  :param tags: The tags associated with the cluster.
332
332
 
333
333
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html
@@ -377,9 +377,7 @@ class CfnClusterProps:
377
377
 
378
378
  @builtins.property
379
379
  def network_type(self) -> typing.Optional[builtins.str]:
380
- '''Cluster supports IPv4 endpoints and Dual-stack IPv4 and IPv6 endpoints.
381
-
382
- NetworkType can be IPV4 or DUALSTACK.
380
+ '''The network-type can either be IPV4 or DUALSTACK.
383
381
 
384
382
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoverycontrol-cluster.html#cfn-route53recoverycontrol-cluster-networktype
385
383
  '''
@@ -175,8 +175,8 @@ class CfnAppMonitor(
175
175
  :param custom_events: Specifies whether this app monitor allows the web client to define and send custom events. If you omit this parameter, custom events are ``DISABLED`` .
176
176
  :param cw_log_enabled: Data collected by CloudWatch RUM is kept by RUM for 30 days and then deleted. This parameter specifies whether CloudWatch RUM sends a copy of this telemetry data to Amazon CloudWatch Logs in your account. This enables you to keep the telemetry data for more than 30 days, but it does incur Amazon CloudWatch Logs charges. If you omit this parameter, the default is ``false`` .
177
177
  :param deobfuscation_configuration: A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
178
- :param domain: The top-level internet domain name for which your application has administrative authority. This parameter is required.
179
- :param domain_list: The top-level internet domain names for which your application has administrative authority. The CreateAppMonitor requires either the domain or the domain list.
178
+ :param domain: The top-level internet domain name for which your application has administrative authority. This parameter or the ``DomainList`` parameter is required.
179
+ :param domain_list: List the domain names for which your application has administrative authority. This parameter or the ``Domain`` parameter is required. You can have a minimum of 1 and a maximum of 5 ``Domain`` under ``DomainList`` . Each ``Domain`` must be a minimum length of 1 and a maximum of 253 characters.
180
180
  :param resource_policy: Use this structure to assign a resource-based policy to a CloudWatch RUM app monitor to control access to it. Each app monitor can have one resource-based policy. The maximum size of the policy is 4 KB. To learn more about using resource policies with RUM, see `Using resource-based policies with CloudWatch RUM <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-resource-policies.html>`_ .
181
181
  :param tags: Assigns one or more tags (key-value pairs) to the app monitor. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can associate as many as 50 tags with an app monitor. For more information, see `Tagging AWS resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ .
182
182
  '''
@@ -349,7 +349,10 @@ class CfnAppMonitor(
349
349
  @builtins.property
350
350
  @jsii.member(jsii_name="domainList")
351
351
  def domain_list(self) -> typing.Optional[typing.List[builtins.str]]:
352
- '''The top-level internet domain names for which your application has administrative authority.'''
352
+ '''List the domain names for which your application has administrative authority.
353
+
354
+ This parameter or the ``Domain`` parameter is required.
355
+ '''
353
356
  return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "domainList"))
354
357
 
355
358
  @domain_list.setter
@@ -762,7 +765,7 @@ class CfnAppMonitor(
762
765
  ) -> None:
763
766
  '''A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.
764
767
 
765
- :param status: Specifies whether JavaScript error stack traces should be unminified for this app monitor. The default is for JavaScript error stack trace unminification to be DISABLED
768
+ :param status: Specifies whether JavaScript error stack traces should be unminified for this app monitor. The default is for JavaScript error stack trace unminification to be ``DISABLED`` .
766
769
  :param s3_uri: The S3Uri of the bucket or folder that stores the source map files. It is required if status is ENABLED.
767
770
 
768
771
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html
@@ -795,7 +798,7 @@ class CfnAppMonitor(
795
798
  def status(self) -> builtins.str:
796
799
  '''Specifies whether JavaScript error stack traces should be unminified for this app monitor.
797
800
 
798
- The default is for JavaScript error stack trace unminification to be DISABLED
801
+ The default is for JavaScript error stack trace unminification to be ``DISABLED`` .
799
802
 
800
803
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html#cfn-rum-appmonitor-javascriptsourcemaps-status
801
804
  '''
@@ -1252,8 +1255,8 @@ class CfnAppMonitorProps:
1252
1255
  :param custom_events: Specifies whether this app monitor allows the web client to define and send custom events. If you omit this parameter, custom events are ``DISABLED`` .
1253
1256
  :param cw_log_enabled: Data collected by CloudWatch RUM is kept by RUM for 30 days and then deleted. This parameter specifies whether CloudWatch RUM sends a copy of this telemetry data to Amazon CloudWatch Logs in your account. This enables you to keep the telemetry data for more than 30 days, but it does incur Amazon CloudWatch Logs charges. If you omit this parameter, the default is ``false`` .
1254
1257
  :param deobfuscation_configuration: A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
1255
- :param domain: The top-level internet domain name for which your application has administrative authority. This parameter is required.
1256
- :param domain_list: The top-level internet domain names for which your application has administrative authority. The CreateAppMonitor requires either the domain or the domain list.
1258
+ :param domain: The top-level internet domain name for which your application has administrative authority. This parameter or the ``DomainList`` parameter is required.
1259
+ :param domain_list: List the domain names for which your application has administrative authority. This parameter or the ``Domain`` parameter is required. You can have a minimum of 1 and a maximum of 5 ``Domain`` under ``DomainList`` . Each ``Domain`` must be a minimum length of 1 and a maximum of 253 characters.
1257
1260
  :param resource_policy: Use this structure to assign a resource-based policy to a CloudWatch RUM app monitor to control access to it. Each app monitor can have one resource-based policy. The maximum size of the policy is 4 KB. To learn more about using resource policies with RUM, see `Using resource-based policies with CloudWatch RUM <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-resource-policies.html>`_ .
1258
1261
  :param tags: Assigns one or more tags (key-value pairs) to the app monitor. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can associate as many as 50 tags with an app monitor. For more information, see `Tagging AWS resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ .
1259
1262
 
@@ -1427,7 +1430,7 @@ class CfnAppMonitorProps:
1427
1430
  def domain(self) -> typing.Optional[builtins.str]:
1428
1431
  '''The top-level internet domain name for which your application has administrative authority.
1429
1432
 
1430
- This parameter is required.
1433
+ This parameter or the ``DomainList`` parameter is required.
1431
1434
 
1432
1435
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rum-appmonitor.html#cfn-rum-appmonitor-domain
1433
1436
  '''
@@ -1436,9 +1439,9 @@ class CfnAppMonitorProps:
1436
1439
 
1437
1440
  @builtins.property
1438
1441
  def domain_list(self) -> typing.Optional[typing.List[builtins.str]]:
1439
- '''The top-level internet domain names for which your application has administrative authority.
1442
+ '''List the domain names for which your application has administrative authority. This parameter or the ``Domain`` parameter is required.
1440
1443
 
1441
- The CreateAppMonitor requires either the domain or the domain list.
1444
+ You can have a minimum of 1 and a maximum of 5 ``Domain`` under ``DomainList`` . Each ``Domain`` must be a minimum length of 1 and a maximum of 253 characters.
1442
1445
 
1443
1446
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rum-appmonitor.html#cfn-rum-appmonitor-domainlist
1444
1447
  '''
@@ -2087,7 +2087,7 @@ class BucketProps:
2087
2087
  :param bucket_key_enabled: Whether Amazon S3 should use its own intermediary key to generate data keys. Only relevant when using KMS for encryption. - If not enabled, every object GET and PUT will cause an API call to KMS (with the attendant cost implications of that). - If enabled, S3 will use its own time-limited key instead. Only relevant, when Encryption is not set to ``BucketEncryption.UNENCRYPTED``. Default: - false
2088
2088
  :param bucket_name: Physical name of this bucket. Default: - Assigned by CloudFormation (recommended).
2089
2089
  :param cors: The CORS configuration of this bucket. Default: - No CORS configuration.
2090
- :param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``UNENCRYPTED`` otherwise. But if ``UNENCRYPTED`` is specified, the bucket will be encrypted as ``S3_MANAGED`` automatically.
2090
+ :param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``S3_MANAGED`` otherwise.
2091
2091
  :param encryption_key: External KMS key to use for bucket encryption. The ``encryption`` property must be either not specified or set to ``KMS`` or ``DSSE``. An error will be emitted if ``encryption`` is set to ``UNENCRYPTED`` or ``S3_MANAGED``. Default: - If ``encryption`` is set to ``KMS`` and this property is undefined, a new KMS key will be created and associated with this bucket.
2092
2092
  :param enforce_ssl: Enforces SSL for requests. S3.5 of the AWS Foundational Security Best Practices Regarding S3. Default: false
2093
2093
  :param event_bridge_enabled: Whether this bucket should send notifications to Amazon EventBridge or not. Default: false
@@ -2325,10 +2325,7 @@ class BucketProps:
2325
2325
  If you choose KMS, you can specify a KMS key via ``encryptionKey``. If
2326
2326
  encryption key is not specified, a key will automatically be created.
2327
2327
 
2328
- :default:
2329
-
2330
- - ``KMS`` if ``encryptionKey`` is specified, or ``UNENCRYPTED`` otherwise.
2331
- But if ``UNENCRYPTED`` is specified, the bucket will be encrypted as ``S3_MANAGED`` automatically.
2328
+ :default: - ``KMS`` if ``encryptionKey`` is specified, or ``S3_MANAGED`` otherwise.
2332
2329
  '''
2333
2330
  result = self._values.get("encryption")
2334
2331
  return typing.cast(typing.Optional[BucketEncryption], result)
@@ -20670,7 +20667,7 @@ class Bucket(
20670
20667
  :param bucket_key_enabled: Whether Amazon S3 should use its own intermediary key to generate data keys. Only relevant when using KMS for encryption. - If not enabled, every object GET and PUT will cause an API call to KMS (with the attendant cost implications of that). - If enabled, S3 will use its own time-limited key instead. Only relevant, when Encryption is not set to ``BucketEncryption.UNENCRYPTED``. Default: - false
20671
20668
  :param bucket_name: Physical name of this bucket. Default: - Assigned by CloudFormation (recommended).
20672
20669
  :param cors: The CORS configuration of this bucket. Default: - No CORS configuration.
20673
- :param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``UNENCRYPTED`` otherwise. But if ``UNENCRYPTED`` is specified, the bucket will be encrypted as ``S3_MANAGED`` automatically.
20670
+ :param encryption: The kind of server-side encryption to apply to this bucket. If you choose KMS, you can specify a KMS key via ``encryptionKey``. If encryption key is not specified, a key will automatically be created. Default: - ``KMS`` if ``encryptionKey`` is specified, or ``S3_MANAGED`` otherwise.
20674
20671
  :param encryption_key: External KMS key to use for bucket encryption. The ``encryption`` property must be either not specified or set to ``KMS`` or ``DSSE``. An error will be emitted if ``encryption`` is set to ``UNENCRYPTED`` or ``S3_MANAGED``. Default: - If ``encryption`` is set to ``KMS`` and this property is undefined, a new KMS key will be created and associated with this bucket.
20675
20672
  :param enforce_ssl: Enforces SSL for requests. S3.5 of the AWS Foundational Security Best Practices Regarding S3. Default: false
20676
20673
  :param event_bridge_enabled: Whether this bucket should send notifications to Amazon EventBridge or not. Default: false
@@ -42051,6 +42051,7 @@ class CfnPartnerApp(
42051
42051
  ),
42052
42052
  client_token="clientToken",
42053
42053
  enable_iam_session_based_identity=False,
42054
+ kms_key_id="kmsKeyId",
42054
42055
  maintenance_config=sagemaker.CfnPartnerApp.PartnerAppMaintenanceConfigProperty(
42055
42056
  maintenance_window_start="maintenanceWindowStart"
42056
42057
  ),
@@ -42074,6 +42075,7 @@ class CfnPartnerApp(
42074
42075
  application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnerApp.PartnerAppConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
42075
42076
  client_token: typing.Optional[builtins.str] = None,
42076
42077
  enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
42078
+ kms_key_id: typing.Optional[builtins.str] = None,
42077
42079
  maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPartnerApp.PartnerAppMaintenanceConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
42078
42080
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
42079
42081
  ) -> None:
@@ -42088,6 +42090,7 @@ class CfnPartnerApp(
42088
42090
  :param application_config: A collection of configuration settings for the PartnerApp.
42089
42091
  :param client_token: (deprecated) The client token for the PartnerApp.
42090
42092
  :param enable_iam_session_based_identity: Enables IAM Session based Identity for PartnerApp.
42093
+ :param kms_key_id: The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
42091
42094
  :param maintenance_config: A collection of settings that specify the maintenance schedule for the PartnerApp.
42092
42095
  :param tags: A list of tags to apply to the PartnerApp.
42093
42096
  '''
@@ -42104,6 +42107,7 @@ class CfnPartnerApp(
42104
42107
  application_config=application_config,
42105
42108
  client_token=client_token,
42106
42109
  enable_iam_session_based_identity=enable_iam_session_based_identity,
42110
+ kms_key_id=kms_key_id,
42107
42111
  maintenance_config=maintenance_config,
42108
42112
  tags=tags,
42109
42113
  )
@@ -42288,6 +42292,19 @@ class CfnPartnerApp(
42288
42292
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
42289
42293
  jsii.set(self, "enableIamSessionBasedIdentity", value) # pyright: ignore[reportArgumentType]
42290
42294
 
42295
+ @builtins.property
42296
+ @jsii.member(jsii_name="kmsKeyId")
42297
+ def kms_key_id(self) -> typing.Optional[builtins.str]:
42298
+ '''The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.'''
42299
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
42300
+
42301
+ @kms_key_id.setter
42302
+ def kms_key_id(self, value: typing.Optional[builtins.str]) -> None:
42303
+ if __debug__:
42304
+ type_hints = typing.get_type_hints(_typecheckingstub__58c272923722b0c517d340605d53203fe379f478e3d080374edf1307990220fe)
42305
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
42306
+ jsii.set(self, "kmsKeyId", value) # pyright: ignore[reportArgumentType]
42307
+
42291
42308
  @builtins.property
42292
42309
  @jsii.member(jsii_name="maintenanceConfig")
42293
42310
  def maintenance_config(
@@ -42462,6 +42479,7 @@ class CfnPartnerApp(
42462
42479
  "application_config": "applicationConfig",
42463
42480
  "client_token": "clientToken",
42464
42481
  "enable_iam_session_based_identity": "enableIamSessionBasedIdentity",
42482
+ "kms_key_id": "kmsKeyId",
42465
42483
  "maintenance_config": "maintenanceConfig",
42466
42484
  "tags": "tags",
42467
42485
  },
@@ -42478,6 +42496,7 @@ class CfnPartnerAppProps:
42478
42496
  application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
42479
42497
  client_token: typing.Optional[builtins.str] = None,
42480
42498
  enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
42499
+ kms_key_id: typing.Optional[builtins.str] = None,
42481
42500
  maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppMaintenanceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
42482
42501
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
42483
42502
  ) -> None:
@@ -42491,6 +42510,7 @@ class CfnPartnerAppProps:
42491
42510
  :param application_config: A collection of configuration settings for the PartnerApp.
42492
42511
  :param client_token: (deprecated) The client token for the PartnerApp.
42493
42512
  :param enable_iam_session_based_identity: Enables IAM Session based Identity for PartnerApp.
42513
+ :param kms_key_id: The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
42494
42514
  :param maintenance_config: A collection of settings that specify the maintenance schedule for the PartnerApp.
42495
42515
  :param tags: A list of tags to apply to the PartnerApp.
42496
42516
 
@@ -42519,6 +42539,7 @@ class CfnPartnerAppProps:
42519
42539
  ),
42520
42540
  client_token="clientToken",
42521
42541
  enable_iam_session_based_identity=False,
42542
+ kms_key_id="kmsKeyId",
42522
42543
  maintenance_config=sagemaker.CfnPartnerApp.PartnerAppMaintenanceConfigProperty(
42523
42544
  maintenance_window_start="maintenanceWindowStart"
42524
42545
  ),
@@ -42538,6 +42559,7 @@ class CfnPartnerAppProps:
42538
42559
  check_type(argname="argument application_config", value=application_config, expected_type=type_hints["application_config"])
42539
42560
  check_type(argname="argument client_token", value=client_token, expected_type=type_hints["client_token"])
42540
42561
  check_type(argname="argument enable_iam_session_based_identity", value=enable_iam_session_based_identity, expected_type=type_hints["enable_iam_session_based_identity"])
42562
+ check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
42541
42563
  check_type(argname="argument maintenance_config", value=maintenance_config, expected_type=type_hints["maintenance_config"])
42542
42564
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
42543
42565
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -42553,6 +42575,8 @@ class CfnPartnerAppProps:
42553
42575
  self._values["client_token"] = client_token
42554
42576
  if enable_iam_session_based_identity is not None:
42555
42577
  self._values["enable_iam_session_based_identity"] = enable_iam_session_based_identity
42578
+ if kms_key_id is not None:
42579
+ self._values["kms_key_id"] = kms_key_id
42556
42580
  if maintenance_config is not None:
42557
42581
  self._values["maintenance_config"] = maintenance_config
42558
42582
  if tags is not None:
@@ -42644,6 +42668,15 @@ class CfnPartnerAppProps:
42644
42668
  result = self._values.get("enable_iam_session_based_identity")
42645
42669
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
42646
42670
 
42671
+ @builtins.property
42672
+ def kms_key_id(self) -> typing.Optional[builtins.str]:
42673
+ '''The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
42674
+
42675
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-kmskeyid
42676
+ '''
42677
+ result = self._values.get("kms_key_id")
42678
+ return typing.cast(typing.Optional[builtins.str], result)
42679
+
42647
42680
  @builtins.property
42648
42681
  def maintenance_config(
42649
42682
  self,
@@ -54541,6 +54574,7 @@ def _typecheckingstub__149fe137328534a718f6ce551ee72371d9e2f7ac901d129321d3ff327
54541
54574
  application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
54542
54575
  client_token: typing.Optional[builtins.str] = None,
54543
54576
  enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
54577
+ kms_key_id: typing.Optional[builtins.str] = None,
54544
54578
  maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppMaintenanceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
54545
54579
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
54546
54580
  ) -> None:
@@ -54607,6 +54641,12 @@ def _typecheckingstub__ebd74e6776143e94da10e5c2bab1e42ca40468d81bb1db74aa0c18459
54607
54641
  """Type checking stubs"""
54608
54642
  pass
54609
54643
 
54644
+ def _typecheckingstub__58c272923722b0c517d340605d53203fe379f478e3d080374edf1307990220fe(
54645
+ value: typing.Optional[builtins.str],
54646
+ ) -> None:
54647
+ """Type checking stubs"""
54648
+ pass
54649
+
54610
54650
  def _typecheckingstub__01904965c7f75553d54adf4ed7dd98da8f98703ddbdf03abdbbfb7056e2bceab(
54611
54651
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPartnerApp.PartnerAppMaintenanceConfigProperty]],
54612
54652
  ) -> None:
@@ -54644,6 +54684,7 @@ def _typecheckingstub__23a26f35e63e4c1c82a8885f138a3f6006822c6ecbf7284a7c2ccafae
54644
54684
  application_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
54645
54685
  client_token: typing.Optional[builtins.str] = None,
54646
54686
  enable_iam_session_based_identity: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
54687
+ kms_key_id: typing.Optional[builtins.str] = None,
54647
54688
  maintenance_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPartnerApp.PartnerAppMaintenanceConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
54648
54689
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
54649
54690
  ) -> None: