aws-cdk-lib 2.105.0__py3-none-any.whl → 2.106.1__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 (47) hide show
  1. aws_cdk/__init__.py +59 -69
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.105.0.jsii.tgz → aws-cdk-lib@2.106.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_amplify/__init__.py +12 -12
  5. aws_cdk/aws_appconfig/__init__.py +25 -11
  6. aws_cdk/aws_appintegrations/__init__.py +60 -60
  7. aws_cdk/aws_apprunner/__init__.py +22 -3
  8. aws_cdk/aws_appstream/__init__.py +12 -5
  9. aws_cdk/aws_appsync/__init__.py +4 -4
  10. aws_cdk/aws_autoscaling/__init__.py +8 -0
  11. aws_cdk/aws_cloudformation/__init__.py +59 -69
  12. aws_cdk/aws_codepipeline/__init__.py +3 -0
  13. aws_cdk/aws_cognito/__init__.py +23 -31
  14. aws_cdk/aws_config/__init__.py +46 -41
  15. aws_cdk/aws_datapipeline/__init__.py +54 -54
  16. aws_cdk/aws_directoryservice/__init__.py +45 -45
  17. aws_cdk/aws_ec2/__init__.py +163 -21
  18. aws_cdk/aws_ecs/__init__.py +52 -68
  19. aws_cdk/aws_eks/__init__.py +55 -9
  20. aws_cdk/aws_entityresolution/__init__.py +9 -0
  21. aws_cdk/aws_events/__init__.py +0 -8
  22. aws_cdk/aws_eventschemas/__init__.py +12 -12
  23. aws_cdk/aws_gamelift/__init__.py +4 -6
  24. aws_cdk/aws_internetmonitor/__init__.py +12 -10
  25. aws_cdk/aws_iot/__init__.py +10 -11
  26. aws_cdk/aws_lakeformation/__init__.py +8 -5
  27. aws_cdk/aws_lambda/__init__.py +30 -0
  28. aws_cdk/aws_msk/__init__.py +3 -3
  29. aws_cdk/aws_networkmanager/__init__.py +1 -1
  30. aws_cdk/aws_pinpoint/__init__.py +94 -94
  31. aws_cdk/aws_quicksight/__init__.py +189 -264
  32. aws_cdk/aws_rds/__init__.py +267 -36
  33. aws_cdk/aws_rolesanywhere/__init__.py +53 -41
  34. aws_cdk/aws_route53/__init__.py +3 -7
  35. aws_cdk/aws_s3/__init__.py +191 -2
  36. aws_cdk/aws_sam/__init__.py +42 -47
  37. aws_cdk/aws_servicecatalogappregistry/__init__.py +2 -4
  38. aws_cdk/aws_ssm/__init__.py +4 -4
  39. aws_cdk/aws_stepfunctions_tasks/__init__.py +9 -2
  40. aws_cdk/aws_vpclattice/__init__.py +2 -6
  41. aws_cdk/aws_wafv2/__init__.py +21 -8
  42. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/METADATA +3 -3
  43. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/RECORD +47 -47
  44. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/LICENSE +0 -0
  45. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/NOTICE +0 -0
  46. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/WHEEL +0 -0
  47. {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/top_level.txt +0 -0
@@ -11746,13 +11746,11 @@ class CfnAnalysis(
11746
11746
  data_path_color_property = quicksight.CfnAnalysis.DataPathColorProperty(
11747
11747
  color="color",
11748
11748
  element=quicksight.CfnAnalysis.DataPathValueProperty(
11749
- field_id="fieldId",
11750
- field_value="fieldValue",
11751
-
11752
- # the properties below are optional
11753
11749
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
11754
11750
  pivot_table_data_path_type="pivotTableDataPathType"
11755
- )
11751
+ ),
11752
+ field_id="fieldId",
11753
+ field_value="fieldValue"
11756
11754
  ),
11757
11755
 
11758
11756
  # the properties below are optional
@@ -11931,13 +11929,11 @@ class CfnAnalysis(
11931
11929
  data_path_sort_property = quicksight.CfnAnalysis.DataPathSortProperty(
11932
11930
  direction="direction",
11933
11931
  sort_paths=[quicksight.CfnAnalysis.DataPathValueProperty(
11934
- field_id="fieldId",
11935
- field_value="fieldValue",
11936
-
11937
- # the properties below are optional
11938
11932
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
11939
11933
  pivot_table_data_path_type="pivotTableDataPathType"
11940
- )
11934
+ ),
11935
+ field_id="fieldId",
11936
+ field_value="fieldValue"
11941
11937
  )]
11942
11938
  )
11943
11939
  '''
@@ -12047,24 +12043,24 @@ class CfnAnalysis(
12047
12043
  jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.DataPathValueProperty",
12048
12044
  jsii_struct_bases=[],
12049
12045
  name_mapping={
12046
+ "data_path_type": "dataPathType",
12050
12047
  "field_id": "fieldId",
12051
12048
  "field_value": "fieldValue",
12052
- "data_path_type": "dataPathType",
12053
12049
  },
12054
12050
  )
12055
12051
  class DataPathValueProperty:
12056
12052
  def __init__(
12057
12053
  self,
12058
12054
  *,
12059
- field_id: builtins.str,
12060
- field_value: builtins.str,
12061
12055
  data_path_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.DataPathTypeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
12056
+ field_id: typing.Optional[builtins.str] = None,
12057
+ field_value: typing.Optional[builtins.str] = None,
12062
12058
  ) -> None:
12063
12059
  '''The data path that needs to be sorted.
12064
12060
 
12061
+ :param data_path_type: The type configuration of the field.
12065
12062
  :param field_id: The field ID of the field that needs to be sorted.
12066
12063
  :param field_value: The actual value of the field that needs to be sorted.
12067
- :param data_path_type: The type configuration of the field.
12068
12064
 
12069
12065
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html
12070
12066
  :exampleMetadata: fixture=_generated
@@ -12076,57 +12072,54 @@ class CfnAnalysis(
12076
12072
  from aws_cdk import aws_quicksight as quicksight
12077
12073
 
12078
12074
  data_path_value_property = quicksight.CfnAnalysis.DataPathValueProperty(
12079
- field_id="fieldId",
12080
- field_value="fieldValue",
12081
-
12082
- # the properties below are optional
12083
12075
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
12084
12076
  pivot_table_data_path_type="pivotTableDataPathType"
12085
- )
12077
+ ),
12078
+ field_id="fieldId",
12079
+ field_value="fieldValue"
12086
12080
  )
12087
12081
  '''
12088
12082
  if __debug__:
12089
12083
  type_hints = typing.get_type_hints(_typecheckingstub__ba849ca69e22a9c090b73d793791dc533d8bf31d54e27c2ca76b1b941a6ce8d2)
12084
+ check_type(argname="argument data_path_type", value=data_path_type, expected_type=type_hints["data_path_type"])
12090
12085
  check_type(argname="argument field_id", value=field_id, expected_type=type_hints["field_id"])
12091
12086
  check_type(argname="argument field_value", value=field_value, expected_type=type_hints["field_value"])
12092
- check_type(argname="argument data_path_type", value=data_path_type, expected_type=type_hints["data_path_type"])
12093
- self._values: typing.Dict[builtins.str, typing.Any] = {
12094
- "field_id": field_id,
12095
- "field_value": field_value,
12096
- }
12087
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
12097
12088
  if data_path_type is not None:
12098
12089
  self._values["data_path_type"] = data_path_type
12090
+ if field_id is not None:
12091
+ self._values["field_id"] = field_id
12092
+ if field_value is not None:
12093
+ self._values["field_value"] = field_value
12099
12094
 
12100
12095
  @builtins.property
12101
- def field_id(self) -> builtins.str:
12096
+ def data_path_type(
12097
+ self,
12098
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.DataPathTypeProperty"]]:
12099
+ '''The type configuration of the field.
12100
+
12101
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-datapathtype
12102
+ '''
12103
+ result = self._values.get("data_path_type")
12104
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.DataPathTypeProperty"]], result)
12105
+
12106
+ @builtins.property
12107
+ def field_id(self) -> typing.Optional[builtins.str]:
12102
12108
  '''The field ID of the field that needs to be sorted.
12103
12109
 
12104
12110
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-fieldid
12105
12111
  '''
12106
12112
  result = self._values.get("field_id")
12107
- assert result is not None, "Required property 'field_id' is missing"
12108
- return typing.cast(builtins.str, result)
12113
+ return typing.cast(typing.Optional[builtins.str], result)
12109
12114
 
12110
12115
  @builtins.property
12111
- def field_value(self) -> builtins.str:
12116
+ def field_value(self) -> typing.Optional[builtins.str]:
12112
12117
  '''The actual value of the field that needs to be sorted.
12113
12118
 
12114
12119
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-fieldvalue
12115
12120
  '''
12116
12121
  result = self._values.get("field_value")
12117
- assert result is not None, "Required property 'field_value' is missing"
12118
- return typing.cast(builtins.str, result)
12119
-
12120
- @builtins.property
12121
- def data_path_type(
12122
- self,
12123
- ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.DataPathTypeProperty"]]:
12124
- '''The type configuration of the field.
12125
-
12126
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-datapathtype
12127
- '''
12128
- result = self._values.get("data_path_type")
12129
- return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.DataPathTypeProperty"]], result)
12122
+ return typing.cast(typing.Optional[builtins.str], result)
12130
12123
 
12131
12124
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
12132
12125
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -41941,13 +41934,11 @@ class CfnAnalysis(
41941
41934
  data_path=quicksight.CfnAnalysis.DataPathSortProperty(
41942
41935
  direction="direction",
41943
41936
  sort_paths=[quicksight.CfnAnalysis.DataPathValueProperty(
41944
- field_id="fieldId",
41945
- field_value="fieldValue",
41946
-
41947
- # the properties below are optional
41948
41937
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
41949
41938
  pivot_table_data_path_type="pivotTableDataPathType"
41950
- )
41939
+ ),
41940
+ field_id="fieldId",
41941
+ field_value="fieldValue"
41951
41942
  )]
41952
41943
  ),
41953
41944
  field=quicksight.CfnAnalysis.FieldSortProperty(
@@ -42749,13 +42740,11 @@ class CfnAnalysis(
42749
42740
 
42750
42741
  pivot_table_data_path_option_property = quicksight.CfnAnalysis.PivotTableDataPathOptionProperty(
42751
42742
  data_path_list=[quicksight.CfnAnalysis.DataPathValueProperty(
42752
- field_id="fieldId",
42753
- field_value="fieldValue",
42754
-
42755
- # the properties below are optional
42756
42743
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
42757
42744
  pivot_table_data_path_type="pivotTableDataPathType"
42758
- )
42745
+ ),
42746
+ field_id="fieldId",
42747
+ field_value="fieldValue"
42759
42748
  )],
42760
42749
 
42761
42750
  # the properties below are optional
@@ -42833,13 +42822,11 @@ class CfnAnalysis(
42833
42822
  pivot_table_field_collapse_state_option_property = quicksight.CfnAnalysis.PivotTableFieldCollapseStateOptionProperty(
42834
42823
  target=quicksight.CfnAnalysis.PivotTableFieldCollapseStateTargetProperty(
42835
42824
  field_data_path_values=[quicksight.CfnAnalysis.DataPathValueProperty(
42836
- field_id="fieldId",
42837
- field_value="fieldValue",
42838
-
42839
- # the properties below are optional
42840
42825
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
42841
42826
  pivot_table_data_path_type="pivotTableDataPathType"
42842
- )
42827
+ ),
42828
+ field_id="fieldId",
42829
+ field_value="fieldValue"
42843
42830
  )],
42844
42831
  field_id="fieldId"
42845
42832
  ),
@@ -42924,13 +42911,11 @@ class CfnAnalysis(
42924
42911
 
42925
42912
  pivot_table_field_collapse_state_target_property = quicksight.CfnAnalysis.PivotTableFieldCollapseStateTargetProperty(
42926
42913
  field_data_path_values=[quicksight.CfnAnalysis.DataPathValueProperty(
42927
- field_id="fieldId",
42928
- field_value="fieldValue",
42929
-
42930
- # the properties below are optional
42931
42914
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
42932
42915
  pivot_table_data_path_type="pivotTableDataPathType"
42933
- )
42916
+ ),
42917
+ field_id="fieldId",
42918
+ field_value="fieldValue"
42934
42919
  )],
42935
42920
  field_id="fieldId"
42936
42921
  )
@@ -43106,13 +43091,11 @@ class CfnAnalysis(
43106
43091
  collapse_state_options=[quicksight.CfnAnalysis.PivotTableFieldCollapseStateOptionProperty(
43107
43092
  target=quicksight.CfnAnalysis.PivotTableFieldCollapseStateTargetProperty(
43108
43093
  field_data_path_values=[quicksight.CfnAnalysis.DataPathValueProperty(
43109
- field_id="fieldId",
43110
- field_value="fieldValue",
43111
-
43112
- # the properties below are optional
43113
43094
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
43114
43095
  pivot_table_data_path_type="pivotTableDataPathType"
43115
- )
43096
+ ),
43097
+ field_id="fieldId",
43098
+ field_value="fieldValue"
43116
43099
  )],
43117
43100
  field_id="fieldId"
43118
43101
  ),
@@ -43122,13 +43105,11 @@ class CfnAnalysis(
43122
43105
  )],
43123
43106
  data_path_options=[quicksight.CfnAnalysis.PivotTableDataPathOptionProperty(
43124
43107
  data_path_list=[quicksight.CfnAnalysis.DataPathValueProperty(
43125
- field_id="fieldId",
43126
- field_value="fieldValue",
43127
-
43128
- # the properties below are optional
43129
43108
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
43130
43109
  pivot_table_data_path_type="pivotTableDataPathType"
43131
- )
43110
+ ),
43111
+ field_id="fieldId",
43112
+ field_value="fieldValue"
43132
43113
  )],
43133
43114
 
43134
43115
  # the properties below are optional
@@ -44009,13 +43990,11 @@ class CfnAnalysis(
44009
43990
  data_path=quicksight.CfnAnalysis.DataPathSortProperty(
44010
43991
  direction="direction",
44011
43992
  sort_paths=[quicksight.CfnAnalysis.DataPathValueProperty(
44012
- field_id="fieldId",
44013
- field_value="fieldValue",
44014
-
44015
- # the properties below are optional
44016
43993
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
44017
43994
  pivot_table_data_path_type="pivotTableDataPathType"
44018
- )
43995
+ ),
43996
+ field_id="fieldId",
43997
+ field_value="fieldValue"
44019
43998
  )]
44020
43999
  ),
44021
44000
  field=quicksight.CfnAnalysis.FieldSortProperty(
@@ -44135,13 +44114,11 @@ class CfnAnalysis(
44135
44114
  data_path=quicksight.CfnAnalysis.DataPathSortProperty(
44136
44115
  direction="direction",
44137
44116
  sort_paths=[quicksight.CfnAnalysis.DataPathValueProperty(
44138
- field_id="fieldId",
44139
- field_value="fieldValue",
44140
-
44141
- # the properties below are optional
44142
44117
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
44143
44118
  pivot_table_data_path_type="pivotTableDataPathType"
44144
- )
44119
+ ),
44120
+ field_id="fieldId",
44121
+ field_value="fieldValue"
44145
44122
  )]
44146
44123
  ),
44147
44124
  field=quicksight.CfnAnalysis.FieldSortProperty(
@@ -60320,13 +60297,11 @@ class CfnAnalysis(
60320
60297
  color_map=[quicksight.CfnAnalysis.DataPathColorProperty(
60321
60298
  color="color",
60322
60299
  element=quicksight.CfnAnalysis.DataPathValueProperty(
60323
- field_id="fieldId",
60324
- field_value="fieldValue",
60325
-
60326
- # the properties below are optional
60327
60300
  data_path_type=quicksight.CfnAnalysis.DataPathTypeProperty(
60328
60301
  pivot_table_data_path_type="pivotTableDataPathType"
60329
- )
60302
+ ),
60303
+ field_id="fieldId",
60304
+ field_value="fieldValue"
60330
60305
  ),
60331
60306
 
60332
60307
  # the properties below are optional
@@ -76027,13 +76002,11 @@ class CfnDashboard(
76027
76002
  data_path_color_property = quicksight.CfnDashboard.DataPathColorProperty(
76028
76003
  color="color",
76029
76004
  element=quicksight.CfnDashboard.DataPathValueProperty(
76030
- field_id="fieldId",
76031
- field_value="fieldValue",
76032
-
76033
- # the properties below are optional
76034
76005
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
76035
76006
  pivot_table_data_path_type="pivotTableDataPathType"
76036
- )
76007
+ ),
76008
+ field_id="fieldId",
76009
+ field_value="fieldValue"
76037
76010
  ),
76038
76011
 
76039
76012
  # the properties below are optional
@@ -76212,13 +76185,11 @@ class CfnDashboard(
76212
76185
  data_path_sort_property = quicksight.CfnDashboard.DataPathSortProperty(
76213
76186
  direction="direction",
76214
76187
  sort_paths=[quicksight.CfnDashboard.DataPathValueProperty(
76215
- field_id="fieldId",
76216
- field_value="fieldValue",
76217
-
76218
- # the properties below are optional
76219
76188
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
76220
76189
  pivot_table_data_path_type="pivotTableDataPathType"
76221
- )
76190
+ ),
76191
+ field_id="fieldId",
76192
+ field_value="fieldValue"
76222
76193
  )]
76223
76194
  )
76224
76195
  '''
@@ -76328,24 +76299,24 @@ class CfnDashboard(
76328
76299
  jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.DataPathValueProperty",
76329
76300
  jsii_struct_bases=[],
76330
76301
  name_mapping={
76302
+ "data_path_type": "dataPathType",
76331
76303
  "field_id": "fieldId",
76332
76304
  "field_value": "fieldValue",
76333
- "data_path_type": "dataPathType",
76334
76305
  },
76335
76306
  )
76336
76307
  class DataPathValueProperty:
76337
76308
  def __init__(
76338
76309
  self,
76339
76310
  *,
76340
- field_id: builtins.str,
76341
- field_value: builtins.str,
76342
76311
  data_path_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.DataPathTypeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
76312
+ field_id: typing.Optional[builtins.str] = None,
76313
+ field_value: typing.Optional[builtins.str] = None,
76343
76314
  ) -> None:
76344
76315
  '''The data path that needs to be sorted.
76345
76316
 
76317
+ :param data_path_type: The type configuration of the field.
76346
76318
  :param field_id: The field ID of the field that needs to be sorted.
76347
76319
  :param field_value: The actual value of the field that needs to be sorted.
76348
- :param data_path_type: The type configuration of the field.
76349
76320
 
76350
76321
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datapathvalue.html
76351
76322
  :exampleMetadata: fixture=_generated
@@ -76357,57 +76328,54 @@ class CfnDashboard(
76357
76328
  from aws_cdk import aws_quicksight as quicksight
76358
76329
 
76359
76330
  data_path_value_property = quicksight.CfnDashboard.DataPathValueProperty(
76360
- field_id="fieldId",
76361
- field_value="fieldValue",
76362
-
76363
- # the properties below are optional
76364
76331
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
76365
76332
  pivot_table_data_path_type="pivotTableDataPathType"
76366
- )
76333
+ ),
76334
+ field_id="fieldId",
76335
+ field_value="fieldValue"
76367
76336
  )
76368
76337
  '''
76369
76338
  if __debug__:
76370
76339
  type_hints = typing.get_type_hints(_typecheckingstub__87f049f31df40ffc5c192a50ab46cff21e148d108d92cf10d0d9b6b6269d6371)
76340
+ check_type(argname="argument data_path_type", value=data_path_type, expected_type=type_hints["data_path_type"])
76371
76341
  check_type(argname="argument field_id", value=field_id, expected_type=type_hints["field_id"])
76372
76342
  check_type(argname="argument field_value", value=field_value, expected_type=type_hints["field_value"])
76373
- check_type(argname="argument data_path_type", value=data_path_type, expected_type=type_hints["data_path_type"])
76374
- self._values: typing.Dict[builtins.str, typing.Any] = {
76375
- "field_id": field_id,
76376
- "field_value": field_value,
76377
- }
76343
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
76378
76344
  if data_path_type is not None:
76379
76345
  self._values["data_path_type"] = data_path_type
76346
+ if field_id is not None:
76347
+ self._values["field_id"] = field_id
76348
+ if field_value is not None:
76349
+ self._values["field_value"] = field_value
76380
76350
 
76381
76351
  @builtins.property
76382
- def field_id(self) -> builtins.str:
76352
+ def data_path_type(
76353
+ self,
76354
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.DataPathTypeProperty"]]:
76355
+ '''The type configuration of the field.
76356
+
76357
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datapathvalue.html#cfn-quicksight-dashboard-datapathvalue-datapathtype
76358
+ '''
76359
+ result = self._values.get("data_path_type")
76360
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.DataPathTypeProperty"]], result)
76361
+
76362
+ @builtins.property
76363
+ def field_id(self) -> typing.Optional[builtins.str]:
76383
76364
  '''The field ID of the field that needs to be sorted.
76384
76365
 
76385
76366
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datapathvalue.html#cfn-quicksight-dashboard-datapathvalue-fieldid
76386
76367
  '''
76387
76368
  result = self._values.get("field_id")
76388
- assert result is not None, "Required property 'field_id' is missing"
76389
- return typing.cast(builtins.str, result)
76369
+ return typing.cast(typing.Optional[builtins.str], result)
76390
76370
 
76391
76371
  @builtins.property
76392
- def field_value(self) -> builtins.str:
76372
+ def field_value(self) -> typing.Optional[builtins.str]:
76393
76373
  '''The actual value of the field that needs to be sorted.
76394
76374
 
76395
76375
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datapathvalue.html#cfn-quicksight-dashboard-datapathvalue-fieldvalue
76396
76376
  '''
76397
76377
  result = self._values.get("field_value")
76398
- assert result is not None, "Required property 'field_value' is missing"
76399
- return typing.cast(builtins.str, result)
76400
-
76401
- @builtins.property
76402
- def data_path_type(
76403
- self,
76404
- ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.DataPathTypeProperty"]]:
76405
- '''The type configuration of the field.
76406
-
76407
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datapathvalue.html#cfn-quicksight-dashboard-datapathvalue-datapathtype
76408
- '''
76409
- result = self._values.get("data_path_type")
76410
- return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.DataPathTypeProperty"]], result)
76378
+ return typing.cast(typing.Optional[builtins.str], result)
76411
76379
 
76412
76380
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
76413
76381
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -106552,13 +106520,11 @@ class CfnDashboard(
106552
106520
  data_path=quicksight.CfnDashboard.DataPathSortProperty(
106553
106521
  direction="direction",
106554
106522
  sort_paths=[quicksight.CfnDashboard.DataPathValueProperty(
106555
- field_id="fieldId",
106556
- field_value="fieldValue",
106557
-
106558
- # the properties below are optional
106559
106523
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
106560
106524
  pivot_table_data_path_type="pivotTableDataPathType"
106561
- )
106525
+ ),
106526
+ field_id="fieldId",
106527
+ field_value="fieldValue"
106562
106528
  )]
106563
106529
  ),
106564
106530
  field=quicksight.CfnDashboard.FieldSortProperty(
@@ -107360,13 +107326,11 @@ class CfnDashboard(
107360
107326
 
107361
107327
  pivot_table_data_path_option_property = quicksight.CfnDashboard.PivotTableDataPathOptionProperty(
107362
107328
  data_path_list=[quicksight.CfnDashboard.DataPathValueProperty(
107363
- field_id="fieldId",
107364
- field_value="fieldValue",
107365
-
107366
- # the properties below are optional
107367
107329
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
107368
107330
  pivot_table_data_path_type="pivotTableDataPathType"
107369
- )
107331
+ ),
107332
+ field_id="fieldId",
107333
+ field_value="fieldValue"
107370
107334
  )],
107371
107335
 
107372
107336
  # the properties below are optional
@@ -107444,13 +107408,11 @@ class CfnDashboard(
107444
107408
  pivot_table_field_collapse_state_option_property = quicksight.CfnDashboard.PivotTableFieldCollapseStateOptionProperty(
107445
107409
  target=quicksight.CfnDashboard.PivotTableFieldCollapseStateTargetProperty(
107446
107410
  field_data_path_values=[quicksight.CfnDashboard.DataPathValueProperty(
107447
- field_id="fieldId",
107448
- field_value="fieldValue",
107449
-
107450
- # the properties below are optional
107451
107411
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
107452
107412
  pivot_table_data_path_type="pivotTableDataPathType"
107453
- )
107413
+ ),
107414
+ field_id="fieldId",
107415
+ field_value="fieldValue"
107454
107416
  )],
107455
107417
  field_id="fieldId"
107456
107418
  ),
@@ -107535,13 +107497,11 @@ class CfnDashboard(
107535
107497
 
107536
107498
  pivot_table_field_collapse_state_target_property = quicksight.CfnDashboard.PivotTableFieldCollapseStateTargetProperty(
107537
107499
  field_data_path_values=[quicksight.CfnDashboard.DataPathValueProperty(
107538
- field_id="fieldId",
107539
- field_value="fieldValue",
107540
-
107541
- # the properties below are optional
107542
107500
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
107543
107501
  pivot_table_data_path_type="pivotTableDataPathType"
107544
- )
107502
+ ),
107503
+ field_id="fieldId",
107504
+ field_value="fieldValue"
107545
107505
  )],
107546
107506
  field_id="fieldId"
107547
107507
  )
@@ -107717,13 +107677,11 @@ class CfnDashboard(
107717
107677
  collapse_state_options=[quicksight.CfnDashboard.PivotTableFieldCollapseStateOptionProperty(
107718
107678
  target=quicksight.CfnDashboard.PivotTableFieldCollapseStateTargetProperty(
107719
107679
  field_data_path_values=[quicksight.CfnDashboard.DataPathValueProperty(
107720
- field_id="fieldId",
107721
- field_value="fieldValue",
107722
-
107723
- # the properties below are optional
107724
107680
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
107725
107681
  pivot_table_data_path_type="pivotTableDataPathType"
107726
- )
107682
+ ),
107683
+ field_id="fieldId",
107684
+ field_value="fieldValue"
107727
107685
  )],
107728
107686
  field_id="fieldId"
107729
107687
  ),
@@ -107733,13 +107691,11 @@ class CfnDashboard(
107733
107691
  )],
107734
107692
  data_path_options=[quicksight.CfnDashboard.PivotTableDataPathOptionProperty(
107735
107693
  data_path_list=[quicksight.CfnDashboard.DataPathValueProperty(
107736
- field_id="fieldId",
107737
- field_value="fieldValue",
107738
-
107739
- # the properties below are optional
107740
107694
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
107741
107695
  pivot_table_data_path_type="pivotTableDataPathType"
107742
- )
107696
+ ),
107697
+ field_id="fieldId",
107698
+ field_value="fieldValue"
107743
107699
  )],
107744
107700
 
107745
107701
  # the properties below are optional
@@ -108620,13 +108576,11 @@ class CfnDashboard(
108620
108576
  data_path=quicksight.CfnDashboard.DataPathSortProperty(
108621
108577
  direction="direction",
108622
108578
  sort_paths=[quicksight.CfnDashboard.DataPathValueProperty(
108623
- field_id="fieldId",
108624
- field_value="fieldValue",
108625
-
108626
- # the properties below are optional
108627
108579
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
108628
108580
  pivot_table_data_path_type="pivotTableDataPathType"
108629
- )
108581
+ ),
108582
+ field_id="fieldId",
108583
+ field_value="fieldValue"
108630
108584
  )]
108631
108585
  ),
108632
108586
  field=quicksight.CfnDashboard.FieldSortProperty(
@@ -108746,13 +108700,11 @@ class CfnDashboard(
108746
108700
  data_path=quicksight.CfnDashboard.DataPathSortProperty(
108747
108701
  direction="direction",
108748
108702
  sort_paths=[quicksight.CfnDashboard.DataPathValueProperty(
108749
- field_id="fieldId",
108750
- field_value="fieldValue",
108751
-
108752
- # the properties below are optional
108753
108703
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
108754
108704
  pivot_table_data_path_type="pivotTableDataPathType"
108755
- )
108705
+ ),
108706
+ field_id="fieldId",
108707
+ field_value="fieldValue"
108756
108708
  )]
108757
108709
  ),
108758
108710
  field=quicksight.CfnDashboard.FieldSortProperty(
@@ -125151,13 +125103,11 @@ class CfnDashboard(
125151
125103
  color_map=[quicksight.CfnDashboard.DataPathColorProperty(
125152
125104
  color="color",
125153
125105
  element=quicksight.CfnDashboard.DataPathValueProperty(
125154
- field_id="fieldId",
125155
- field_value="fieldValue",
125156
-
125157
- # the properties below are optional
125158
125106
  data_path_type=quicksight.CfnDashboard.DataPathTypeProperty(
125159
125107
  pivot_table_data_path_type="pivotTableDataPathType"
125160
- )
125108
+ ),
125109
+ field_id="fieldId",
125110
+ field_value="fieldValue"
125161
125111
  ),
125162
125112
 
125163
125113
  # the properties below are optional
@@ -149997,13 +149947,11 @@ class CfnTemplate(
149997
149947
  data_path_color_property = quicksight.CfnTemplate.DataPathColorProperty(
149998
149948
  color="color",
149999
149949
  element=quicksight.CfnTemplate.DataPathValueProperty(
150000
- field_id="fieldId",
150001
- field_value="fieldValue",
150002
-
150003
- # the properties below are optional
150004
149950
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
150005
149951
  pivot_table_data_path_type="pivotTableDataPathType"
150006
- )
149952
+ ),
149953
+ field_id="fieldId",
149954
+ field_value="fieldValue"
150007
149955
  ),
150008
149956
 
150009
149957
  # the properties below are optional
@@ -150182,13 +150130,11 @@ class CfnTemplate(
150182
150130
  data_path_sort_property = quicksight.CfnTemplate.DataPathSortProperty(
150183
150131
  direction="direction",
150184
150132
  sort_paths=[quicksight.CfnTemplate.DataPathValueProperty(
150185
- field_id="fieldId",
150186
- field_value="fieldValue",
150187
-
150188
- # the properties below are optional
150189
150133
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
150190
150134
  pivot_table_data_path_type="pivotTableDataPathType"
150191
- )
150135
+ ),
150136
+ field_id="fieldId",
150137
+ field_value="fieldValue"
150192
150138
  )]
150193
150139
  )
150194
150140
  '''
@@ -150298,24 +150244,24 @@ class CfnTemplate(
150298
150244
  jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.DataPathValueProperty",
150299
150245
  jsii_struct_bases=[],
150300
150246
  name_mapping={
150247
+ "data_path_type": "dataPathType",
150301
150248
  "field_id": "fieldId",
150302
150249
  "field_value": "fieldValue",
150303
- "data_path_type": "dataPathType",
150304
150250
  },
150305
150251
  )
150306
150252
  class DataPathValueProperty:
150307
150253
  def __init__(
150308
150254
  self,
150309
150255
  *,
150310
- field_id: builtins.str,
150311
- field_value: builtins.str,
150312
150256
  data_path_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.DataPathTypeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
150257
+ field_id: typing.Optional[builtins.str] = None,
150258
+ field_value: typing.Optional[builtins.str] = None,
150313
150259
  ) -> None:
150314
150260
  '''The data path that needs to be sorted.
150315
150261
 
150262
+ :param data_path_type: The type configuration of the field.
150316
150263
  :param field_id: The field ID of the field that needs to be sorted.
150317
150264
  :param field_value: The actual value of the field that needs to be sorted.
150318
- :param data_path_type: The type configuration of the field.
150319
150265
 
150320
150266
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathvalue.html
150321
150267
  :exampleMetadata: fixture=_generated
@@ -150327,57 +150273,54 @@ class CfnTemplate(
150327
150273
  from aws_cdk import aws_quicksight as quicksight
150328
150274
 
150329
150275
  data_path_value_property = quicksight.CfnTemplate.DataPathValueProperty(
150330
- field_id="fieldId",
150331
- field_value="fieldValue",
150332
-
150333
- # the properties below are optional
150334
150276
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
150335
150277
  pivot_table_data_path_type="pivotTableDataPathType"
150336
- )
150278
+ ),
150279
+ field_id="fieldId",
150280
+ field_value="fieldValue"
150337
150281
  )
150338
150282
  '''
150339
150283
  if __debug__:
150340
150284
  type_hints = typing.get_type_hints(_typecheckingstub__9e04bfec14b8d51fc22ec61aabb0b7e1834dccf8ebad59c991cb5c7766c3182f)
150285
+ check_type(argname="argument data_path_type", value=data_path_type, expected_type=type_hints["data_path_type"])
150341
150286
  check_type(argname="argument field_id", value=field_id, expected_type=type_hints["field_id"])
150342
150287
  check_type(argname="argument field_value", value=field_value, expected_type=type_hints["field_value"])
150343
- check_type(argname="argument data_path_type", value=data_path_type, expected_type=type_hints["data_path_type"])
150344
- self._values: typing.Dict[builtins.str, typing.Any] = {
150345
- "field_id": field_id,
150346
- "field_value": field_value,
150347
- }
150288
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
150348
150289
  if data_path_type is not None:
150349
150290
  self._values["data_path_type"] = data_path_type
150291
+ if field_id is not None:
150292
+ self._values["field_id"] = field_id
150293
+ if field_value is not None:
150294
+ self._values["field_value"] = field_value
150350
150295
 
150351
150296
  @builtins.property
150352
- def field_id(self) -> builtins.str:
150297
+ def data_path_type(
150298
+ self,
150299
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.DataPathTypeProperty"]]:
150300
+ '''The type configuration of the field.
150301
+
150302
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathvalue.html#cfn-quicksight-template-datapathvalue-datapathtype
150303
+ '''
150304
+ result = self._values.get("data_path_type")
150305
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.DataPathTypeProperty"]], result)
150306
+
150307
+ @builtins.property
150308
+ def field_id(self) -> typing.Optional[builtins.str]:
150353
150309
  '''The field ID of the field that needs to be sorted.
150354
150310
 
150355
150311
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathvalue.html#cfn-quicksight-template-datapathvalue-fieldid
150356
150312
  '''
150357
150313
  result = self._values.get("field_id")
150358
- assert result is not None, "Required property 'field_id' is missing"
150359
- return typing.cast(builtins.str, result)
150314
+ return typing.cast(typing.Optional[builtins.str], result)
150360
150315
 
150361
150316
  @builtins.property
150362
- def field_value(self) -> builtins.str:
150317
+ def field_value(self) -> typing.Optional[builtins.str]:
150363
150318
  '''The actual value of the field that needs to be sorted.
150364
150319
 
150365
150320
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathvalue.html#cfn-quicksight-template-datapathvalue-fieldvalue
150366
150321
  '''
150367
150322
  result = self._values.get("field_value")
150368
- assert result is not None, "Required property 'field_value' is missing"
150369
- return typing.cast(builtins.str, result)
150370
-
150371
- @builtins.property
150372
- def data_path_type(
150373
- self,
150374
- ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.DataPathTypeProperty"]]:
150375
- '''The type configuration of the field.
150376
-
150377
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathvalue.html#cfn-quicksight-template-datapathvalue-datapathtype
150378
- '''
150379
- result = self._values.get("data_path_type")
150380
- return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.DataPathTypeProperty"]], result)
150323
+ return typing.cast(typing.Optional[builtins.str], result)
150381
150324
 
150382
150325
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
150383
150326
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -179944,13 +179887,11 @@ class CfnTemplate(
179944
179887
  data_path=quicksight.CfnTemplate.DataPathSortProperty(
179945
179888
  direction="direction",
179946
179889
  sort_paths=[quicksight.CfnTemplate.DataPathValueProperty(
179947
- field_id="fieldId",
179948
- field_value="fieldValue",
179949
-
179950
- # the properties below are optional
179951
179890
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
179952
179891
  pivot_table_data_path_type="pivotTableDataPathType"
179953
- )
179892
+ ),
179893
+ field_id="fieldId",
179894
+ field_value="fieldValue"
179954
179895
  )]
179955
179896
  ),
179956
179897
  field=quicksight.CfnTemplate.FieldSortProperty(
@@ -180752,13 +180693,11 @@ class CfnTemplate(
180752
180693
 
180753
180694
  pivot_table_data_path_option_property = quicksight.CfnTemplate.PivotTableDataPathOptionProperty(
180754
180695
  data_path_list=[quicksight.CfnTemplate.DataPathValueProperty(
180755
- field_id="fieldId",
180756
- field_value="fieldValue",
180757
-
180758
- # the properties below are optional
180759
180696
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
180760
180697
  pivot_table_data_path_type="pivotTableDataPathType"
180761
- )
180698
+ ),
180699
+ field_id="fieldId",
180700
+ field_value="fieldValue"
180762
180701
  )],
180763
180702
 
180764
180703
  # the properties below are optional
@@ -180836,13 +180775,11 @@ class CfnTemplate(
180836
180775
  pivot_table_field_collapse_state_option_property = quicksight.CfnTemplate.PivotTableFieldCollapseStateOptionProperty(
180837
180776
  target=quicksight.CfnTemplate.PivotTableFieldCollapseStateTargetProperty(
180838
180777
  field_data_path_values=[quicksight.CfnTemplate.DataPathValueProperty(
180839
- field_id="fieldId",
180840
- field_value="fieldValue",
180841
-
180842
- # the properties below are optional
180843
180778
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
180844
180779
  pivot_table_data_path_type="pivotTableDataPathType"
180845
- )
180780
+ ),
180781
+ field_id="fieldId",
180782
+ field_value="fieldValue"
180846
180783
  )],
180847
180784
  field_id="fieldId"
180848
180785
  ),
@@ -180927,13 +180864,11 @@ class CfnTemplate(
180927
180864
 
180928
180865
  pivot_table_field_collapse_state_target_property = quicksight.CfnTemplate.PivotTableFieldCollapseStateTargetProperty(
180929
180866
  field_data_path_values=[quicksight.CfnTemplate.DataPathValueProperty(
180930
- field_id="fieldId",
180931
- field_value="fieldValue",
180932
-
180933
- # the properties below are optional
180934
180867
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
180935
180868
  pivot_table_data_path_type="pivotTableDataPathType"
180936
- )
180869
+ ),
180870
+ field_id="fieldId",
180871
+ field_value="fieldValue"
180937
180872
  )],
180938
180873
  field_id="fieldId"
180939
180874
  )
@@ -181109,13 +181044,11 @@ class CfnTemplate(
181109
181044
  collapse_state_options=[quicksight.CfnTemplate.PivotTableFieldCollapseStateOptionProperty(
181110
181045
  target=quicksight.CfnTemplate.PivotTableFieldCollapseStateTargetProperty(
181111
181046
  field_data_path_values=[quicksight.CfnTemplate.DataPathValueProperty(
181112
- field_id="fieldId",
181113
- field_value="fieldValue",
181114
-
181115
- # the properties below are optional
181116
181047
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
181117
181048
  pivot_table_data_path_type="pivotTableDataPathType"
181118
- )
181049
+ ),
181050
+ field_id="fieldId",
181051
+ field_value="fieldValue"
181119
181052
  )],
181120
181053
  field_id="fieldId"
181121
181054
  ),
@@ -181125,13 +181058,11 @@ class CfnTemplate(
181125
181058
  )],
181126
181059
  data_path_options=[quicksight.CfnTemplate.PivotTableDataPathOptionProperty(
181127
181060
  data_path_list=[quicksight.CfnTemplate.DataPathValueProperty(
181128
- field_id="fieldId",
181129
- field_value="fieldValue",
181130
-
181131
- # the properties below are optional
181132
181061
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
181133
181062
  pivot_table_data_path_type="pivotTableDataPathType"
181134
- )
181063
+ ),
181064
+ field_id="fieldId",
181065
+ field_value="fieldValue"
181135
181066
  )],
181136
181067
 
181137
181068
  # the properties below are optional
@@ -182012,13 +181943,11 @@ class CfnTemplate(
182012
181943
  data_path=quicksight.CfnTemplate.DataPathSortProperty(
182013
181944
  direction="direction",
182014
181945
  sort_paths=[quicksight.CfnTemplate.DataPathValueProperty(
182015
- field_id="fieldId",
182016
- field_value="fieldValue",
182017
-
182018
- # the properties below are optional
182019
181946
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
182020
181947
  pivot_table_data_path_type="pivotTableDataPathType"
182021
- )
181948
+ ),
181949
+ field_id="fieldId",
181950
+ field_value="fieldValue"
182022
181951
  )]
182023
181952
  ),
182024
181953
  field=quicksight.CfnTemplate.FieldSortProperty(
@@ -182138,13 +182067,11 @@ class CfnTemplate(
182138
182067
  data_path=quicksight.CfnTemplate.DataPathSortProperty(
182139
182068
  direction="direction",
182140
182069
  sort_paths=[quicksight.CfnTemplate.DataPathValueProperty(
182141
- field_id="fieldId",
182142
- field_value="fieldValue",
182143
-
182144
- # the properties below are optional
182145
182070
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
182146
182071
  pivot_table_data_path_type="pivotTableDataPathType"
182147
- )
182072
+ ),
182073
+ field_id="fieldId",
182074
+ field_value="fieldValue"
182148
182075
  )]
182149
182076
  ),
182150
182077
  field=quicksight.CfnTemplate.FieldSortProperty(
@@ -198948,13 +198875,11 @@ class CfnTemplate(
198948
198875
  color_map=[quicksight.CfnTemplate.DataPathColorProperty(
198949
198876
  color="color",
198950
198877
  element=quicksight.CfnTemplate.DataPathValueProperty(
198951
- field_id="fieldId",
198952
- field_value="fieldValue",
198953
-
198954
- # the properties below are optional
198955
198878
  data_path_type=quicksight.CfnTemplate.DataPathTypeProperty(
198956
198879
  pivot_table_data_path_type="pivotTableDataPathType"
198957
- )
198880
+ ),
198881
+ field_id="fieldId",
198882
+ field_value="fieldValue"
198958
198883
  ),
198959
198884
 
198960
198885
  # the properties below are optional
@@ -210185,9 +210110,9 @@ def _typecheckingstub__9124deacbcb1f63197a3bd5a840753ac0339784eda57ade6bb68b6fca
210185
210110
 
210186
210111
  def _typecheckingstub__ba849ca69e22a9c090b73d793791dc533d8bf31d54e27c2ca76b1b941a6ce8d2(
210187
210112
  *,
210188
- field_id: builtins.str,
210189
- field_value: builtins.str,
210190
210113
  data_path_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.DataPathTypeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
210114
+ field_id: typing.Optional[builtins.str] = None,
210115
+ field_value: typing.Optional[builtins.str] = None,
210191
210116
  ) -> None:
210192
210117
  """Type checking stubs"""
210193
210118
  pass
@@ -214722,9 +214647,9 @@ def _typecheckingstub__38b24f0de1a215ef94744ac397948cf3f58954b385a4af3005fb01fe6
214722
214647
 
214723
214648
  def _typecheckingstub__87f049f31df40ffc5c192a50ab46cff21e148d108d92cf10d0d9b6b6269d6371(
214724
214649
  *,
214725
- field_id: builtins.str,
214726
- field_value: builtins.str,
214727
214650
  data_path_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DataPathTypeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
214651
+ field_id: typing.Optional[builtins.str] = None,
214652
+ field_value: typing.Optional[builtins.str] = None,
214728
214653
  ) -> None:
214729
214654
  """Type checking stubs"""
214730
214655
  pass
@@ -220247,9 +220172,9 @@ def _typecheckingstub__ed5da29da1a549486e1dd3203d56e63d68b2ee2d0ff2cbaa0dceb7262
220247
220172
 
220248
220173
  def _typecheckingstub__9e04bfec14b8d51fc22ec61aabb0b7e1834dccf8ebad59c991cb5c7766c3182f(
220249
220174
  *,
220250
- field_id: builtins.str,
220251
- field_value: builtins.str,
220252
220175
  data_path_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.DataPathTypeProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
220176
+ field_id: typing.Optional[builtins.str] = None,
220177
+ field_value: typing.Optional[builtins.str] = None,
220253
220178
  ) -> None:
220254
220179
  """Type checking stubs"""
220255
220180
  pass