aws-cdk-lib 2.184.1__py3-none-any.whl → 2.186.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 (75) hide show
  1. aws_cdk/__init__.py +102 -29
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.184.1.jsii.tgz → aws-cdk-lib@2.186.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amazonmq/__init__.py +3 -2
  5. aws_cdk/aws_apigateway/__init__.py +1 -1
  6. aws_cdk/aws_apigatewayv2/__init__.py +9 -0
  7. aws_cdk/aws_appconfig/__init__.py +3 -3
  8. aws_cdk/aws_applicationsignals/__init__.py +495 -1
  9. aws_cdk/aws_appsync/__init__.py +65 -11
  10. aws_cdk/aws_athena/__init__.py +143 -0
  11. aws_cdk/aws_backup/__init__.py +4 -2
  12. aws_cdk/aws_batch/__init__.py +9 -0
  13. aws_cdk/aws_bedrock/__init__.py +645 -199
  14. aws_cdk/aws_cassandra/__init__.py +3 -5
  15. aws_cdk/aws_chatbot/__init__.py +41 -0
  16. aws_cdk/aws_cleanrooms/__init__.py +21 -9
  17. aws_cdk/aws_cloudformation/__init__.py +1 -5
  18. aws_cdk/aws_cloudfront/__init__.py +4 -1
  19. aws_cdk/aws_cloudfront_origins/__init__.py +4 -2
  20. aws_cdk/aws_codeartifact/__init__.py +20 -33
  21. aws_cdk/aws_codebuild/__init__.py +10 -3
  22. aws_cdk/aws_codepipeline/__init__.py +1328 -120
  23. aws_cdk/aws_cognito/__init__.py +1 -1
  24. aws_cdk/aws_cognito_identitypool/__init__.py +2303 -0
  25. aws_cdk/aws_config/__init__.py +1 -1
  26. aws_cdk/aws_connect/__init__.py +3 -7
  27. aws_cdk/aws_controltower/__init__.py +18 -26
  28. aws_cdk/aws_datasync/__init__.py +12 -14
  29. aws_cdk/aws_datazone/__init__.py +3471 -2
  30. aws_cdk/aws_ec2/__init__.py +701 -37
  31. aws_cdk/aws_ecr/__init__.py +84 -2
  32. aws_cdk/aws_ecs/__init__.py +20 -25
  33. aws_cdk/aws_eks/__init__.py +2 -0
  34. aws_cdk/aws_elasticloadbalancingv2/__init__.py +42 -5
  35. aws_cdk/aws_elasticsearch/__init__.py +1 -1
  36. aws_cdk/aws_events/__init__.py +37 -14
  37. aws_cdk/aws_events_targets/__init__.py +5 -5
  38. aws_cdk/aws_gamelift/__init__.py +165 -165
  39. aws_cdk/aws_gameliftstreams/__init__.py +199 -59
  40. aws_cdk/aws_iam/__init__.py +320 -25
  41. aws_cdk/aws_imagebuilder/__init__.py +15 -2
  42. aws_cdk/aws_iotfleetwise/__init__.py +15 -6
  43. aws_cdk/aws_kinesisfirehose/__init__.py +115 -113
  44. aws_cdk/aws_lambda/__init__.py +7 -1
  45. aws_cdk/aws_location/__init__.py +24 -7
  46. aws_cdk/aws_logs/__init__.py +21 -27
  47. aws_cdk/aws_msk/__init__.py +17 -50
  48. aws_cdk/aws_networkfirewall/__init__.py +16 -12
  49. aws_cdk/aws_oam/__init__.py +8 -37
  50. aws_cdk/aws_opensearchservice/__init__.py +1 -1
  51. aws_cdk/aws_pcs/__init__.py +33 -22
  52. aws_cdk/aws_quicksight/__init__.py +6 -69
  53. aws_cdk/aws_rds/__init__.py +8 -4
  54. aws_cdk/aws_redshiftserverless/__init__.py +192 -15
  55. aws_cdk/aws_rum/__init__.py +454 -43
  56. aws_cdk/aws_s3/__init__.py +4 -6
  57. aws_cdk/aws_s3_deployment/__init__.py +2 -0
  58. aws_cdk/aws_sagemaker/__init__.py +524 -0
  59. aws_cdk/aws_scheduler/__init__.py +3944 -121
  60. aws_cdk/aws_scheduler_targets/__init__.py +4472 -0
  61. aws_cdk/aws_ses/__init__.py +9 -9
  62. aws_cdk/aws_sns/__init__.py +12 -12
  63. aws_cdk/aws_ssmquicksetup/__init__.py +5 -3
  64. aws_cdk/aws_stepfunctions/__init__.py +17 -15
  65. aws_cdk/aws_timestream/__init__.py +4 -4
  66. aws_cdk/aws_wafv2/__init__.py +345 -0
  67. aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
  68. aws_cdk/cx_api/__init__.py +53 -0
  69. aws_cdk/region_info/__init__.py +2 -2
  70. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/METADATA +1 -1
  71. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/RECORD +75 -73
  72. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/LICENSE +0 -0
  73. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/NOTICE +0 -0
  74. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/WHEEL +0 -0
  75. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.186.0.dist-info}/top_level.txt +0 -0
@@ -292,7 +292,7 @@ domain = Domain(self, "Domain",
292
292
  ```
293
293
 
294
294
  For more complex use-cases, for example, to set the domain up to receive data from a
295
- [cross-account Kinesis Firehose](https://aws.amazon.com/premiumsupport/knowledge-center/kinesis-firehose-cross-account-streaming/) the `addAccessPolicies` helper method
295
+ [cross-account Amazon Data Firehose](https://aws.amazon.com/premiumsupport/knowledge-center/kinesis-firehose-cross-account-streaming/) the `addAccessPolicies` helper method
296
296
  allows for policies that include the explicit domain ARN.
297
297
 
298
298
  ```python
@@ -1107,8 +1107,10 @@ class CfnComputeNodeGroup(
1107
1107
  cfn_compute_node_group = pcs.CfnComputeNodeGroup(self, "MyCfnComputeNodeGroup",
1108
1108
  cluster_id="clusterId",
1109
1109
  custom_launch_template=pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty(
1110
- id="id",
1111
- version="version"
1110
+ version="version",
1111
+
1112
+ # the properties below are optional
1113
+ template_id="templateId"
1112
1114
  ),
1113
1115
  iam_instance_profile_arn="iamInstanceProfileArn",
1114
1116
  instance_configs=[pcs.CfnComputeNodeGroup.InstanceConfigProperty(
@@ -1460,14 +1462,19 @@ class CfnComputeNodeGroup(
1460
1462
  @jsii.data_type(
1461
1463
  jsii_type="aws-cdk-lib.aws_pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty",
1462
1464
  jsii_struct_bases=[],
1463
- name_mapping={"id": "id", "version": "version"},
1465
+ name_mapping={"version": "version", "template_id": "templateId"},
1464
1466
  )
1465
1467
  class CustomLaunchTemplateProperty:
1466
- def __init__(self, *, id: builtins.str, version: builtins.str) -> None:
1468
+ def __init__(
1469
+ self,
1470
+ *,
1471
+ version: builtins.str,
1472
+ template_id: typing.Optional[builtins.str] = None,
1473
+ ) -> None:
1467
1474
  '''An Amazon EC2 launch template AWS PCS uses to launch compute nodes.
1468
1475
 
1469
- :param id: The ID of the EC2 launch template to use to provision instances.
1470
1476
  :param version: The version of the EC2 launch template to use to provision instances.
1477
+ :param template_id: The ID of the EC2 launch template to use to provision instances.
1471
1478
 
1472
1479
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-customlaunchtemplate.html
1473
1480
  :exampleMetadata: fixture=_generated
@@ -1479,28 +1486,21 @@ class CfnComputeNodeGroup(
1479
1486
  from aws_cdk import aws_pcs as pcs
1480
1487
 
1481
1488
  custom_launch_template_property = pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty(
1482
- id="id",
1483
- version="version"
1489
+ version="version",
1490
+
1491
+ # the properties below are optional
1492
+ template_id="templateId"
1484
1493
  )
1485
1494
  '''
1486
1495
  if __debug__:
1487
1496
  type_hints = typing.get_type_hints(_typecheckingstub__f5e18d4eaf127cbbf203643daa28b5c0a8105f4a3d48ce6e2c896d6f851d7911)
1488
- check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1489
1497
  check_type(argname="argument version", value=version, expected_type=type_hints["version"])
1498
+ check_type(argname="argument template_id", value=template_id, expected_type=type_hints["template_id"])
1490
1499
  self._values: typing.Dict[builtins.str, typing.Any] = {
1491
- "id": id,
1492
1500
  "version": version,
1493
1501
  }
1494
-
1495
- @builtins.property
1496
- def id(self) -> builtins.str:
1497
- '''The ID of the EC2 launch template to use to provision instances.
1498
-
1499
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-customlaunchtemplate.html#cfn-pcs-computenodegroup-customlaunchtemplate-id
1500
- '''
1501
- result = self._values.get("id")
1502
- assert result is not None, "Required property 'id' is missing"
1503
- return typing.cast(builtins.str, result)
1502
+ if template_id is not None:
1503
+ self._values["template_id"] = template_id
1504
1504
 
1505
1505
  @builtins.property
1506
1506
  def version(self) -> builtins.str:
@@ -1512,6 +1512,15 @@ class CfnComputeNodeGroup(
1512
1512
  assert result is not None, "Required property 'version' is missing"
1513
1513
  return typing.cast(builtins.str, result)
1514
1514
 
1515
+ @builtins.property
1516
+ def template_id(self) -> typing.Optional[builtins.str]:
1517
+ '''The ID of the EC2 launch template to use to provision instances.
1518
+
1519
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-customlaunchtemplate.html#cfn-pcs-computenodegroup-customlaunchtemplate-templateid
1520
+ '''
1521
+ result = self._values.get("template_id")
1522
+ return typing.cast(typing.Optional[builtins.str], result)
1523
+
1515
1524
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
1516
1525
  return isinstance(rhs, self.__class__) and rhs._values == self._values
1517
1526
 
@@ -1986,8 +1995,10 @@ class CfnComputeNodeGroupProps:
1986
1995
  cfn_compute_node_group_props = pcs.CfnComputeNodeGroupProps(
1987
1996
  cluster_id="clusterId",
1988
1997
  custom_launch_template=pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty(
1989
- id="id",
1990
- version="version"
1998
+ version="version",
1999
+
2000
+ # the properties below are optional
2001
+ template_id="templateId"
1991
2002
  ),
1992
2003
  iam_instance_profile_arn="iamInstanceProfileArn",
1993
2004
  instance_configs=[pcs.CfnComputeNodeGroup.InstanceConfigProperty(
@@ -2895,8 +2906,8 @@ def _typecheckingstub__4f9d940f011938958eb70282b41c84f70c7f86093c1788ec73b310de3
2895
2906
 
2896
2907
  def _typecheckingstub__f5e18d4eaf127cbbf203643daa28b5c0a8105f4a3d48ce6e2c896d6f851d7911(
2897
2908
  *,
2898
- id: builtins.str,
2899
2909
  version: builtins.str,
2910
+ template_id: typing.Optional[builtins.str] = None,
2900
2911
  ) -> None:
2901
2912
  """Type checking stubs"""
2902
2913
  pass
@@ -56573,11 +56573,7 @@ class CfnAnalysis(
56573
56573
  @jsii.data_type(
56574
56574
  jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.SheetTextBoxProperty",
56575
56575
  jsii_struct_bases=[],
56576
- name_mapping={
56577
- "sheet_text_box_id": "sheetTextBoxId",
56578
- "content": "content",
56579
- "interactions": "interactions",
56580
- },
56576
+ name_mapping={"sheet_text_box_id": "sheetTextBoxId", "content": "content"},
56581
56577
  )
56582
56578
  class SheetTextBoxProperty:
56583
56579
  def __init__(
@@ -56585,13 +56581,11 @@ class CfnAnalysis(
56585
56581
  *,
56586
56582
  sheet_text_box_id: builtins.str,
56587
56583
  content: typing.Optional[builtins.str] = None,
56588
- interactions: typing.Any = None,
56589
56584
  ) -> None:
56590
56585
  '''A text box.
56591
56586
 
56592
56587
  :param sheet_text_box_id: The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.
56593
56588
  :param content: The content that is displayed in the text box.
56594
- :param interactions:
56595
56589
 
56596
56590
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheettextbox.html
56597
56591
  :exampleMetadata: fixture=_generated
@@ -56602,28 +56596,22 @@ class CfnAnalysis(
56602
56596
  # The values are placeholders you should change.
56603
56597
  from aws_cdk import aws_quicksight as quicksight
56604
56598
 
56605
- # interactions: Any
56606
-
56607
56599
  sheet_text_box_property = quicksight.CfnAnalysis.SheetTextBoxProperty(
56608
56600
  sheet_text_box_id="sheetTextBoxId",
56609
56601
 
56610
56602
  # the properties below are optional
56611
- content="content",
56612
- interactions=interactions
56603
+ content="content"
56613
56604
  )
56614
56605
  '''
56615
56606
  if __debug__:
56616
56607
  type_hints = typing.get_type_hints(_typecheckingstub__c11f3c0decba2e94eb6cd10f2ebc916ccb6c9fb2b5a2f1337a971d1e0c1b2502)
56617
56608
  check_type(argname="argument sheet_text_box_id", value=sheet_text_box_id, expected_type=type_hints["sheet_text_box_id"])
56618
56609
  check_type(argname="argument content", value=content, expected_type=type_hints["content"])
56619
- check_type(argname="argument interactions", value=interactions, expected_type=type_hints["interactions"])
56620
56610
  self._values: typing.Dict[builtins.str, typing.Any] = {
56621
56611
  "sheet_text_box_id": sheet_text_box_id,
56622
56612
  }
56623
56613
  if content is not None:
56624
56614
  self._values["content"] = content
56625
- if interactions is not None:
56626
- self._values["interactions"] = interactions
56627
56615
 
56628
56616
  @builtins.property
56629
56617
  def sheet_text_box_id(self) -> builtins.str:
@@ -56646,14 +56634,6 @@ class CfnAnalysis(
56646
56634
  result = self._values.get("content")
56647
56635
  return typing.cast(typing.Optional[builtins.str], result)
56648
56636
 
56649
- @builtins.property
56650
- def interactions(self) -> typing.Any:
56651
- '''
56652
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheettextbox.html#cfn-quicksight-analysis-sheettextbox-interactions
56653
- '''
56654
- result = self._values.get("interactions")
56655
- return typing.cast(typing.Any, result)
56656
-
56657
56637
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
56658
56638
  return isinstance(rhs, self.__class__) and rhs._values == self._values
56659
56639
 
@@ -128253,11 +128233,7 @@ class CfnDashboard(
128253
128233
  @jsii.data_type(
128254
128234
  jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.SheetTextBoxProperty",
128255
128235
  jsii_struct_bases=[],
128256
- name_mapping={
128257
- "sheet_text_box_id": "sheetTextBoxId",
128258
- "content": "content",
128259
- "interactions": "interactions",
128260
- },
128236
+ name_mapping={"sheet_text_box_id": "sheetTextBoxId", "content": "content"},
128261
128237
  )
128262
128238
  class SheetTextBoxProperty:
128263
128239
  def __init__(
@@ -128265,13 +128241,11 @@ class CfnDashboard(
128265
128241
  *,
128266
128242
  sheet_text_box_id: builtins.str,
128267
128243
  content: typing.Optional[builtins.str] = None,
128268
- interactions: typing.Any = None,
128269
128244
  ) -> None:
128270
128245
  '''A text box.
128271
128246
 
128272
128247
  :param sheet_text_box_id: The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.
128273
128248
  :param content: The content that is displayed in the text box.
128274
- :param interactions:
128275
128249
 
128276
128250
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheettextbox.html
128277
128251
  :exampleMetadata: fixture=_generated
@@ -128282,28 +128256,22 @@ class CfnDashboard(
128282
128256
  # The values are placeholders you should change.
128283
128257
  from aws_cdk import aws_quicksight as quicksight
128284
128258
 
128285
- # interactions: Any
128286
-
128287
128259
  sheet_text_box_property = quicksight.CfnDashboard.SheetTextBoxProperty(
128288
128260
  sheet_text_box_id="sheetTextBoxId",
128289
128261
 
128290
128262
  # the properties below are optional
128291
- content="content",
128292
- interactions=interactions
128263
+ content="content"
128293
128264
  )
128294
128265
  '''
128295
128266
  if __debug__:
128296
128267
  type_hints = typing.get_type_hints(_typecheckingstub__74c00d97e53826dff384253ef732f8c7e273f9a87d88b52bce179fff04f324de)
128297
128268
  check_type(argname="argument sheet_text_box_id", value=sheet_text_box_id, expected_type=type_hints["sheet_text_box_id"])
128298
128269
  check_type(argname="argument content", value=content, expected_type=type_hints["content"])
128299
- check_type(argname="argument interactions", value=interactions, expected_type=type_hints["interactions"])
128300
128270
  self._values: typing.Dict[builtins.str, typing.Any] = {
128301
128271
  "sheet_text_box_id": sheet_text_box_id,
128302
128272
  }
128303
128273
  if content is not None:
128304
128274
  self._values["content"] = content
128305
- if interactions is not None:
128306
- self._values["interactions"] = interactions
128307
128275
 
128308
128276
  @builtins.property
128309
128277
  def sheet_text_box_id(self) -> builtins.str:
@@ -128326,14 +128294,6 @@ class CfnDashboard(
128326
128294
  result = self._values.get("content")
128327
128295
  return typing.cast(typing.Optional[builtins.str], result)
128328
128296
 
128329
- @builtins.property
128330
- def interactions(self) -> typing.Any:
128331
- '''
128332
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheettextbox.html#cfn-quicksight-dashboard-sheettextbox-interactions
128333
- '''
128334
- result = self._values.get("interactions")
128335
- return typing.cast(typing.Any, result)
128336
-
128337
128297
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
128338
128298
  return isinstance(rhs, self.__class__) and rhs._values == self._values
128339
128299
 
@@ -206133,11 +206093,7 @@ class CfnTemplate(
206133
206093
  @jsii.data_type(
206134
206094
  jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.SheetTextBoxProperty",
206135
206095
  jsii_struct_bases=[],
206136
- name_mapping={
206137
- "sheet_text_box_id": "sheetTextBoxId",
206138
- "content": "content",
206139
- "interactions": "interactions",
206140
- },
206096
+ name_mapping={"sheet_text_box_id": "sheetTextBoxId", "content": "content"},
206141
206097
  )
206142
206098
  class SheetTextBoxProperty:
206143
206099
  def __init__(
@@ -206145,13 +206101,11 @@ class CfnTemplate(
206145
206101
  *,
206146
206102
  sheet_text_box_id: builtins.str,
206147
206103
  content: typing.Optional[builtins.str] = None,
206148
- interactions: typing.Any = None,
206149
206104
  ) -> None:
206150
206105
  '''A text box.
206151
206106
 
206152
206107
  :param sheet_text_box_id: The unique identifier for a text box. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have text boxes that share identifiers.
206153
206108
  :param content: The content that is displayed in the text box.
206154
- :param interactions:
206155
206109
 
206156
206110
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheettextbox.html
206157
206111
  :exampleMetadata: fixture=_generated
@@ -206162,28 +206116,22 @@ class CfnTemplate(
206162
206116
  # The values are placeholders you should change.
206163
206117
  from aws_cdk import aws_quicksight as quicksight
206164
206118
 
206165
- # interactions: Any
206166
-
206167
206119
  sheet_text_box_property = quicksight.CfnTemplate.SheetTextBoxProperty(
206168
206120
  sheet_text_box_id="sheetTextBoxId",
206169
206121
 
206170
206122
  # the properties below are optional
206171
- content="content",
206172
- interactions=interactions
206123
+ content="content"
206173
206124
  )
206174
206125
  '''
206175
206126
  if __debug__:
206176
206127
  type_hints = typing.get_type_hints(_typecheckingstub__c9b83b0fa0f3bbeb8b8bb8cb25987a9de88b749ef27c4f94c0eeed905842d767)
206177
206128
  check_type(argname="argument sheet_text_box_id", value=sheet_text_box_id, expected_type=type_hints["sheet_text_box_id"])
206178
206129
  check_type(argname="argument content", value=content, expected_type=type_hints["content"])
206179
- check_type(argname="argument interactions", value=interactions, expected_type=type_hints["interactions"])
206180
206130
  self._values: typing.Dict[builtins.str, typing.Any] = {
206181
206131
  "sheet_text_box_id": sheet_text_box_id,
206182
206132
  }
206183
206133
  if content is not None:
206184
206134
  self._values["content"] = content
206185
- if interactions is not None:
206186
- self._values["interactions"] = interactions
206187
206135
 
206188
206136
  @builtins.property
206189
206137
  def sheet_text_box_id(self) -> builtins.str:
@@ -206206,14 +206154,6 @@ class CfnTemplate(
206206
206154
  result = self._values.get("content")
206207
206155
  return typing.cast(typing.Optional[builtins.str], result)
206208
206156
 
206209
- @builtins.property
206210
- def interactions(self) -> typing.Any:
206211
- '''
206212
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheettextbox.html#cfn-quicksight-template-sheettextbox-interactions
206213
- '''
206214
- result = self._values.get("interactions")
206215
- return typing.cast(typing.Any, result)
206216
-
206217
206157
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
206218
206158
  return isinstance(rhs, self.__class__) and rhs._values == self._values
206219
206159
 
@@ -231211,7 +231151,6 @@ def _typecheckingstub__c11f3c0decba2e94eb6cd10f2ebc916ccb6c9fb2b5a2f1337a971d1e0
231211
231151
  *,
231212
231152
  sheet_text_box_id: builtins.str,
231213
231153
  content: typing.Optional[builtins.str] = None,
231214
- interactions: typing.Any = None,
231215
231154
  ) -> None:
231216
231155
  """Type checking stubs"""
231217
231156
  pass
@@ -236695,7 +236634,6 @@ def _typecheckingstub__74c00d97e53826dff384253ef732f8c7e273f9a87d88b52bce179fff0
236695
236634
  *,
236696
236635
  sheet_text_box_id: builtins.str,
236697
236636
  content: typing.Optional[builtins.str] = None,
236698
- interactions: typing.Any = None,
236699
236637
  ) -> None:
236700
236638
  """Type checking stubs"""
236701
236639
  pass
@@ -242846,7 +242784,6 @@ def _typecheckingstub__c9b83b0fa0f3bbeb8b8bb8cb25987a9de88b749ef27c4f94c0eeed905
242846
242784
  *,
242847
242785
  sheet_text_box_id: builtins.str,
242848
242786
  content: typing.Optional[builtins.str] = None,
242849
- interactions: typing.Any = None,
242850
242787
  ) -> None:
242851
242788
  """Type checking stubs"""
242852
242789
  pass
@@ -5210,7 +5210,7 @@ class CfnDBCluster(
5210
5210
  :param network_type: The network type of the DB cluster. Valid values: - ``IPV4`` - ``DUAL`` The network type is determined by the ``DBSubnetGroup`` specified for the DB cluster. A ``DBSubnetGroup`` can support only the IPv4 protocol or the IPv4 and IPv6 protocols ( ``DUAL`` ). For more information, see `Working with a DB instance in a VPC <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html>`_ in the *Amazon Aurora User Guide.* Valid for: Aurora DB clusters only
5211
5211
  :param performance_insights_enabled: Specifies whether to turn on Performance Insights for the DB cluster. For more information, see `Using Amazon Performance Insights <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html>`_ in the *Amazon RDS User Guide* . Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
5212
5212
  :param performance_insights_kms_key_id: The AWS KMS key identifier for encryption of Performance Insights data. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you don't specify a value for ``PerformanceInsightsKMSKeyId`` , then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS account . Your AWS account has a different default KMS key for each AWS Region . Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
5213
- :param performance_insights_retention_period: The number of days to retain Performance Insights data. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS issues an error.
5213
+ :param performance_insights_retention_period: The number of days to retain Performance Insights data. When creating a DB cluster without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod`` . Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS issues an error.
5214
5214
  :param port: The port number on which the DB instances in the DB cluster accept connections. Default: - When ``EngineMode`` is ``provisioned`` , ``3306`` (for both Aurora MySQL and Aurora PostgreSQL) - When ``EngineMode`` is ``serverless`` : - ``3306`` when ``Engine`` is ``aurora`` or ``aurora-mysql`` - ``5432`` when ``Engine`` is ``aurora-postgresql`` .. epigraph:: The ``No interruption`` on update behavior only applies to DB clusters. If you are updating a DB instance, see `Port <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port>`_ for the AWS::RDS::DBInstance resource. Valid for: Aurora DB clusters and Multi-AZ DB clusters
5215
5215
  :param preferred_backup_window: The daily time range during which automated backups are created. For more information, see `Backup Window <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow>`_ in the *Amazon Aurora User Guide.* Constraints: - Must be in the format ``hh24:mi-hh24:mi`` . - Must be in Universal Coordinated Time (UTC). - Must not conflict with the preferred maintenance window. - Must be at least 30 minutes. Valid for: Aurora DB clusters and Multi-AZ DB clusters
5216
5216
  :param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ``ddd:hh24:mi-ddd:hh24:mi`` The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see `Maintaining an Amazon Aurora DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora>`_ in the *Amazon Aurora User Guide.* Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. Constraints: Minimum 30-minute window. Valid for: Aurora DB clusters and Multi-AZ DB clusters
@@ -7404,7 +7404,7 @@ class CfnDBClusterProps:
7404
7404
  :param network_type: The network type of the DB cluster. Valid values: - ``IPV4`` - ``DUAL`` The network type is determined by the ``DBSubnetGroup`` specified for the DB cluster. A ``DBSubnetGroup`` can support only the IPv4 protocol or the IPv4 and IPv6 protocols ( ``DUAL`` ). For more information, see `Working with a DB instance in a VPC <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html>`_ in the *Amazon Aurora User Guide.* Valid for: Aurora DB clusters only
7405
7405
  :param performance_insights_enabled: Specifies whether to turn on Performance Insights for the DB cluster. For more information, see `Using Amazon Performance Insights <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html>`_ in the *Amazon RDS User Guide* . Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
7406
7406
  :param performance_insights_kms_key_id: The AWS KMS key identifier for encryption of Performance Insights data. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you don't specify a value for ``PerformanceInsightsKMSKeyId`` , then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS account . Your AWS account has a different default KMS key for each AWS Region . Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
7407
- :param performance_insights_retention_period: The number of days to retain Performance Insights data. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS issues an error.
7407
+ :param performance_insights_retention_period: The number of days to retain Performance Insights data. When creating a DB cluster without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod`` . Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS issues an error.
7408
7408
  :param port: The port number on which the DB instances in the DB cluster accept connections. Default: - When ``EngineMode`` is ``provisioned`` , ``3306`` (for both Aurora MySQL and Aurora PostgreSQL) - When ``EngineMode`` is ``serverless`` : - ``3306`` when ``Engine`` is ``aurora`` or ``aurora-mysql`` - ``5432`` when ``Engine`` is ``aurora-postgresql`` .. epigraph:: The ``No interruption`` on update behavior only applies to DB clusters. If you are updating a DB instance, see `Port <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port>`_ for the AWS::RDS::DBInstance resource. Valid for: Aurora DB clusters and Multi-AZ DB clusters
7409
7409
  :param preferred_backup_window: The daily time range during which automated backups are created. For more information, see `Backup Window <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow>`_ in the *Amazon Aurora User Guide.* Constraints: - Must be in the format ``hh24:mi-hh24:mi`` . - Must be in Universal Coordinated Time (UTC). - Must not conflict with the preferred maintenance window. - Must be at least 30 minutes. Valid for: Aurora DB clusters and Multi-AZ DB clusters
7410
7410
  :param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ``ddd:hh24:mi-ddd:hh24:mi`` The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see `Maintaining an Amazon Aurora DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora>`_ in the *Amazon Aurora User Guide.* Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. Constraints: Minimum 30-minute window. Valid for: Aurora DB clusters and Multi-AZ DB clusters
@@ -8381,6 +8381,8 @@ class CfnDBClusterProps:
8381
8381
  def performance_insights_retention_period(self) -> typing.Optional[jsii.Number]:
8382
8382
  '''The number of days to retain Performance Insights data.
8383
8383
 
8384
+ When creating a DB cluster without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod`` .
8385
+
8384
8386
  Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
8385
8387
 
8386
8388
  Valid Values:
@@ -9035,7 +9037,7 @@ class CfnDBInstance(
9035
9037
  :param network_type: The network type of the DB instance. Valid values: - ``IPV4`` - ``DUAL`` The network type is determined by the ``DBSubnetGroup`` specified for the DB instance. A ``DBSubnetGroup`` can support only the IPv4 protocol or the IPv4 and IPv6 protocols ( ``DUAL`` ). For more information, see `Working with a DB instance in a VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html>`_ in the *Amazon RDS User Guide.*
9036
9038
  :param option_group_name: Indicates that the DB instance should be associated with the specified option group. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group. Also, that option group can't be removed from a DB instance once it is associated with a DB instance.
9037
9039
  :param performance_insights_kms_key_id: The AWS KMS key identifier for encryption of Performance Insights data. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you do not specify a value for ``PerformanceInsightsKMSKeyId`` , then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS account. Your AWS account has a different default KMS key for each AWS Region. For information about enabling Performance Insights, see `EnablePerformanceInsights <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights>`_ .
9038
- :param performance_insights_retention_period: The number of days to retain Performance Insights data. This setting doesn't apply to RDS Custom DB instances. Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS returns an error.
9040
+ :param performance_insights_retention_period: The number of days to retain Performance Insights data. When creating a DB instance without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod`` . This setting doesn't apply to RDS Custom DB instances. Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS returns an error.
9039
9041
  :param port: The port number on which the database accepts connections. This setting doesn't apply to Aurora DB instances. The port number is managed by the cluster. Valid Values: ``1150-65535`` Default: - RDS for Db2 - ``50000`` - RDS for MariaDB - ``3306`` - RDS for Microsoft SQL Server - ``1433`` - RDS for MySQL - ``3306`` - RDS for Oracle - ``1521`` - RDS for PostgreSQL - ``5432`` Constraints: - For RDS for Microsoft SQL Server, the value can't be ``1234`` , ``1434`` , ``3260`` , ``3343`` , ``3389`` , ``47001`` , or ``49152-49156`` .
9040
9042
  :param preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled, using the ``BackupRetentionPeriod`` parameter. For more information, see `Backup Window <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow>`_ in the *Amazon RDS User Guide.* Constraints: - Must be in the format ``hh24:mi-hh24:mi`` . - Must be in Universal Coordinated Time (UTC). - Must not conflict with the preferred maintenance window. - Must be at least 30 minutes. *Amazon Aurora* Not applicable. The daily time range for creating automated backups is managed by the DB cluster.
9041
9043
  :param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ``ddd:hh24:mi-ddd:hh24:mi`` The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see `Maintaining a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow>`_ in the *Amazon RDS User Guide.* .. epigraph:: This property applies when AWS CloudFormation initially creates the DB instance. If you use AWS CloudFormation to update the DB instance, those updates are applied immediately. Constraints: Minimum 30-minute window.
@@ -11107,7 +11109,7 @@ class CfnDBInstanceProps:
11107
11109
  :param network_type: The network type of the DB instance. Valid values: - ``IPV4`` - ``DUAL`` The network type is determined by the ``DBSubnetGroup`` specified for the DB instance. A ``DBSubnetGroup`` can support only the IPv4 protocol or the IPv4 and IPv6 protocols ( ``DUAL`` ). For more information, see `Working with a DB instance in a VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html>`_ in the *Amazon RDS User Guide.*
11108
11110
  :param option_group_name: Indicates that the DB instance should be associated with the specified option group. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group. Also, that option group can't be removed from a DB instance once it is associated with a DB instance.
11109
11111
  :param performance_insights_kms_key_id: The AWS KMS key identifier for encryption of Performance Insights data. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you do not specify a value for ``PerformanceInsightsKMSKeyId`` , then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS account. Your AWS account has a different default KMS key for each AWS Region. For information about enabling Performance Insights, see `EnablePerformanceInsights <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights>`_ .
11110
- :param performance_insights_retention_period: The number of days to retain Performance Insights data. This setting doesn't apply to RDS Custom DB instances. Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS returns an error.
11112
+ :param performance_insights_retention_period: The number of days to retain Performance Insights data. When creating a DB instance without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod`` . This setting doesn't apply to RDS Custom DB instances. Valid Values: - ``7`` - *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31) - ``731`` Default: ``7`` days If you specify a retention period that isn't valid, such as ``94`` , Amazon RDS returns an error.
11111
11113
  :param port: The port number on which the database accepts connections. This setting doesn't apply to Aurora DB instances. The port number is managed by the cluster. Valid Values: ``1150-65535`` Default: - RDS for Db2 - ``50000`` - RDS for MariaDB - ``3306`` - RDS for Microsoft SQL Server - ``1433`` - RDS for MySQL - ``3306`` - RDS for Oracle - ``1521`` - RDS for PostgreSQL - ``5432`` Constraints: - For RDS for Microsoft SQL Server, the value can't be ``1234`` , ``1434`` , ``3260`` , ``3343`` , ``3389`` , ``47001`` , or ``49152-49156`` .
11112
11114
  :param preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled, using the ``BackupRetentionPeriod`` parameter. For more information, see `Backup Window <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow>`_ in the *Amazon RDS User Guide.* Constraints: - Must be in the format ``hh24:mi-hh24:mi`` . - Must be in Universal Coordinated Time (UTC). - Must not conflict with the preferred maintenance window. - Must be at least 30 minutes. *Amazon Aurora* Not applicable. The daily time range for creating automated backups is managed by the DB cluster.
11113
11115
  :param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ``ddd:hh24:mi-ddd:hh24:mi`` The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. To see the time blocks available, see `Maintaining a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow>`_ in the *Amazon RDS User Guide.* .. epigraph:: This property applies when AWS CloudFormation initially creates the DB instance. If you use AWS CloudFormation to update the DB instance, those updates are applied immediately. Constraints: Minimum 30-minute window.
@@ -12665,6 +12667,8 @@ class CfnDBInstanceProps:
12665
12667
  def performance_insights_retention_period(self) -> typing.Optional[jsii.Number]:
12666
12668
  '''The number of days to retain Performance Insights data.
12667
12669
 
12670
+ When creating a DB instance without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod`` .
12671
+
12668
12672
  This setting doesn't apply to RDS Custom DB instances.
12669
12673
 
12670
12674
  Valid Values: