aws-cdk-lib 2.189.0__py3-none-any.whl → 2.190.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (53) hide show
  1. aws_cdk/__init__.py +16 -2
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.189.0.jsii.tgz → aws-cdk-lib@2.190.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +6 -6
  5. aws_cdk/aws_apigatewayv2/__init__.py +374 -6
  6. aws_cdk/aws_applicationautoscaling/__init__.py +16 -10
  7. aws_cdk/aws_applicationsignals/__init__.py +204 -31
  8. aws_cdk/aws_backup/__init__.py +0 -41
  9. aws_cdk/aws_batch/__init__.py +215 -0
  10. aws_cdk/aws_bedrock/__init__.py +287 -0
  11. aws_cdk/aws_cleanrooms/__init__.py +1392 -78
  12. aws_cdk/aws_cloudfront/__init__.py +1 -0
  13. aws_cdk/aws_cloudtrail/__init__.py +24 -26
  14. aws_cdk/aws_codebuild/__init__.py +59 -7
  15. aws_cdk/aws_dms/__init__.py +43 -0
  16. aws_cdk/aws_ec2/__init__.py +364 -30
  17. aws_cdk/aws_ecs/__init__.py +36 -5
  18. aws_cdk/aws_eks/__init__.py +2 -100
  19. aws_cdk/aws_elasticache/__init__.py +6 -11
  20. aws_cdk/aws_elasticloadbalancingv2/__init__.py +341 -0
  21. aws_cdk/aws_events/__init__.py +67 -13
  22. aws_cdk/aws_fsx/__init__.py +9 -21
  23. aws_cdk/aws_iam/__init__.py +1 -1
  24. aws_cdk/aws_iot/__init__.py +6 -6
  25. aws_cdk/aws_kafkaconnect/__init__.py +2 -2
  26. aws_cdk/aws_kinesis/__init__.py +44 -0
  27. aws_cdk/aws_lex/__init__.py +615 -39
  28. aws_cdk/aws_location/__init__.py +4 -4
  29. aws_cdk/aws_macie/__init__.py +14 -3
  30. aws_cdk/aws_memorydb/__init__.py +87 -0
  31. aws_cdk/aws_msk/__init__.py +226 -127
  32. aws_cdk/aws_neptune/__init__.py +0 -8
  33. aws_cdk/aws_opensearchservice/__init__.py +64 -56
  34. aws_cdk/aws_paymentcryptography/__init__.py +41 -0
  35. aws_cdk/aws_qbusiness/__init__.py +175 -3
  36. aws_cdk/aws_quicksight/__init__.py +393 -0
  37. aws_cdk/aws_rds/__init__.py +113 -120
  38. aws_cdk/aws_redshiftserverless/__init__.py +4 -14
  39. aws_cdk/aws_route53resolver/__init__.py +60 -9
  40. aws_cdk/aws_s3/__init__.py +34 -1
  41. aws_cdk/aws_s3_deployment/__init__.py +202 -5
  42. aws_cdk/aws_sagemaker/__init__.py +40 -40
  43. aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
  44. aws_cdk/aws_stepfunctions/__init__.py +720 -45
  45. aws_cdk/aws_transfer/__init__.py +55 -2
  46. aws_cdk/custom_resources/__init__.py +5 -5
  47. aws_cdk/pipelines/__init__.py +1 -2
  48. {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/METADATA +1 -1
  49. {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/RECORD +53 -53
  50. {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/LICENSE +0 -0
  51. {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/NOTICE +0 -0
  52. {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/WHEEL +0 -0
  53. {aws_cdk_lib-2.189.0.dist-info → aws_cdk_lib-2.190.0.dist-info}/top_level.txt +0 -0
@@ -60325,6 +60325,7 @@ class CfnAnalysis(
60325
60325
  "order": "order",
60326
60326
  "pinned_field_options": "pinnedFieldOptions",
60327
60327
  "selected_field_options": "selectedFieldOptions",
60328
+ "transposed_table_options": "transposedTableOptions",
60328
60329
  },
60329
60330
  )
60330
60331
  class TableFieldOptionsProperty:
@@ -60334,12 +60335,14 @@ class CfnAnalysis(
60334
60335
  order: typing.Optional[typing.Sequence[builtins.str]] = None,
60335
60336
  pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.TablePinnedFieldOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
60336
60337
  selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.TableFieldOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
60338
+ transposed_table_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.TransposedTableOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
60337
60339
  ) -> None:
60338
60340
  '''The field options of a table visual.
60339
60341
 
60340
60342
  :param order: The order of the field IDs that are configured as field options for a table visual.
60341
60343
  :param pinned_field_options: The settings for the pinned columns of a table visual.
60342
60344
  :param selected_field_options: The field options to be configured to a table.
60345
+ :param transposed_table_options: The ``TableOptions`` of a transposed table.
60343
60346
 
60344
60347
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablefieldoptions.html
60345
60348
  :exampleMetadata: fixture=_generated
@@ -60395,6 +60398,13 @@ class CfnAnalysis(
60395
60398
  ),
60396
60399
  visibility="visibility",
60397
60400
  width="width"
60401
+ )],
60402
+ transposed_table_options=[quicksight.CfnAnalysis.TransposedTableOptionProperty(
60403
+ column_type="columnType",
60404
+
60405
+ # the properties below are optional
60406
+ column_index=123,
60407
+ column_width="columnWidth"
60398
60408
  )]
60399
60409
  )
60400
60410
  '''
@@ -60403,6 +60413,7 @@ class CfnAnalysis(
60403
60413
  check_type(argname="argument order", value=order, expected_type=type_hints["order"])
60404
60414
  check_type(argname="argument pinned_field_options", value=pinned_field_options, expected_type=type_hints["pinned_field_options"])
60405
60415
  check_type(argname="argument selected_field_options", value=selected_field_options, expected_type=type_hints["selected_field_options"])
60416
+ check_type(argname="argument transposed_table_options", value=transposed_table_options, expected_type=type_hints["transposed_table_options"])
60406
60417
  self._values: typing.Dict[builtins.str, typing.Any] = {}
60407
60418
  if order is not None:
60408
60419
  self._values["order"] = order
@@ -60410,6 +60421,8 @@ class CfnAnalysis(
60410
60421
  self._values["pinned_field_options"] = pinned_field_options
60411
60422
  if selected_field_options is not None:
60412
60423
  self._values["selected_field_options"] = selected_field_options
60424
+ if transposed_table_options is not None:
60425
+ self._values["transposed_table_options"] = transposed_table_options
60413
60426
 
60414
60427
  @builtins.property
60415
60428
  def order(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -60442,6 +60455,17 @@ class CfnAnalysis(
60442
60455
  result = self._values.get("selected_field_options")
60443
60456
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.TableFieldOptionProperty"]]]], result)
60444
60457
 
60458
+ @builtins.property
60459
+ def transposed_table_options(
60460
+ self,
60461
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.TransposedTableOptionProperty"]]]]:
60462
+ '''The ``TableOptions`` of a transposed table.
60463
+
60464
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablefieldoptions.html#cfn-quicksight-analysis-tablefieldoptions-transposedtableoptions
60465
+ '''
60466
+ result = self._values.get("transposed_table_options")
60467
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.TransposedTableOptionProperty"]]]], result)
60468
+
60445
60469
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
60446
60470
  return isinstance(rhs, self.__class__) and rhs._values == self._values
60447
60471
 
@@ -65329,6 +65353,103 @@ class CfnAnalysis(
65329
65353
  k + "=" + repr(v) for k, v in self._values.items()
65330
65354
  )
65331
65355
 
65356
+ @jsii.data_type(
65357
+ jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.TransposedTableOptionProperty",
65358
+ jsii_struct_bases=[],
65359
+ name_mapping={
65360
+ "column_type": "columnType",
65361
+ "column_index": "columnIndex",
65362
+ "column_width": "columnWidth",
65363
+ },
65364
+ )
65365
+ class TransposedTableOptionProperty:
65366
+ def __init__(
65367
+ self,
65368
+ *,
65369
+ column_type: builtins.str,
65370
+ column_index: typing.Optional[jsii.Number] = None,
65371
+ column_width: typing.Optional[builtins.str] = None,
65372
+ ) -> None:
65373
+ '''The column option of the transposed table.
65374
+
65375
+ :param column_type: The column type of the column in a transposed table. Choose one of the following options:. - ``ROW_HEADER_COLUMN`` : Refers to the leftmost column of the row header in the transposed table. - ``VALUE_COLUMN`` : Refers to all value columns in the transposed table.
65376
+ :param column_index: The index of a columns in a transposed table. The index range is 0-9999.
65377
+ :param column_width: The width of a column in a transposed table.
65378
+
65379
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-transposedtableoption.html
65380
+ :exampleMetadata: fixture=_generated
65381
+
65382
+ Example::
65383
+
65384
+ # The code below shows an example of how to instantiate this type.
65385
+ # The values are placeholders you should change.
65386
+ from aws_cdk import aws_quicksight as quicksight
65387
+
65388
+ transposed_table_option_property = quicksight.CfnAnalysis.TransposedTableOptionProperty(
65389
+ column_type="columnType",
65390
+
65391
+ # the properties below are optional
65392
+ column_index=123,
65393
+ column_width="columnWidth"
65394
+ )
65395
+ '''
65396
+ if __debug__:
65397
+ type_hints = typing.get_type_hints(_typecheckingstub__2c5e2e3ac4b43f9e541a45ddf945a53f646cdb13c9138d941a346ee240f36b8b)
65398
+ check_type(argname="argument column_type", value=column_type, expected_type=type_hints["column_type"])
65399
+ check_type(argname="argument column_index", value=column_index, expected_type=type_hints["column_index"])
65400
+ check_type(argname="argument column_width", value=column_width, expected_type=type_hints["column_width"])
65401
+ self._values: typing.Dict[builtins.str, typing.Any] = {
65402
+ "column_type": column_type,
65403
+ }
65404
+ if column_index is not None:
65405
+ self._values["column_index"] = column_index
65406
+ if column_width is not None:
65407
+ self._values["column_width"] = column_width
65408
+
65409
+ @builtins.property
65410
+ def column_type(self) -> builtins.str:
65411
+ '''The column type of the column in a transposed table. Choose one of the following options:.
65412
+
65413
+ - ``ROW_HEADER_COLUMN`` : Refers to the leftmost column of the row header in the transposed table.
65414
+ - ``VALUE_COLUMN`` : Refers to all value columns in the transposed table.
65415
+
65416
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-transposedtableoption.html#cfn-quicksight-analysis-transposedtableoption-columntype
65417
+ '''
65418
+ result = self._values.get("column_type")
65419
+ assert result is not None, "Required property 'column_type' is missing"
65420
+ return typing.cast(builtins.str, result)
65421
+
65422
+ @builtins.property
65423
+ def column_index(self) -> typing.Optional[jsii.Number]:
65424
+ '''The index of a columns in a transposed table.
65425
+
65426
+ The index range is 0-9999.
65427
+
65428
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-transposedtableoption.html#cfn-quicksight-analysis-transposedtableoption-columnindex
65429
+ '''
65430
+ result = self._values.get("column_index")
65431
+ return typing.cast(typing.Optional[jsii.Number], result)
65432
+
65433
+ @builtins.property
65434
+ def column_width(self) -> typing.Optional[builtins.str]:
65435
+ '''The width of a column in a transposed table.
65436
+
65437
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-transposedtableoption.html#cfn-quicksight-analysis-transposedtableoption-columnwidth
65438
+ '''
65439
+ result = self._values.get("column_width")
65440
+ return typing.cast(typing.Optional[builtins.str], result)
65441
+
65442
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
65443
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
65444
+
65445
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
65446
+ return not (rhs == self)
65447
+
65448
+ def __repr__(self) -> str:
65449
+ return "TransposedTableOptionProperty(%s)" % ", ".join(
65450
+ k + "=" + repr(v) for k, v in self._values.items()
65451
+ )
65452
+
65332
65453
  @jsii.data_type(
65333
65454
  jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.TreeMapAggregatedFieldWellsProperty",
65334
65455
  jsii_struct_bases=[],
@@ -131985,6 +132106,7 @@ class CfnDashboard(
131985
132106
  "order": "order",
131986
132107
  "pinned_field_options": "pinnedFieldOptions",
131987
132108
  "selected_field_options": "selectedFieldOptions",
132109
+ "transposed_table_options": "transposedTableOptions",
131988
132110
  },
131989
132111
  )
131990
132112
  class TableFieldOptionsProperty:
@@ -131994,12 +132116,14 @@ class CfnDashboard(
131994
132116
  order: typing.Optional[typing.Sequence[builtins.str]] = None,
131995
132117
  pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.TablePinnedFieldOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
131996
132118
  selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.TableFieldOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
132119
+ transposed_table_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.TransposedTableOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
131997
132120
  ) -> None:
131998
132121
  '''The field options of a table visual.
131999
132122
 
132000
132123
  :param order: The order of the field IDs that are configured as field options for a table visual.
132001
132124
  :param pinned_field_options: The settings for the pinned columns of a table visual.
132002
132125
  :param selected_field_options: The field options to be configured to a table.
132126
+ :param transposed_table_options: The ``TableOptions`` of a transposed table.
132003
132127
 
132004
132128
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldoptions.html
132005
132129
  :exampleMetadata: fixture=_generated
@@ -132055,6 +132179,13 @@ class CfnDashboard(
132055
132179
  ),
132056
132180
  visibility="visibility",
132057
132181
  width="width"
132182
+ )],
132183
+ transposed_table_options=[quicksight.CfnDashboard.TransposedTableOptionProperty(
132184
+ column_type="columnType",
132185
+
132186
+ # the properties below are optional
132187
+ column_index=123,
132188
+ column_width="columnWidth"
132058
132189
  )]
132059
132190
  )
132060
132191
  '''
@@ -132063,6 +132194,7 @@ class CfnDashboard(
132063
132194
  check_type(argname="argument order", value=order, expected_type=type_hints["order"])
132064
132195
  check_type(argname="argument pinned_field_options", value=pinned_field_options, expected_type=type_hints["pinned_field_options"])
132065
132196
  check_type(argname="argument selected_field_options", value=selected_field_options, expected_type=type_hints["selected_field_options"])
132197
+ check_type(argname="argument transposed_table_options", value=transposed_table_options, expected_type=type_hints["transposed_table_options"])
132066
132198
  self._values: typing.Dict[builtins.str, typing.Any] = {}
132067
132199
  if order is not None:
132068
132200
  self._values["order"] = order
@@ -132070,6 +132202,8 @@ class CfnDashboard(
132070
132202
  self._values["pinned_field_options"] = pinned_field_options
132071
132203
  if selected_field_options is not None:
132072
132204
  self._values["selected_field_options"] = selected_field_options
132205
+ if transposed_table_options is not None:
132206
+ self._values["transposed_table_options"] = transposed_table_options
132073
132207
 
132074
132208
  @builtins.property
132075
132209
  def order(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -132102,6 +132236,17 @@ class CfnDashboard(
132102
132236
  result = self._values.get("selected_field_options")
132103
132237
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TableFieldOptionProperty"]]]], result)
132104
132238
 
132239
+ @builtins.property
132240
+ def transposed_table_options(
132241
+ self,
132242
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TransposedTableOptionProperty"]]]]:
132243
+ '''The ``TableOptions`` of a transposed table.
132244
+
132245
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldoptions.html#cfn-quicksight-dashboard-tablefieldoptions-transposedtableoptions
132246
+ '''
132247
+ result = self._values.get("transposed_table_options")
132248
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TransposedTableOptionProperty"]]]], result)
132249
+
132105
132250
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
132106
132251
  return isinstance(rhs, self.__class__) and rhs._values == self._values
132107
132252
 
@@ -136989,6 +137134,103 @@ class CfnDashboard(
136989
137134
  k + "=" + repr(v) for k, v in self._values.items()
136990
137135
  )
136991
137136
 
137137
+ @jsii.data_type(
137138
+ jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.TransposedTableOptionProperty",
137139
+ jsii_struct_bases=[],
137140
+ name_mapping={
137141
+ "column_type": "columnType",
137142
+ "column_index": "columnIndex",
137143
+ "column_width": "columnWidth",
137144
+ },
137145
+ )
137146
+ class TransposedTableOptionProperty:
137147
+ def __init__(
137148
+ self,
137149
+ *,
137150
+ column_type: builtins.str,
137151
+ column_index: typing.Optional[jsii.Number] = None,
137152
+ column_width: typing.Optional[builtins.str] = None,
137153
+ ) -> None:
137154
+ '''The column option of the transposed table.
137155
+
137156
+ :param column_type: The column type of the column in a transposed table. Choose one of the following options:. - ``ROW_HEADER_COLUMN`` : Refers to the leftmost column of the row header in the transposed table. - ``VALUE_COLUMN`` : Refers to all value columns in the transposed table.
137157
+ :param column_index: The index of a columns in a transposed table. The index range is 0-9999.
137158
+ :param column_width: The width of a column in a transposed table.
137159
+
137160
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-transposedtableoption.html
137161
+ :exampleMetadata: fixture=_generated
137162
+
137163
+ Example::
137164
+
137165
+ # The code below shows an example of how to instantiate this type.
137166
+ # The values are placeholders you should change.
137167
+ from aws_cdk import aws_quicksight as quicksight
137168
+
137169
+ transposed_table_option_property = quicksight.CfnDashboard.TransposedTableOptionProperty(
137170
+ column_type="columnType",
137171
+
137172
+ # the properties below are optional
137173
+ column_index=123,
137174
+ column_width="columnWidth"
137175
+ )
137176
+ '''
137177
+ if __debug__:
137178
+ type_hints = typing.get_type_hints(_typecheckingstub__43492478e2a06307bfc1010f6c011e034ab8ec090fd9ff8eaecf00a52514bcaa)
137179
+ check_type(argname="argument column_type", value=column_type, expected_type=type_hints["column_type"])
137180
+ check_type(argname="argument column_index", value=column_index, expected_type=type_hints["column_index"])
137181
+ check_type(argname="argument column_width", value=column_width, expected_type=type_hints["column_width"])
137182
+ self._values: typing.Dict[builtins.str, typing.Any] = {
137183
+ "column_type": column_type,
137184
+ }
137185
+ if column_index is not None:
137186
+ self._values["column_index"] = column_index
137187
+ if column_width is not None:
137188
+ self._values["column_width"] = column_width
137189
+
137190
+ @builtins.property
137191
+ def column_type(self) -> builtins.str:
137192
+ '''The column type of the column in a transposed table. Choose one of the following options:.
137193
+
137194
+ - ``ROW_HEADER_COLUMN`` : Refers to the leftmost column of the row header in the transposed table.
137195
+ - ``VALUE_COLUMN`` : Refers to all value columns in the transposed table.
137196
+
137197
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-transposedtableoption.html#cfn-quicksight-dashboard-transposedtableoption-columntype
137198
+ '''
137199
+ result = self._values.get("column_type")
137200
+ assert result is not None, "Required property 'column_type' is missing"
137201
+ return typing.cast(builtins.str, result)
137202
+
137203
+ @builtins.property
137204
+ def column_index(self) -> typing.Optional[jsii.Number]:
137205
+ '''The index of a columns in a transposed table.
137206
+
137207
+ The index range is 0-9999.
137208
+
137209
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-transposedtableoption.html#cfn-quicksight-dashboard-transposedtableoption-columnindex
137210
+ '''
137211
+ result = self._values.get("column_index")
137212
+ return typing.cast(typing.Optional[jsii.Number], result)
137213
+
137214
+ @builtins.property
137215
+ def column_width(self) -> typing.Optional[builtins.str]:
137216
+ '''The width of a column in a transposed table.
137217
+
137218
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-transposedtableoption.html#cfn-quicksight-dashboard-transposedtableoption-columnwidth
137219
+ '''
137220
+ result = self._values.get("column_width")
137221
+ return typing.cast(typing.Optional[builtins.str], result)
137222
+
137223
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
137224
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
137225
+
137226
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
137227
+ return not (rhs == self)
137228
+
137229
+ def __repr__(self) -> str:
137230
+ return "TransposedTableOptionProperty(%s)" % ", ".join(
137231
+ k + "=" + repr(v) for k, v in self._values.items()
137232
+ )
137233
+
136992
137234
  @jsii.data_type(
136993
137235
  jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.TreeMapAggregatedFieldWellsProperty",
136994
137236
  jsii_struct_bases=[],
@@ -209558,6 +209800,7 @@ class CfnTemplate(
209558
209800
  "order": "order",
209559
209801
  "pinned_field_options": "pinnedFieldOptions",
209560
209802
  "selected_field_options": "selectedFieldOptions",
209803
+ "transposed_table_options": "transposedTableOptions",
209561
209804
  },
209562
209805
  )
209563
209806
  class TableFieldOptionsProperty:
@@ -209567,12 +209810,14 @@ class CfnTemplate(
209567
209810
  order: typing.Optional[typing.Sequence[builtins.str]] = None,
209568
209811
  pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.TablePinnedFieldOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
209569
209812
  selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.TableFieldOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
209813
+ transposed_table_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.TransposedTableOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
209570
209814
  ) -> None:
209571
209815
  '''The field options of a table visual.
209572
209816
 
209573
209817
  :param order: The order of the field IDs that are configured as field options for a table visual.
209574
209818
  :param pinned_field_options: The settings for the pinned columns of a table visual.
209575
209819
  :param selected_field_options: The field options to be configured to a table.
209820
+ :param transposed_table_options: The ``TableOptions`` of a transposed table.
209576
209821
 
209577
209822
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldoptions.html
209578
209823
  :exampleMetadata: fixture=_generated
@@ -209628,6 +209873,13 @@ class CfnTemplate(
209628
209873
  ),
209629
209874
  visibility="visibility",
209630
209875
  width="width"
209876
+ )],
209877
+ transposed_table_options=[quicksight.CfnTemplate.TransposedTableOptionProperty(
209878
+ column_type="columnType",
209879
+
209880
+ # the properties below are optional
209881
+ column_index=123,
209882
+ column_width="columnWidth"
209631
209883
  )]
209632
209884
  )
209633
209885
  '''
@@ -209636,6 +209888,7 @@ class CfnTemplate(
209636
209888
  check_type(argname="argument order", value=order, expected_type=type_hints["order"])
209637
209889
  check_type(argname="argument pinned_field_options", value=pinned_field_options, expected_type=type_hints["pinned_field_options"])
209638
209890
  check_type(argname="argument selected_field_options", value=selected_field_options, expected_type=type_hints["selected_field_options"])
209891
+ check_type(argname="argument transposed_table_options", value=transposed_table_options, expected_type=type_hints["transposed_table_options"])
209639
209892
  self._values: typing.Dict[builtins.str, typing.Any] = {}
209640
209893
  if order is not None:
209641
209894
  self._values["order"] = order
@@ -209643,6 +209896,8 @@ class CfnTemplate(
209643
209896
  self._values["pinned_field_options"] = pinned_field_options
209644
209897
  if selected_field_options is not None:
209645
209898
  self._values["selected_field_options"] = selected_field_options
209899
+ if transposed_table_options is not None:
209900
+ self._values["transposed_table_options"] = transposed_table_options
209646
209901
 
209647
209902
  @builtins.property
209648
209903
  def order(self) -> typing.Optional[typing.List[builtins.str]]:
@@ -209675,6 +209930,17 @@ class CfnTemplate(
209675
209930
  result = self._values.get("selected_field_options")
209676
209931
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTemplate.TableFieldOptionProperty"]]]], result)
209677
209932
 
209933
+ @builtins.property
209934
+ def transposed_table_options(
209935
+ self,
209936
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTemplate.TransposedTableOptionProperty"]]]]:
209937
+ '''The ``TableOptions`` of a transposed table.
209938
+
209939
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldoptions.html#cfn-quicksight-template-tablefieldoptions-transposedtableoptions
209940
+ '''
209941
+ result = self._values.get("transposed_table_options")
209942
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnTemplate.TransposedTableOptionProperty"]]]], result)
209943
+
209678
209944
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
209679
209945
  return isinstance(rhs, self.__class__) and rhs._values == self._values
209680
209946
 
@@ -215300,6 +215566,103 @@ class CfnTemplate(
215300
215566
  k + "=" + repr(v) for k, v in self._values.items()
215301
215567
  )
215302
215568
 
215569
+ @jsii.data_type(
215570
+ jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.TransposedTableOptionProperty",
215571
+ jsii_struct_bases=[],
215572
+ name_mapping={
215573
+ "column_type": "columnType",
215574
+ "column_index": "columnIndex",
215575
+ "column_width": "columnWidth",
215576
+ },
215577
+ )
215578
+ class TransposedTableOptionProperty:
215579
+ def __init__(
215580
+ self,
215581
+ *,
215582
+ column_type: builtins.str,
215583
+ column_index: typing.Optional[jsii.Number] = None,
215584
+ column_width: typing.Optional[builtins.str] = None,
215585
+ ) -> None:
215586
+ '''The column option of the transposed table.
215587
+
215588
+ :param column_type: The column type of the column in a transposed table. Choose one of the following options:. - ``ROW_HEADER_COLUMN`` : Refers to the leftmost column of the row header in the transposed table. - ``VALUE_COLUMN`` : Refers to all value columns in the transposed table.
215589
+ :param column_index: The index of a columns in a transposed table. The index range is 0-9999.
215590
+ :param column_width: The width of a column in a transposed table.
215591
+
215592
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-transposedtableoption.html
215593
+ :exampleMetadata: fixture=_generated
215594
+
215595
+ Example::
215596
+
215597
+ # The code below shows an example of how to instantiate this type.
215598
+ # The values are placeholders you should change.
215599
+ from aws_cdk import aws_quicksight as quicksight
215600
+
215601
+ transposed_table_option_property = quicksight.CfnTemplate.TransposedTableOptionProperty(
215602
+ column_type="columnType",
215603
+
215604
+ # the properties below are optional
215605
+ column_index=123,
215606
+ column_width="columnWidth"
215607
+ )
215608
+ '''
215609
+ if __debug__:
215610
+ type_hints = typing.get_type_hints(_typecheckingstub__d27ed2dfa543865f8fd7c368f90562293e773f07843c02a35fcaeba54cf0515c)
215611
+ check_type(argname="argument column_type", value=column_type, expected_type=type_hints["column_type"])
215612
+ check_type(argname="argument column_index", value=column_index, expected_type=type_hints["column_index"])
215613
+ check_type(argname="argument column_width", value=column_width, expected_type=type_hints["column_width"])
215614
+ self._values: typing.Dict[builtins.str, typing.Any] = {
215615
+ "column_type": column_type,
215616
+ }
215617
+ if column_index is not None:
215618
+ self._values["column_index"] = column_index
215619
+ if column_width is not None:
215620
+ self._values["column_width"] = column_width
215621
+
215622
+ @builtins.property
215623
+ def column_type(self) -> builtins.str:
215624
+ '''The column type of the column in a transposed table. Choose one of the following options:.
215625
+
215626
+ - ``ROW_HEADER_COLUMN`` : Refers to the leftmost column of the row header in the transposed table.
215627
+ - ``VALUE_COLUMN`` : Refers to all value columns in the transposed table.
215628
+
215629
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-transposedtableoption.html#cfn-quicksight-template-transposedtableoption-columntype
215630
+ '''
215631
+ result = self._values.get("column_type")
215632
+ assert result is not None, "Required property 'column_type' is missing"
215633
+ return typing.cast(builtins.str, result)
215634
+
215635
+ @builtins.property
215636
+ def column_index(self) -> typing.Optional[jsii.Number]:
215637
+ '''The index of a columns in a transposed table.
215638
+
215639
+ The index range is 0-9999.
215640
+
215641
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-transposedtableoption.html#cfn-quicksight-template-transposedtableoption-columnindex
215642
+ '''
215643
+ result = self._values.get("column_index")
215644
+ return typing.cast(typing.Optional[jsii.Number], result)
215645
+
215646
+ @builtins.property
215647
+ def column_width(self) -> typing.Optional[builtins.str]:
215648
+ '''The width of a column in a transposed table.
215649
+
215650
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-transposedtableoption.html#cfn-quicksight-template-transposedtableoption-columnwidth
215651
+ '''
215652
+ result = self._values.get("column_width")
215653
+ return typing.cast(typing.Optional[builtins.str], result)
215654
+
215655
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
215656
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
215657
+
215658
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
215659
+ return not (rhs == self)
215660
+
215661
+ def __repr__(self) -> str:
215662
+ return "TransposedTableOptionProperty(%s)" % ", ".join(
215663
+ k + "=" + repr(v) for k, v in self._values.items()
215664
+ )
215665
+
215303
215666
  @jsii.data_type(
215304
215667
  jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.TreeMapAggregatedFieldWellsProperty",
215305
215668
  jsii_struct_bases=[],
@@ -231644,6 +232007,7 @@ def _typecheckingstub__4b1581ac01a2a6068fe7519e9017b2a7cf534ecaa479c68cb2a0e3086
231644
232007
  order: typing.Optional[typing.Sequence[builtins.str]] = None,
231645
232008
  pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.TablePinnedFieldOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
231646
232009
  selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.TableFieldOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
232010
+ transposed_table_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.TransposedTableOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
231647
232011
  ) -> None:
231648
232012
  """Type checking stubs"""
231649
232013
  pass
@@ -231946,6 +232310,15 @@ def _typecheckingstub__3cb9d3d986ec951750d2fa88755ce590fd2b1a0ccf297c5bb4e33c75a
231946
232310
  """Type checking stubs"""
231947
232311
  pass
231948
232312
 
232313
+ def _typecheckingstub__2c5e2e3ac4b43f9e541a45ddf945a53f646cdb13c9138d941a346ee240f36b8b(
232314
+ *,
232315
+ column_type: builtins.str,
232316
+ column_index: typing.Optional[jsii.Number] = None,
232317
+ column_width: typing.Optional[builtins.str] = None,
232318
+ ) -> None:
232319
+ """Type checking stubs"""
232320
+ pass
232321
+
231949
232322
  def _typecheckingstub__00f03c70e82683586cbc7648798b3e82e87a1f835ad6b4820077ed676d11c138(
231950
232323
  *,
231951
232324
  colors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.MeasureFieldProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
@@ -237127,6 +237500,7 @@ def _typecheckingstub__72ee146032d78abdf24c9225b55a85b01c617371b25550f6b22f15a26
237127
237500
  order: typing.Optional[typing.Sequence[builtins.str]] = None,
237128
237501
  pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.TablePinnedFieldOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
237129
237502
  selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.TableFieldOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
237503
+ transposed_table_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.TransposedTableOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
237130
237504
  ) -> None:
237131
237505
  """Type checking stubs"""
237132
237506
  pass
@@ -237429,6 +237803,15 @@ def _typecheckingstub__7fc179aae0ac597c1c7159cbab8982679a211fb2e95fa4887f018e619
237429
237803
  """Type checking stubs"""
237430
237804
  pass
237431
237805
 
237806
+ def _typecheckingstub__43492478e2a06307bfc1010f6c011e034ab8ec090fd9ff8eaecf00a52514bcaa(
237807
+ *,
237808
+ column_type: builtins.str,
237809
+ column_index: typing.Optional[jsii.Number] = None,
237810
+ column_width: typing.Optional[builtins.str] = None,
237811
+ ) -> None:
237812
+ """Type checking stubs"""
237813
+ pass
237814
+
237432
237815
  def _typecheckingstub__13a1765b077c5f3d55533e4d4b702a544c3a66e9b0e70ecbd0c56008193a408e(
237433
237816
  *,
237434
237817
  colors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.MeasureFieldProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
@@ -243252,6 +243635,7 @@ def _typecheckingstub__2796b1737ad870376487761ac141740bbac607a367593f554b3fd534c
243252
243635
  order: typing.Optional[typing.Sequence[builtins.str]] = None,
243253
243636
  pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.TablePinnedFieldOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
243254
243637
  selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.TableFieldOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
243638
+ transposed_table_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.TransposedTableOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
243255
243639
  ) -> None:
243256
243640
  """Type checking stubs"""
243257
243641
  pass
@@ -243616,6 +244000,15 @@ def _typecheckingstub__a496edcf300ce3343e7814a6546bd962adb9fc4f21bb9108e16a344e1
243616
244000
  """Type checking stubs"""
243617
244001
  pass
243618
244002
 
244003
+ def _typecheckingstub__d27ed2dfa543865f8fd7c368f90562293e773f07843c02a35fcaeba54cf0515c(
244004
+ *,
244005
+ column_type: builtins.str,
244006
+ column_index: typing.Optional[jsii.Number] = None,
244007
+ column_width: typing.Optional[builtins.str] = None,
244008
+ ) -> None:
244009
+ """Type checking stubs"""
244010
+ pass
244011
+
243619
244012
  def _typecheckingstub__58d9f611360a00b5cbb0082e1a3b44fc0cba018dcac0afe98725ca272b084516(
243620
244013
  *,
243621
244014
  colors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.MeasureFieldProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,