aws-cdk-lib 2.140.0__py3-none-any.whl → 2.142.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 (49) hide show
  1. aws_cdk/__init__.py +9 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.140.0.jsii.tgz → aws-cdk-lib@2.142.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_appsync/__init__.py +224 -94
  5. aws_cdk/aws_autoscaling/__init__.py +109 -25
  6. aws_cdk/aws_bedrock/__init__.py +51 -41
  7. aws_cdk/aws_cloudfront/__init__.py +34 -78
  8. aws_cdk/aws_cloudtrail/__init__.py +13 -4
  9. aws_cdk/aws_codepipeline/__init__.py +364 -27
  10. aws_cdk/aws_connectcampaigns/__init__.py +2 -2
  11. aws_cdk/aws_datasync/__init__.py +51 -56
  12. aws_cdk/aws_docdb/__init__.py +181 -4
  13. aws_cdk/aws_dynamodb/__init__.py +410 -0
  14. aws_cdk/aws_ec2/__init__.py +91 -42
  15. aws_cdk/aws_ecr/__init__.py +32 -7
  16. aws_cdk/aws_ecs/__init__.py +65 -18
  17. aws_cdk/aws_eks/__init__.py +36 -3
  18. aws_cdk/aws_entityresolution/__init__.py +6 -2
  19. aws_cdk/aws_events/__init__.py +46 -25
  20. aws_cdk/aws_events_targets/__init__.py +341 -0
  21. aws_cdk/aws_fms/__init__.py +7 -7
  22. aws_cdk/aws_gamelift/__init__.py +261 -160
  23. aws_cdk/aws_iam/__init__.py +13 -8
  24. aws_cdk/aws_ivs/__init__.py +1 -3
  25. aws_cdk/aws_kms/__init__.py +11 -5
  26. aws_cdk/aws_lambda_nodejs/__init__.py +3 -0
  27. aws_cdk/aws_location/__init__.py +8 -4
  28. aws_cdk/aws_logs/__init__.py +6 -6
  29. aws_cdk/aws_oam/__init__.py +45 -11
  30. aws_cdk/aws_omics/__init__.py +4 -4
  31. aws_cdk/aws_paymentcryptography/__init__.py +128 -48
  32. aws_cdk/aws_pinpoint/__init__.py +7 -5
  33. aws_cdk/aws_qbusiness/__init__.py +620 -294
  34. aws_cdk/aws_quicksight/__init__.py +103 -40
  35. aws_cdk/aws_rds/__init__.py +80 -16
  36. aws_cdk/aws_route53profiles/__init__.py +49 -49
  37. aws_cdk/aws_s3/__init__.py +9 -2
  38. aws_cdk/aws_sagemaker/__init__.py +30 -30
  39. aws_cdk/aws_servicecatalog/__init__.py +27 -4
  40. aws_cdk/aws_ses/__init__.py +9 -9
  41. aws_cdk/aws_stepfunctions_tasks/__init__.py +7 -6
  42. aws_cdk/aws_transfer/__init__.py +4 -4
  43. aws_cdk/aws_voiceid/__init__.py +2 -2
  44. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/METADATA +10 -2
  45. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/RECORD +49 -49
  46. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/LICENSE +0 -0
  47. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/NOTICE +0 -0
  48. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/WHEEL +0 -0
  49. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.142.0.dist-info}/top_level.txt +0 -0
@@ -63781,8 +63781,9 @@ class CfnAnalysis(
63781
63781
  *,
63782
63782
  group_color_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.WaterfallChartGroupColorConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
63783
63783
  ) -> None:
63784
- '''
63785
- :param group_color_configuration:
63784
+ '''The color configuration of a waterfall visual.
63785
+
63786
+ :param group_color_configuration: The color configuration for individual groups within a waterfall visual.
63786
63787
 
63787
63788
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartcolorconfiguration.html
63788
63789
  :exampleMetadata: fixture=_generated
@@ -63812,7 +63813,8 @@ class CfnAnalysis(
63812
63813
  def group_color_configuration(
63813
63814
  self,
63814
63815
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.WaterfallChartGroupColorConfigurationProperty"]]:
63815
- '''
63816
+ '''The color configuration for individual groups within a waterfall visual.
63817
+
63816
63818
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartcolorconfiguration.html#cfn-quicksight-analysis-waterfallchartcolorconfiguration-groupcolorconfiguration
63817
63819
  '''
63818
63820
  result = self._values.get("group_color_configuration")
@@ -63866,7 +63868,7 @@ class CfnAnalysis(
63866
63868
 
63867
63869
  :param category_axis_display_options: The options that determine the presentation of the category axis.
63868
63870
  :param category_axis_label_options: The options that determine the presentation of the category axis label.
63869
- :param color_configuration:
63871
+ :param color_configuration: The color configuration of a waterfall visual.
63870
63872
  :param data_labels: The data label configuration of a waterfall visual.
63871
63873
  :param field_wells: The field well configuration of a waterfall visual.
63872
63874
  :param legend: The legend configuration of a waterfall visual.
@@ -63946,7 +63948,8 @@ class CfnAnalysis(
63946
63948
  def color_configuration(
63947
63949
  self,
63948
63950
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.WaterfallChartColorConfigurationProperty"]]:
63949
- '''
63951
+ '''The color configuration of a waterfall visual.
63952
+
63950
63953
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartconfiguration.html#cfn-quicksight-analysis-waterfallchartconfiguration-colorconfiguration
63951
63954
  '''
63952
63955
  result = self._values.get("color_configuration")
@@ -64121,10 +64124,11 @@ class CfnAnalysis(
64121
64124
  positive_bar_color: typing.Optional[builtins.str] = None,
64122
64125
  total_bar_color: typing.Optional[builtins.str] = None,
64123
64126
  ) -> None:
64124
- '''
64125
- :param negative_bar_color:
64126
- :param positive_bar_color:
64127
- :param total_bar_color:
64127
+ '''The color configuration for individual groups within a waterfall visual.
64128
+
64129
+ :param negative_bar_color: Defines the color for the negative bars of a waterfall chart.
64130
+ :param positive_bar_color: Defines the color for the positive bars of a waterfall chart.
64131
+ :param total_bar_color: Defines the color for the total bars of a waterfall chart.
64128
64132
 
64129
64133
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartgroupcolorconfiguration.html
64130
64134
  :exampleMetadata: fixture=_generated
@@ -64156,7 +64160,8 @@ class CfnAnalysis(
64156
64160
 
64157
64161
  @builtins.property
64158
64162
  def negative_bar_color(self) -> typing.Optional[builtins.str]:
64159
- '''
64163
+ '''Defines the color for the negative bars of a waterfall chart.
64164
+
64160
64165
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-analysis-waterfallchartgroupcolorconfiguration-negativebarcolor
64161
64166
  '''
64162
64167
  result = self._values.get("negative_bar_color")
@@ -64164,7 +64169,8 @@ class CfnAnalysis(
64164
64169
 
64165
64170
  @builtins.property
64166
64171
  def positive_bar_color(self) -> typing.Optional[builtins.str]:
64167
- '''
64172
+ '''Defines the color for the positive bars of a waterfall chart.
64173
+
64168
64174
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-analysis-waterfallchartgroupcolorconfiguration-positivebarcolor
64169
64175
  '''
64170
64176
  result = self._values.get("positive_bar_color")
@@ -64172,7 +64178,8 @@ class CfnAnalysis(
64172
64178
 
64173
64179
  @builtins.property
64174
64180
  def total_bar_color(self) -> typing.Optional[builtins.str]:
64175
- '''
64181
+ '''Defines the color for the total bars of a waterfall chart.
64182
+
64176
64183
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-analysis-waterfallchartgroupcolorconfiguration-totalbarcolor
64177
64184
  '''
64178
64185
  result = self._values.get("total_bar_color")
@@ -131545,8 +131552,9 @@ class CfnDashboard(
131545
131552
  *,
131546
131553
  group_color_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.WaterfallChartGroupColorConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
131547
131554
  ) -> None:
131548
- '''
131549
- :param group_color_configuration:
131555
+ '''The color configuration of a waterfall visual.
131556
+
131557
+ :param group_color_configuration: The color configuration for individual groups within a waterfall visual.
131550
131558
 
131551
131559
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartcolorconfiguration.html
131552
131560
  :exampleMetadata: fixture=_generated
@@ -131576,7 +131584,8 @@ class CfnDashboard(
131576
131584
  def group_color_configuration(
131577
131585
  self,
131578
131586
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.WaterfallChartGroupColorConfigurationProperty"]]:
131579
- '''
131587
+ '''The color configuration for individual groups within a waterfall visual.
131588
+
131580
131589
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartcolorconfiguration.html#cfn-quicksight-dashboard-waterfallchartcolorconfiguration-groupcolorconfiguration
131581
131590
  '''
131582
131591
  result = self._values.get("group_color_configuration")
@@ -131630,7 +131639,7 @@ class CfnDashboard(
131630
131639
 
131631
131640
  :param category_axis_display_options: The options that determine the presentation of the category axis.
131632
131641
  :param category_axis_label_options: The options that determine the presentation of the category axis label.
131633
- :param color_configuration:
131642
+ :param color_configuration: The color configuration of a waterfall visual.
131634
131643
  :param data_labels: The data label configuration of a waterfall visual.
131635
131644
  :param field_wells: The field well configuration of a waterfall visual.
131636
131645
  :param legend: The legend configuration of a waterfall visual.
@@ -131710,7 +131719,8 @@ class CfnDashboard(
131710
131719
  def color_configuration(
131711
131720
  self,
131712
131721
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.WaterfallChartColorConfigurationProperty"]]:
131713
- '''
131722
+ '''The color configuration of a waterfall visual.
131723
+
131714
131724
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartconfiguration.html#cfn-quicksight-dashboard-waterfallchartconfiguration-colorconfiguration
131715
131725
  '''
131716
131726
  result = self._values.get("color_configuration")
@@ -131885,10 +131895,11 @@ class CfnDashboard(
131885
131895
  positive_bar_color: typing.Optional[builtins.str] = None,
131886
131896
  total_bar_color: typing.Optional[builtins.str] = None,
131887
131897
  ) -> None:
131888
- '''
131889
- :param negative_bar_color:
131890
- :param positive_bar_color:
131891
- :param total_bar_color:
131898
+ '''The color configuration for individual groups within a waterfall visual.
131899
+
131900
+ :param negative_bar_color: Defines the color for the negative bars of a waterfall chart.
131901
+ :param positive_bar_color: Defines the color for the positive bars of a waterfall chart.
131902
+ :param total_bar_color: Defines the color for the total bars of a waterfall chart.
131892
131903
 
131893
131904
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartgroupcolorconfiguration.html
131894
131905
  :exampleMetadata: fixture=_generated
@@ -131920,7 +131931,8 @@ class CfnDashboard(
131920
131931
 
131921
131932
  @builtins.property
131922
131933
  def negative_bar_color(self) -> typing.Optional[builtins.str]:
131923
- '''
131934
+ '''Defines the color for the negative bars of a waterfall chart.
131935
+
131924
131936
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-dashboard-waterfallchartgroupcolorconfiguration-negativebarcolor
131925
131937
  '''
131926
131938
  result = self._values.get("negative_bar_color")
@@ -131928,7 +131940,8 @@ class CfnDashboard(
131928
131940
 
131929
131941
  @builtins.property
131930
131942
  def positive_bar_color(self) -> typing.Optional[builtins.str]:
131931
- '''
131943
+ '''Defines the color for the positive bars of a waterfall chart.
131944
+
131932
131945
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-dashboard-waterfallchartgroupcolorconfiguration-positivebarcolor
131933
131946
  '''
131934
131947
  result = self._values.get("positive_bar_color")
@@ -131936,7 +131949,8 @@ class CfnDashboard(
131936
131949
 
131937
131950
  @builtins.property
131938
131951
  def total_bar_color(self) -> typing.Optional[builtins.str]:
131939
- '''
131952
+ '''Defines the color for the total bars of a waterfall chart.
131953
+
131940
131954
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-dashboard-waterfallchartgroupcolorconfiguration-totalbarcolor
131941
131955
  '''
131942
131956
  result = self._values.get("total_bar_color")
@@ -208620,8 +208634,9 @@ class CfnTemplate(
208620
208634
  *,
208621
208635
  group_color_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.WaterfallChartGroupColorConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
208622
208636
  ) -> None:
208623
- '''
208624
- :param group_color_configuration:
208637
+ '''The color configuration of a waterfall visual.
208638
+
208639
+ :param group_color_configuration: The color configuration for individual groups within a waterfall visual.
208625
208640
 
208626
208641
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartcolorconfiguration.html
208627
208642
  :exampleMetadata: fixture=_generated
@@ -208651,7 +208666,8 @@ class CfnTemplate(
208651
208666
  def group_color_configuration(
208652
208667
  self,
208653
208668
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.WaterfallChartGroupColorConfigurationProperty"]]:
208654
- '''
208669
+ '''The color configuration for individual groups within a waterfall visual.
208670
+
208655
208671
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartcolorconfiguration.html#cfn-quicksight-template-waterfallchartcolorconfiguration-groupcolorconfiguration
208656
208672
  '''
208657
208673
  result = self._values.get("group_color_configuration")
@@ -208705,7 +208721,7 @@ class CfnTemplate(
208705
208721
 
208706
208722
  :param category_axis_display_options: The options that determine the presentation of the category axis.
208707
208723
  :param category_axis_label_options: The options that determine the presentation of the category axis label.
208708
- :param color_configuration:
208724
+ :param color_configuration: The color configuration of a waterfall visual.
208709
208725
  :param data_labels: The data label configuration of a waterfall visual.
208710
208726
  :param field_wells: The field well configuration of a waterfall visual.
208711
208727
  :param legend: The legend configuration of a waterfall visual.
@@ -208785,7 +208801,8 @@ class CfnTemplate(
208785
208801
  def color_configuration(
208786
208802
  self,
208787
208803
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.WaterfallChartColorConfigurationProperty"]]:
208788
- '''
208804
+ '''The color configuration of a waterfall visual.
208805
+
208789
208806
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartconfiguration.html#cfn-quicksight-template-waterfallchartconfiguration-colorconfiguration
208790
208807
  '''
208791
208808
  result = self._values.get("color_configuration")
@@ -208960,10 +208977,11 @@ class CfnTemplate(
208960
208977
  positive_bar_color: typing.Optional[builtins.str] = None,
208961
208978
  total_bar_color: typing.Optional[builtins.str] = None,
208962
208979
  ) -> None:
208963
- '''
208964
- :param negative_bar_color:
208965
- :param positive_bar_color:
208966
- :param total_bar_color:
208980
+ '''The color configuration for individual groups within a waterfall visual.
208981
+
208982
+ :param negative_bar_color: Defines the color for the negative bars of a waterfall chart.
208983
+ :param positive_bar_color: Defines the color for the positive bars of a waterfall chart.
208984
+ :param total_bar_color: Defines the color for the total bars of a waterfall chart.
208967
208985
 
208968
208986
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartgroupcolorconfiguration.html
208969
208987
  :exampleMetadata: fixture=_generated
@@ -208995,7 +209013,8 @@ class CfnTemplate(
208995
209013
 
208996
209014
  @builtins.property
208997
209015
  def negative_bar_color(self) -> typing.Optional[builtins.str]:
208998
- '''
209016
+ '''Defines the color for the negative bars of a waterfall chart.
209017
+
208999
209018
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-template-waterfallchartgroupcolorconfiguration-negativebarcolor
209000
209019
  '''
209001
209020
  result = self._values.get("negative_bar_color")
@@ -209003,7 +209022,8 @@ class CfnTemplate(
209003
209022
 
209004
209023
  @builtins.property
209005
209024
  def positive_bar_color(self) -> typing.Optional[builtins.str]:
209006
- '''
209025
+ '''Defines the color for the positive bars of a waterfall chart.
209026
+
209007
209027
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-template-waterfallchartgroupcolorconfiguration-positivebarcolor
209008
209028
  '''
209009
209029
  result = self._values.get("positive_bar_color")
@@ -209011,7 +209031,8 @@ class CfnTemplate(
209011
209031
 
209012
209032
  @builtins.property
209013
209033
  def total_bar_color(self) -> typing.Optional[builtins.str]:
209014
- '''
209034
+ '''Defines the color for the total bars of a waterfall chart.
209035
+
209015
209036
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartgroupcolorconfiguration.html#cfn-quicksight-template-waterfallchartgroupcolorconfiguration-totalbarcolor
209016
209037
  '''
209017
209038
  result = self._values.get("total_bar_color")
@@ -213457,6 +213478,7 @@ class CfnTopic(
213457
213478
  use_grouping=False
213458
213479
  )
213459
213480
  ),
213481
+ disable_indexing=False,
213460
213482
  is_included_in_topic=False,
213461
213483
  never_aggregate_in_filter=False,
213462
213484
  non_additive=False,
@@ -213513,6 +213535,7 @@ class CfnTopic(
213513
213535
  use_grouping=False
213514
213536
  )
213515
213537
  ),
213538
+ disable_indexing=False,
213516
213539
  is_included_in_topic=False,
213517
213540
  never_aggregate_in_filter=False,
213518
213541
  non_additive=False,
@@ -213648,7 +213671,7 @@ class CfnTopic(
213648
213671
  :param description: The description of the topic.
213649
213672
  :param name: The name of the topic.
213650
213673
  :param topic_id: The ID for the topic. This ID is unique per AWS Region for each AWS account.
213651
- :param user_experience_version: The user experience version of a topic.
213674
+ :param user_experience_version: The user experience version of the topic.
213652
213675
  '''
213653
213676
  if __debug__:
213654
213677
  type_hints = typing.get_type_hints(_typecheckingstub__e98a54c810cd62780e1f968a0f83f854bc8baac07e43fc099f3f81b062d8e088)
@@ -213782,7 +213805,7 @@ class CfnTopic(
213782
213805
  @builtins.property
213783
213806
  @jsii.member(jsii_name="userExperienceVersion")
213784
213807
  def user_experience_version(self) -> typing.Optional[builtins.str]:
213785
- '''The user experience version of a topic.'''
213808
+ '''The user experience version of the topic.'''
213786
213809
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "userExperienceVersion"))
213787
213810
 
213788
213811
  @user_experience_version.setter
@@ -214173,6 +214196,7 @@ class CfnTopic(
214173
214196
  use_grouping=False
214174
214197
  )
214175
214198
  ),
214199
+ disable_indexing=False,
214176
214200
  is_included_in_topic=False,
214177
214201
  never_aggregate_in_filter=False,
214178
214202
  non_additive=False,
@@ -214229,6 +214253,7 @@ class CfnTopic(
214229
214253
  use_grouping=False
214230
214254
  )
214231
214255
  ),
214256
+ disable_indexing=False,
214232
214257
  is_included_in_topic=False,
214233
214258
  never_aggregate_in_filter=False,
214234
214259
  non_additive=False,
@@ -215422,6 +215447,7 @@ class CfnTopic(
215422
215447
  "column_data_role": "columnDataRole",
215423
215448
  "comparative_order": "comparativeOrder",
215424
215449
  "default_formatting": "defaultFormatting",
215450
+ "disable_indexing": "disableIndexing",
215425
215451
  "is_included_in_topic": "isIncludedInTopic",
215426
215452
  "never_aggregate_in_filter": "neverAggregateInFilter",
215427
215453
  "non_additive": "nonAdditive",
@@ -215444,6 +215470,7 @@ class CfnTopic(
215444
215470
  column_data_role: typing.Optional[builtins.str] = None,
215445
215471
  comparative_order: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.ComparativeOrderProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
215446
215472
  default_formatting: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.DefaultFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
215473
+ disable_indexing: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
215447
215474
  is_included_in_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
215448
215475
  never_aggregate_in_filter: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
215449
215476
  non_additive: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -215463,6 +215490,7 @@ class CfnTopic(
215463
215490
  :param column_data_role: The column data role for a calculated field. Valid values for this structure are ``DIMENSION`` and ``MEASURE`` .
215464
215491
  :param comparative_order: The order in which data is displayed for the calculated field when it's used in a comparative context.
215465
215492
  :param default_formatting: The default formatting definition.
215493
+ :param disable_indexing:
215466
215494
  :param is_included_in_topic: A boolean value that indicates if a calculated field is included in the topic. Default: - false
215467
215495
  :param never_aggregate_in_filter: A Boolean value that indicates whether to never aggregate calculated field in filters. Default: - false
215468
215496
  :param non_additive: The non additive for the table style target. Default: - false
@@ -215518,6 +215546,7 @@ class CfnTopic(
215518
215546
  use_grouping=False
215519
215547
  )
215520
215548
  ),
215549
+ disable_indexing=False,
215521
215550
  is_included_in_topic=False,
215522
215551
  never_aggregate_in_filter=False,
215523
215552
  non_additive=False,
@@ -215548,6 +215577,7 @@ class CfnTopic(
215548
215577
  check_type(argname="argument column_data_role", value=column_data_role, expected_type=type_hints["column_data_role"])
215549
215578
  check_type(argname="argument comparative_order", value=comparative_order, expected_type=type_hints["comparative_order"])
215550
215579
  check_type(argname="argument default_formatting", value=default_formatting, expected_type=type_hints["default_formatting"])
215580
+ check_type(argname="argument disable_indexing", value=disable_indexing, expected_type=type_hints["disable_indexing"])
215551
215581
  check_type(argname="argument is_included_in_topic", value=is_included_in_topic, expected_type=type_hints["is_included_in_topic"])
215552
215582
  check_type(argname="argument never_aggregate_in_filter", value=never_aggregate_in_filter, expected_type=type_hints["never_aggregate_in_filter"])
215553
215583
  check_type(argname="argument non_additive", value=non_additive, expected_type=type_hints["non_additive"])
@@ -215574,6 +215604,8 @@ class CfnTopic(
215574
215604
  self._values["comparative_order"] = comparative_order
215575
215605
  if default_formatting is not None:
215576
215606
  self._values["default_formatting"] = default_formatting
215607
+ if disable_indexing is not None:
215608
+ self._values["disable_indexing"] = disable_indexing
215577
215609
  if is_included_in_topic is not None:
215578
215610
  self._values["is_included_in_topic"] = is_included_in_topic
215579
215611
  if never_aggregate_in_filter is not None:
@@ -215693,6 +215725,16 @@ class CfnTopic(
215693
215725
  result = self._values.get("default_formatting")
215694
215726
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTopic.DefaultFormattingProperty"]], result)
215695
215727
 
215728
+ @builtins.property
215729
+ def disable_indexing(
215730
+ self,
215731
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
215732
+ '''
215733
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-topiccalculatedfield.html#cfn-quicksight-topic-topiccalculatedfield-disableindexing
215734
+ '''
215735
+ result = self._values.get("disable_indexing")
215736
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
215737
+
215696
215738
  @builtins.property
215697
215739
  def is_included_in_topic(
215698
215740
  self,
@@ -216010,6 +216052,7 @@ class CfnTopic(
216010
216052
  "column_synonyms": "columnSynonyms",
216011
216053
  "comparative_order": "comparativeOrder",
216012
216054
  "default_formatting": "defaultFormatting",
216055
+ "disable_indexing": "disableIndexing",
216013
216056
  "is_included_in_topic": "isIncludedInTopic",
216014
216057
  "never_aggregate_in_filter": "neverAggregateInFilter",
216015
216058
  "non_additive": "nonAdditive",
@@ -216032,6 +216075,7 @@ class CfnTopic(
216032
216075
  column_synonyms: typing.Optional[typing.Sequence[builtins.str]] = None,
216033
216076
  comparative_order: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.ComparativeOrderProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
216034
216077
  default_formatting: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.DefaultFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
216078
+ disable_indexing: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
216035
216079
  is_included_in_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
216036
216080
  never_aggregate_in_filter: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
216037
216081
  non_additive: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -216051,6 +216095,7 @@ class CfnTopic(
216051
216095
  :param column_synonyms: The other names or aliases for the column.
216052
216096
  :param comparative_order: The order in which data is displayed for the column when it's used in a comparative context.
216053
216097
  :param default_formatting: The default formatting used for values in the column.
216098
+ :param disable_indexing:
216054
216099
  :param is_included_in_topic: A Boolean value that indicates whether the column is included in the query results. Default: - false
216055
216100
  :param never_aggregate_in_filter: A Boolean value that indicates whether to aggregate the column data when it's used in a filter context. Default: - false
216056
216101
  :param non_additive: The non additive value for the column. Default: - false
@@ -216106,6 +216151,7 @@ class CfnTopic(
216106
216151
  use_grouping=False
216107
216152
  )
216108
216153
  ),
216154
+ disable_indexing=False,
216109
216155
  is_included_in_topic=False,
216110
216156
  never_aggregate_in_filter=False,
216111
216157
  non_additive=False,
@@ -216136,6 +216182,7 @@ class CfnTopic(
216136
216182
  check_type(argname="argument column_synonyms", value=column_synonyms, expected_type=type_hints["column_synonyms"])
216137
216183
  check_type(argname="argument comparative_order", value=comparative_order, expected_type=type_hints["comparative_order"])
216138
216184
  check_type(argname="argument default_formatting", value=default_formatting, expected_type=type_hints["default_formatting"])
216185
+ check_type(argname="argument disable_indexing", value=disable_indexing, expected_type=type_hints["disable_indexing"])
216139
216186
  check_type(argname="argument is_included_in_topic", value=is_included_in_topic, expected_type=type_hints["is_included_in_topic"])
216140
216187
  check_type(argname="argument never_aggregate_in_filter", value=never_aggregate_in_filter, expected_type=type_hints["never_aggregate_in_filter"])
216141
216188
  check_type(argname="argument non_additive", value=non_additive, expected_type=type_hints["non_additive"])
@@ -216163,6 +216210,8 @@ class CfnTopic(
216163
216210
  self._values["comparative_order"] = comparative_order
216164
216211
  if default_formatting is not None:
216165
216212
  self._values["default_formatting"] = default_formatting
216213
+ if disable_indexing is not None:
216214
+ self._values["disable_indexing"] = disable_indexing
216166
216215
  if is_included_in_topic is not None:
216167
216216
  self._values["is_included_in_topic"] = is_included_in_topic
216168
216217
  if never_aggregate_in_filter is not None:
@@ -216277,6 +216326,16 @@ class CfnTopic(
216277
216326
  result = self._values.get("default_formatting")
216278
216327
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTopic.DefaultFormattingProperty"]], result)
216279
216328
 
216329
+ @builtins.property
216330
+ def disable_indexing(
216331
+ self,
216332
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
216333
+ '''
216334
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-topiccolumn.html#cfn-quicksight-topic-topiccolumn-disableindexing
216335
+ '''
216336
+ result = self._values.get("disable_indexing")
216337
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
216338
+
216280
216339
  @builtins.property
216281
216340
  def is_included_in_topic(
216282
216341
  self,
@@ -217332,7 +217391,7 @@ class CfnTopicProps:
217332
217391
  :param description: The description of the topic.
217333
217392
  :param name: The name of the topic.
217334
217393
  :param topic_id: The ID for the topic. This ID is unique per AWS Region for each AWS account.
217335
- :param user_experience_version: The user experience version of a topic.
217394
+ :param user_experience_version: The user experience version of the topic.
217336
217395
 
217337
217396
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-topic.html
217338
217397
  :exampleMetadata: fixture=_generated
@@ -217388,6 +217447,7 @@ class CfnTopicProps:
217388
217447
  use_grouping=False
217389
217448
  )
217390
217449
  ),
217450
+ disable_indexing=False,
217391
217451
  is_included_in_topic=False,
217392
217452
  never_aggregate_in_filter=False,
217393
217453
  non_additive=False,
@@ -217444,6 +217504,7 @@ class CfnTopicProps:
217444
217504
  use_grouping=False
217445
217505
  )
217446
217506
  ),
217507
+ disable_indexing=False,
217447
217508
  is_included_in_topic=False,
217448
217509
  never_aggregate_in_filter=False,
217449
217510
  non_additive=False,
@@ -217631,7 +217692,7 @@ class CfnTopicProps:
217631
217692
 
217632
217693
  @builtins.property
217633
217694
  def user_experience_version(self) -> typing.Optional[builtins.str]:
217634
- '''The user experience version of a topic.
217695
+ '''The user experience version of the topic.
217635
217696
 
217636
217697
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-topic.html#cfn-quicksight-topic-userexperienceversion
217637
217698
  '''
@@ -233705,6 +233766,7 @@ def _typecheckingstub__fffafec4d96f73a0bb2382083323859061af993381915fddf09ecc78f
233705
233766
  column_data_role: typing.Optional[builtins.str] = None,
233706
233767
  comparative_order: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.ComparativeOrderProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
233707
233768
  default_formatting: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.DefaultFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
233769
+ disable_indexing: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
233708
233770
  is_included_in_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
233709
233771
  never_aggregate_in_filter: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
233710
233772
  non_additive: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
@@ -233746,6 +233808,7 @@ def _typecheckingstub__3a7e0dff07bd6260713cf650e291a6e355c22aa55f3c00636ee0c5360
233746
233808
  column_synonyms: typing.Optional[typing.Sequence[builtins.str]] = None,
233747
233809
  comparative_order: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.ComparativeOrderProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
233748
233810
  default_formatting: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.DefaultFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
233811
+ disable_indexing: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
233749
233812
  is_included_in_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
233750
233813
  never_aggregate_in_filter: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
233751
233814
  non_additive: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,