aws-cdk-lib 2.203.1__py3-none-any.whl → 2.205.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 (62) hide show
  1. aws_cdk/__init__.py +208 -92
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.205.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_aiops/__init__.py +89 -39
  5. aws_cdk/aws_apigateway/__init__.py +164 -0
  6. aws_cdk/aws_apigatewayv2/__init__.py +412 -0
  7. aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
  8. aws_cdk/aws_arczonalshift/__init__.py +4 -1
  9. aws_cdk/aws_b2bi/__init__.py +32 -16
  10. aws_cdk/aws_bedrock/__init__.py +198 -10
  11. aws_cdk/aws_cassandra/__init__.py +156 -0
  12. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  13. aws_cdk/aws_chatbot/__init__.py +28 -0
  14. aws_cdk/aws_cloudformation/__init__.py +74 -72
  15. aws_cdk/aws_cloudfront/__init__.py +1273 -485
  16. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  17. aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
  18. aws_cdk/aws_cloudwatch/__init__.py +278 -23
  19. aws_cdk/aws_codebuild/__init__.py +300 -36
  20. aws_cdk/aws_datasync/__init__.py +2 -2
  21. aws_cdk/aws_docdb/__init__.py +78 -0
  22. aws_cdk/aws_dynamodb/__init__.py +523 -37
  23. aws_cdk/aws_ec2/__init__.py +126 -30
  24. aws_cdk/aws_ecs/__init__.py +64 -19
  25. aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
  26. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  27. aws_cdk/aws_emrserverless/__init__.py +5 -5
  28. aws_cdk/aws_events/__init__.py +58 -3
  29. aws_cdk/aws_events_targets/__init__.py +7 -2
  30. aws_cdk/aws_evs/__init__.py +7 -7
  31. aws_cdk/aws_fsx/__init__.py +138 -78
  32. aws_cdk/aws_gamelift/__init__.py +19 -0
  33. aws_cdk/aws_glue/__init__.py +3 -3
  34. aws_cdk/aws_iot/__init__.py +1 -1
  35. aws_cdk/aws_kinesis/__init__.py +391 -13
  36. aws_cdk/aws_kinesisfirehose/__init__.py +128 -1
  37. aws_cdk/aws_lambda/__init__.py +144 -0
  38. aws_cdk/aws_lex/__init__.py +36 -19
  39. aws_cdk/aws_logs/__init__.py +58 -0
  40. aws_cdk/aws_neptune/__init__.py +12 -12
  41. aws_cdk/aws_odb/__init__.py +4049 -0
  42. aws_cdk/aws_omics/__init__.py +1 -1
  43. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  44. aws_cdk/aws_qbusiness/__init__.py +471 -4
  45. aws_cdk/aws_quicksight/__init__.py +185 -16
  46. aws_cdk/aws_rds/__init__.py +553 -17
  47. aws_cdk/aws_redshiftserverless/__init__.py +72 -45
  48. aws_cdk/aws_route53/__init__.py +41 -19
  49. aws_cdk/aws_s3tables/__init__.py +1005 -0
  50. aws_cdk/aws_sagemaker/__init__.py +20 -0
  51. aws_cdk/aws_scheduler/__init__.py +210 -0
  52. aws_cdk/aws_sns/__init__.py +164 -0
  53. aws_cdk/aws_sqs/__init__.py +164 -0
  54. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  55. aws_cdk/aws_synthetics/__init__.py +159 -37
  56. aws_cdk/aws_transfer/__init__.py +23 -1
  57. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +2 -2
  58. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +62 -61
  59. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
  60. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
  61. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
  62. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
@@ -70136,7 +70136,13 @@ class CfnCustomPermissions(
70136
70136
  create_shared_folders="createSharedFolders",
70137
70137
  create_spice_dataset="createSpiceDataset",
70138
70138
  export_to_csv="exportToCsv",
70139
+ export_to_csv_in_scheduled_reports="exportToCsvInScheduledReports",
70139
70140
  export_to_excel="exportToExcel",
70141
+ export_to_excel_in_scheduled_reports="exportToExcelInScheduledReports",
70142
+ export_to_pdf="exportToPdf",
70143
+ export_to_pdf_in_scheduled_reports="exportToPdfInScheduledReports",
70144
+ include_content_in_scheduled_reports_email="includeContentInScheduledReportsEmail",
70145
+ print_reports="printReports",
70140
70146
  rename_shared_folders="renameSharedFolders",
70141
70147
  share_analyses="shareAnalyses",
70142
70148
  share_dashboards="shareDashboards",
@@ -70303,7 +70309,13 @@ class CfnCustomPermissions(
70303
70309
  "create_shared_folders": "createSharedFolders",
70304
70310
  "create_spice_dataset": "createSpiceDataset",
70305
70311
  "export_to_csv": "exportToCsv",
70312
+ "export_to_csv_in_scheduled_reports": "exportToCsvInScheduledReports",
70306
70313
  "export_to_excel": "exportToExcel",
70314
+ "export_to_excel_in_scheduled_reports": "exportToExcelInScheduledReports",
70315
+ "export_to_pdf": "exportToPdf",
70316
+ "export_to_pdf_in_scheduled_reports": "exportToPdfInScheduledReports",
70317
+ "include_content_in_scheduled_reports_email": "includeContentInScheduledReportsEmail",
70318
+ "print_reports": "printReports",
70307
70319
  "rename_shared_folders": "renameSharedFolders",
70308
70320
  "share_analyses": "shareAnalyses",
70309
70321
  "share_dashboards": "shareDashboards",
@@ -70326,7 +70338,13 @@ class CfnCustomPermissions(
70326
70338
  create_shared_folders: typing.Optional[builtins.str] = None,
70327
70339
  create_spice_dataset: typing.Optional[builtins.str] = None,
70328
70340
  export_to_csv: typing.Optional[builtins.str] = None,
70341
+ export_to_csv_in_scheduled_reports: typing.Optional[builtins.str] = None,
70329
70342
  export_to_excel: typing.Optional[builtins.str] = None,
70343
+ export_to_excel_in_scheduled_reports: typing.Optional[builtins.str] = None,
70344
+ export_to_pdf: typing.Optional[builtins.str] = None,
70345
+ export_to_pdf_in_scheduled_reports: typing.Optional[builtins.str] = None,
70346
+ include_content_in_scheduled_reports_email: typing.Optional[builtins.str] = None,
70347
+ print_reports: typing.Optional[builtins.str] = None,
70330
70348
  rename_shared_folders: typing.Optional[builtins.str] = None,
70331
70349
  share_analyses: typing.Optional[builtins.str] = None,
70332
70350
  share_dashboards: typing.Optional[builtins.str] = None,
@@ -70345,8 +70363,14 @@ class CfnCustomPermissions(
70345
70363
  :param create_and_update_threshold_alerts: The ability to create and update threshold alerts.
70346
70364
  :param create_shared_folders: The ability to create shared folders.
70347
70365
  :param create_spice_dataset: The ability to create a SPICE dataset.
70348
- :param export_to_csv: The ability to export to CSV files.
70349
- :param export_to_excel: The ability to export to Excel files.
70366
+ :param export_to_csv: The ability to export to CSV files from the UI.
70367
+ :param export_to_csv_in_scheduled_reports: The ability to export to CSV files in scheduled email reports.
70368
+ :param export_to_excel: The ability to export to Excel files from the UI.
70369
+ :param export_to_excel_in_scheduled_reports: The ability to export to Excel files in scheduled email reports.
70370
+ :param export_to_pdf: The ability to export to PDF files from the UI.
70371
+ :param export_to_pdf_in_scheduled_reports: The ability to export to PDF files in scheduled email reports.
70372
+ :param include_content_in_scheduled_reports_email: The ability to include content in scheduled email reports.
70373
+ :param print_reports: The ability to print reports.
70350
70374
  :param rename_shared_folders: The ability to rename shared folders.
70351
70375
  :param share_analyses: The ability to share analyses.
70352
70376
  :param share_dashboards: The ability to share dashboards.
@@ -70374,7 +70398,13 @@ class CfnCustomPermissions(
70374
70398
  create_shared_folders="createSharedFolders",
70375
70399
  create_spice_dataset="createSpiceDataset",
70376
70400
  export_to_csv="exportToCsv",
70401
+ export_to_csv_in_scheduled_reports="exportToCsvInScheduledReports",
70377
70402
  export_to_excel="exportToExcel",
70403
+ export_to_excel_in_scheduled_reports="exportToExcelInScheduledReports",
70404
+ export_to_pdf="exportToPdf",
70405
+ export_to_pdf_in_scheduled_reports="exportToPdfInScheduledReports",
70406
+ include_content_in_scheduled_reports_email="includeContentInScheduledReportsEmail",
70407
+ print_reports="printReports",
70378
70408
  rename_shared_folders="renameSharedFolders",
70379
70409
  share_analyses="shareAnalyses",
70380
70410
  share_dashboards="shareDashboards",
@@ -70395,7 +70425,13 @@ class CfnCustomPermissions(
70395
70425
  check_type(argname="argument create_shared_folders", value=create_shared_folders, expected_type=type_hints["create_shared_folders"])
70396
70426
  check_type(argname="argument create_spice_dataset", value=create_spice_dataset, expected_type=type_hints["create_spice_dataset"])
70397
70427
  check_type(argname="argument export_to_csv", value=export_to_csv, expected_type=type_hints["export_to_csv"])
70428
+ check_type(argname="argument export_to_csv_in_scheduled_reports", value=export_to_csv_in_scheduled_reports, expected_type=type_hints["export_to_csv_in_scheduled_reports"])
70398
70429
  check_type(argname="argument export_to_excel", value=export_to_excel, expected_type=type_hints["export_to_excel"])
70430
+ check_type(argname="argument export_to_excel_in_scheduled_reports", value=export_to_excel_in_scheduled_reports, expected_type=type_hints["export_to_excel_in_scheduled_reports"])
70431
+ check_type(argname="argument export_to_pdf", value=export_to_pdf, expected_type=type_hints["export_to_pdf"])
70432
+ check_type(argname="argument export_to_pdf_in_scheduled_reports", value=export_to_pdf_in_scheduled_reports, expected_type=type_hints["export_to_pdf_in_scheduled_reports"])
70433
+ check_type(argname="argument include_content_in_scheduled_reports_email", value=include_content_in_scheduled_reports_email, expected_type=type_hints["include_content_in_scheduled_reports_email"])
70434
+ check_type(argname="argument print_reports", value=print_reports, expected_type=type_hints["print_reports"])
70399
70435
  check_type(argname="argument rename_shared_folders", value=rename_shared_folders, expected_type=type_hints["rename_shared_folders"])
70400
70436
  check_type(argname="argument share_analyses", value=share_analyses, expected_type=type_hints["share_analyses"])
70401
70437
  check_type(argname="argument share_dashboards", value=share_dashboards, expected_type=type_hints["share_dashboards"])
@@ -70422,8 +70458,20 @@ class CfnCustomPermissions(
70422
70458
  self._values["create_spice_dataset"] = create_spice_dataset
70423
70459
  if export_to_csv is not None:
70424
70460
  self._values["export_to_csv"] = export_to_csv
70461
+ if export_to_csv_in_scheduled_reports is not None:
70462
+ self._values["export_to_csv_in_scheduled_reports"] = export_to_csv_in_scheduled_reports
70425
70463
  if export_to_excel is not None:
70426
70464
  self._values["export_to_excel"] = export_to_excel
70465
+ if export_to_excel_in_scheduled_reports is not None:
70466
+ self._values["export_to_excel_in_scheduled_reports"] = export_to_excel_in_scheduled_reports
70467
+ if export_to_pdf is not None:
70468
+ self._values["export_to_pdf"] = export_to_pdf
70469
+ if export_to_pdf_in_scheduled_reports is not None:
70470
+ self._values["export_to_pdf_in_scheduled_reports"] = export_to_pdf_in_scheduled_reports
70471
+ if include_content_in_scheduled_reports_email is not None:
70472
+ self._values["include_content_in_scheduled_reports_email"] = include_content_in_scheduled_reports_email
70473
+ if print_reports is not None:
70474
+ self._values["print_reports"] = print_reports
70427
70475
  if rename_shared_folders is not None:
70428
70476
  self._values["rename_shared_folders"] = rename_shared_folders
70429
70477
  if share_analyses is not None:
@@ -70517,22 +70565,78 @@ class CfnCustomPermissions(
70517
70565
 
70518
70566
  @builtins.property
70519
70567
  def export_to_csv(self) -> typing.Optional[builtins.str]:
70520
- '''The ability to export to CSV files.
70568
+ '''The ability to export to CSV files from the UI.
70521
70569
 
70522
70570
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttocsv
70523
70571
  '''
70524
70572
  result = self._values.get("export_to_csv")
70525
70573
  return typing.cast(typing.Optional[builtins.str], result)
70526
70574
 
70575
+ @builtins.property
70576
+ def export_to_csv_in_scheduled_reports(self) -> typing.Optional[builtins.str]:
70577
+ '''The ability to export to CSV files in scheduled email reports.
70578
+
70579
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttocsvinscheduledreports
70580
+ '''
70581
+ result = self._values.get("export_to_csv_in_scheduled_reports")
70582
+ return typing.cast(typing.Optional[builtins.str], result)
70583
+
70527
70584
  @builtins.property
70528
70585
  def export_to_excel(self) -> typing.Optional[builtins.str]:
70529
- '''The ability to export to Excel files.
70586
+ '''The ability to export to Excel files from the UI.
70530
70587
 
70531
70588
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttoexcel
70532
70589
  '''
70533
70590
  result = self._values.get("export_to_excel")
70534
70591
  return typing.cast(typing.Optional[builtins.str], result)
70535
70592
 
70593
+ @builtins.property
70594
+ def export_to_excel_in_scheduled_reports(self) -> typing.Optional[builtins.str]:
70595
+ '''The ability to export to Excel files in scheduled email reports.
70596
+
70597
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttoexcelinscheduledreports
70598
+ '''
70599
+ result = self._values.get("export_to_excel_in_scheduled_reports")
70600
+ return typing.cast(typing.Optional[builtins.str], result)
70601
+
70602
+ @builtins.property
70603
+ def export_to_pdf(self) -> typing.Optional[builtins.str]:
70604
+ '''The ability to export to PDF files from the UI.
70605
+
70606
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttopdf
70607
+ '''
70608
+ result = self._values.get("export_to_pdf")
70609
+ return typing.cast(typing.Optional[builtins.str], result)
70610
+
70611
+ @builtins.property
70612
+ def export_to_pdf_in_scheduled_reports(self) -> typing.Optional[builtins.str]:
70613
+ '''The ability to export to PDF files in scheduled email reports.
70614
+
70615
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttopdfinscheduledreports
70616
+ '''
70617
+ result = self._values.get("export_to_pdf_in_scheduled_reports")
70618
+ return typing.cast(typing.Optional[builtins.str], result)
70619
+
70620
+ @builtins.property
70621
+ def include_content_in_scheduled_reports_email(
70622
+ self,
70623
+ ) -> typing.Optional[builtins.str]:
70624
+ '''The ability to include content in scheduled email reports.
70625
+
70626
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-includecontentinscheduledreportsemail
70627
+ '''
70628
+ result = self._values.get("include_content_in_scheduled_reports_email")
70629
+ return typing.cast(typing.Optional[builtins.str], result)
70630
+
70631
+ @builtins.property
70632
+ def print_reports(self) -> typing.Optional[builtins.str]:
70633
+ '''The ability to print reports.
70634
+
70635
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-printreports
70636
+ '''
70637
+ result = self._values.get("print_reports")
70638
+ return typing.cast(typing.Optional[builtins.str], result)
70639
+
70536
70640
  @builtins.property
70537
70641
  def rename_shared_folders(self) -> typing.Optional[builtins.str]:
70538
70642
  '''The ability to rename shared folders.
@@ -70658,7 +70762,13 @@ class CfnCustomPermissionsProps:
70658
70762
  create_shared_folders="createSharedFolders",
70659
70763
  create_spice_dataset="createSpiceDataset",
70660
70764
  export_to_csv="exportToCsv",
70765
+ export_to_csv_in_scheduled_reports="exportToCsvInScheduledReports",
70661
70766
  export_to_excel="exportToExcel",
70767
+ export_to_excel_in_scheduled_reports="exportToExcelInScheduledReports",
70768
+ export_to_pdf="exportToPdf",
70769
+ export_to_pdf_in_scheduled_reports="exportToPdfInScheduledReports",
70770
+ include_content_in_scheduled_reports_email="includeContentInScheduledReportsEmail",
70771
+ print_reports="printReports",
70662
70772
  rename_shared_folders="renameSharedFolders",
70663
70773
  share_analyses="shareAnalyses",
70664
70774
  share_dashboards="shareDashboards",
@@ -89687,7 +89797,7 @@ class CfnDashboard(
89687
89797
  *,
89688
89798
  availability_status: typing.Optional[builtins.str] = None,
89689
89799
  ) -> None:
89690
- '''Enable/disable visual-level downloads option.
89800
+ '''Export to .csv option.
89691
89801
 
89692
89802
  :param availability_status: Availability status.
89693
89803
 
@@ -148187,7 +148297,10 @@ class CfnDataSource(
148187
148297
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
148188
148298
  database="database",
148189
148299
  host="host",
148190
- port=123
148300
+ port=123,
148301
+
148302
+ # the properties below are optional
148303
+ use_service_name=False
148191
148304
  ),
148192
148305
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
148193
148306
  database="database",
@@ -148337,7 +148450,10 @@ class CfnDataSource(
148337
148450
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
148338
148451
  database="database",
148339
148452
  host="host",
148340
- port=123
148453
+ port=123,
148454
+
148455
+ # the properties below are optional
148456
+ use_service_name=False
148341
148457
  ),
148342
148458
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
148343
148459
  database="database",
@@ -148483,7 +148599,10 @@ class CfnDataSource(
148483
148599
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
148484
148600
  database="database",
148485
148601
  host="host",
148486
- port=123
148602
+ port=123,
148603
+
148604
+ # the properties below are optional
148605
+ use_service_name=False
148487
148606
  ),
148488
148607
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
148489
148608
  database="database",
@@ -149380,7 +149499,10 @@ class CfnDataSource(
149380
149499
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
149381
149500
  database="database",
149382
149501
  host="host",
149383
- port=123
149502
+ port=123,
149503
+
149504
+ # the properties below are optional
149505
+ use_service_name=False
149384
149506
  ),
149385
149507
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
149386
149508
  database="database",
@@ -149621,7 +149743,10 @@ class CfnDataSource(
149621
149743
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
149622
149744
  database="database",
149623
149745
  host="host",
149624
- port=123
149746
+ port=123,
149747
+
149748
+ # the properties below are optional
149749
+ use_service_name=False
149625
149750
  ),
149626
149751
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
149627
149752
  database="database",
@@ -149979,7 +150104,10 @@ class CfnDataSource(
149979
150104
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
149980
150105
  database="database",
149981
150106
  host="host",
149982
- port=123
150107
+ port=123,
150108
+
150109
+ # the properties below are optional
150110
+ use_service_name=False
149983
150111
  ),
149984
150112
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
149985
150113
  database="database",
@@ -150885,7 +151013,12 @@ class CfnDataSource(
150885
151013
  @jsii.data_type(
150886
151014
  jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.OracleParametersProperty",
150887
151015
  jsii_struct_bases=[],
150888
- name_mapping={"database": "database", "host": "host", "port": "port"},
151016
+ name_mapping={
151017
+ "database": "database",
151018
+ "host": "host",
151019
+ "port": "port",
151020
+ "use_service_name": "useServiceName",
151021
+ },
150889
151022
  )
150890
151023
  class OracleParametersProperty:
150891
151024
  def __init__(
@@ -150894,12 +151027,14 @@ class CfnDataSource(
150894
151027
  database: builtins.str,
150895
151028
  host: builtins.str,
150896
151029
  port: jsii.Number,
151030
+ use_service_name: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
150897
151031
  ) -> None:
150898
151032
  '''Oracle parameters.
150899
151033
 
150900
151034
  :param database: Database.
150901
151035
  :param host: Host.
150902
151036
  :param port: Port. Default: - 0
151037
+ :param use_service_name: Default: - false
150903
151038
 
150904
151039
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html
150905
151040
  :exampleMetadata: fixture=_generated
@@ -150913,7 +151048,10 @@ class CfnDataSource(
150913
151048
  oracle_parameters_property = quicksight.CfnDataSource.OracleParametersProperty(
150914
151049
  database="database",
150915
151050
  host="host",
150916
- port=123
151051
+ port=123,
151052
+
151053
+ # the properties below are optional
151054
+ use_service_name=False
150917
151055
  )
150918
151056
  '''
150919
151057
  if __debug__:
@@ -150921,11 +151059,14 @@ class CfnDataSource(
150921
151059
  check_type(argname="argument database", value=database, expected_type=type_hints["database"])
150922
151060
  check_type(argname="argument host", value=host, expected_type=type_hints["host"])
150923
151061
  check_type(argname="argument port", value=port, expected_type=type_hints["port"])
151062
+ check_type(argname="argument use_service_name", value=use_service_name, expected_type=type_hints["use_service_name"])
150924
151063
  self._values: typing.Dict[builtins.str, typing.Any] = {
150925
151064
  "database": database,
150926
151065
  "host": host,
150927
151066
  "port": port,
150928
151067
  }
151068
+ if use_service_name is not None:
151069
+ self._values["use_service_name"] = use_service_name
150929
151070
 
150930
151071
  @builtins.property
150931
151072
  def database(self) -> builtins.str:
@@ -150959,6 +151100,18 @@ class CfnDataSource(
150959
151100
  assert result is not None, "Required property 'port' is missing"
150960
151101
  return typing.cast(jsii.Number, result)
150961
151102
 
151103
+ @builtins.property
151104
+ def use_service_name(
151105
+ self,
151106
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
151107
+ '''
151108
+ :default: - false
151109
+
151110
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html#cfn-quicksight-datasource-oracleparameters-useservicename
151111
+ '''
151112
+ result = self._values.get("use_service_name")
151113
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
151114
+
150962
151115
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
150963
151116
  return isinstance(rhs, self.__class__) and rhs._values == self._values
150964
151117
 
@@ -152560,7 +152713,10 @@ class CfnDataSourceProps:
152560
152713
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
152561
152714
  database="database",
152562
152715
  host="host",
152563
- port=123
152716
+ port=123,
152717
+
152718
+ # the properties below are optional
152719
+ use_service_name=False
152564
152720
  ),
152565
152721
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
152566
152722
  database="database",
@@ -152710,7 +152866,10 @@ class CfnDataSourceProps:
152710
152866
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
152711
152867
  database="database",
152712
152868
  host="host",
152713
- port=123
152869
+ port=123,
152870
+
152871
+ # the properties below are optional
152872
+ use_service_name=False
152714
152873
  ),
152715
152874
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
152716
152875
  database="database",
@@ -152856,7 +153015,10 @@ class CfnDataSourceProps:
152856
153015
  oracle_parameters=quicksight.CfnDataSource.OracleParametersProperty(
152857
153016
  database="database",
152858
153017
  host="host",
152859
- port=123
153018
+ port=123,
153019
+
153020
+ # the properties below are optional
153021
+ use_service_name=False
152860
153022
  ),
152861
153023
  postgre_sql_parameters=quicksight.CfnDataSource.PostgreSqlParametersProperty(
152862
153024
  database="database",
@@ -232742,7 +232904,13 @@ def _typecheckingstub__009751171d18f139beacd68aa2642defd546c981229603196499b5afa
232742
232904
  create_shared_folders: typing.Optional[builtins.str] = None,
232743
232905
  create_spice_dataset: typing.Optional[builtins.str] = None,
232744
232906
  export_to_csv: typing.Optional[builtins.str] = None,
232907
+ export_to_csv_in_scheduled_reports: typing.Optional[builtins.str] = None,
232745
232908
  export_to_excel: typing.Optional[builtins.str] = None,
232909
+ export_to_excel_in_scheduled_reports: typing.Optional[builtins.str] = None,
232910
+ export_to_pdf: typing.Optional[builtins.str] = None,
232911
+ export_to_pdf_in_scheduled_reports: typing.Optional[builtins.str] = None,
232912
+ include_content_in_scheduled_reports_email: typing.Optional[builtins.str] = None,
232913
+ print_reports: typing.Optional[builtins.str] = None,
232746
232914
  rename_shared_folders: typing.Optional[builtins.str] = None,
232747
232915
  share_analyses: typing.Optional[builtins.str] = None,
232748
232916
  share_dashboards: typing.Optional[builtins.str] = None,
@@ -239072,6 +239240,7 @@ def _typecheckingstub__bf876de431aaf56f73ba4abd947cffbe8be9feb3c6a773f4c8d14cbb6
239072
239240
  database: builtins.str,
239073
239241
  host: builtins.str,
239074
239242
  port: jsii.Number,
239243
+ use_service_name: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
239075
239244
  ) -> None:
239076
239245
  """Type checking stubs"""
239077
239246
  pass