aws-cdk-lib 2.162.1__py3-none-any.whl → 2.163.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.
- aws_cdk/__init__.py +5 -7
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.162.1.jsii.tgz → aws-cdk-lib@2.163.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +7 -7
- aws_cdk/aws_appflow/__init__.py +30 -16
- aws_cdk/aws_appsync/__init__.py +11 -21
- aws_cdk/aws_autoscaling/__init__.py +123 -0
- aws_cdk/aws_b2bi/__init__.py +83 -57
- aws_cdk/aws_cloudformation/__init__.py +5 -7
- aws_cdk/aws_codebuild/__init__.py +19 -40
- aws_cdk/aws_codepipeline/__init__.py +88 -7
- aws_cdk/aws_cognito/__init__.py +282 -168
- aws_cdk/aws_dms/__init__.py +1076 -117
- aws_cdk/aws_docdb/__init__.py +19 -13
- aws_cdk/aws_dynamodb/__init__.py +43 -22
- aws_cdk/aws_ec2/__init__.py +1213 -38
- aws_cdk/aws_ecs/__init__.py +187 -18
- aws_cdk/aws_ecs_patterns/__init__.py +189 -27
- aws_cdk/aws_efs/__init__.py +56 -37
- aws_cdk/aws_eks/__init__.py +6 -2
- aws_cdk/aws_elasticache/__init__.py +118 -118
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +21 -1
- aws_cdk/aws_emr/__init__.py +124 -57
- aws_cdk/aws_events/__init__.py +40 -0
- aws_cdk/aws_fms/__init__.py +757 -8
- aws_cdk/aws_fsx/__init__.py +245 -10
- aws_cdk/aws_gamelift/__init__.py +121 -0
- aws_cdk/aws_glue/__init__.py +344 -61
- aws_cdk/aws_iam/__init__.py +44 -0
- aws_cdk/aws_identitystore/__init__.py +4 -2
- aws_cdk/aws_iot/__init__.py +40 -12
- aws_cdk/aws_kinesis/__init__.py +239 -0
- aws_cdk/aws_kms/__init__.py +92 -3
- aws_cdk/aws_lambda/__init__.py +2 -2
- aws_cdk/aws_mediapackagev2/__init__.py +26 -10
- aws_cdk/aws_memorydb/__init__.py +7 -7
- aws_cdk/aws_networkfirewall/__init__.py +89 -0
- aws_cdk/aws_qbusiness/__init__.py +51 -7
- aws_cdk/aws_quicksight/__init__.py +221 -87
- aws_cdk/aws_rds/__init__.py +376 -75
- aws_cdk/aws_redshift/__init__.py +493 -13
- aws_cdk/aws_route53profiles/__init__.py +4 -2
- aws_cdk/aws_route53resolver/__init__.py +26 -60
- aws_cdk/aws_s3/__init__.py +104 -4
- aws_cdk/aws_s3express/__init__.py +73 -13
- aws_cdk/aws_s3outposts/__init__.py +21 -12
- aws_cdk/aws_sagemaker/__init__.py +4 -44
- aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
- aws_cdk/aws_stepfunctions/__init__.py +529 -156
- aws_cdk/aws_transfer/__init__.py +15 -4
- aws_cdk/aws_waf/__init__.py +11 -11
- aws_cdk/aws_wafregional/__init__.py +12 -12
- aws_cdk/aws_wisdom/__init__.py +710 -5
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/RECORD +59 -59
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.162.1.dist-info → aws_cdk_lib-2.163.1.dist-info}/top_level.txt +0 -0
|
@@ -97,6 +97,7 @@ class CfnAnalysis(
|
|
|
97
97
|
name: builtins.str,
|
|
98
98
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.AnalysisDefinitionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
99
99
|
errors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.AnalysisErrorProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
100
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
100
101
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
101
102
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ResourcePermissionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
102
103
|
sheets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.SheetProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -114,6 +115,7 @@ class CfnAnalysis(
|
|
|
114
115
|
:param name: A descriptive name for the analysis that you're creating. This name displays for the analysis in the Amazon QuickSight console.
|
|
115
116
|
:param definition:
|
|
116
117
|
:param errors: Errors associated with the analysis.
|
|
118
|
+
:param folder_arns:
|
|
117
119
|
:param parameters: The parameter names and override values that you want to use. An analysis can have any parameter type, and some parameters might accept multiple values.
|
|
118
120
|
:param permissions: A structure that describes the principals and the resource-level permissions on an analysis. You can use the ``Permissions`` structure to grant permissions by providing a list of AWS Identity and Access Management (IAM) action information for each principal listed by Amazon Resource Name (ARN). To specify no permissions, omit ``Permissions`` .
|
|
119
121
|
:param sheets: A list of the associated sheets with the unique identifier and name of each sheet.
|
|
@@ -133,6 +135,7 @@ class CfnAnalysis(
|
|
|
133
135
|
name=name,
|
|
134
136
|
definition=definition,
|
|
135
137
|
errors=errors,
|
|
138
|
+
folder_arns=folder_arns,
|
|
136
139
|
parameters=parameters,
|
|
137
140
|
permissions=permissions,
|
|
138
141
|
sheets=sheets,
|
|
@@ -312,6 +315,18 @@ class CfnAnalysis(
|
|
|
312
315
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
313
316
|
jsii.set(self, "errors", value) # pyright: ignore[reportArgumentType]
|
|
314
317
|
|
|
318
|
+
@builtins.property
|
|
319
|
+
@jsii.member(jsii_name="folderArns")
|
|
320
|
+
def folder_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
321
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "folderArns"))
|
|
322
|
+
|
|
323
|
+
@folder_arns.setter
|
|
324
|
+
def folder_arns(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
|
|
325
|
+
if __debug__:
|
|
326
|
+
type_hints = typing.get_type_hints(_typecheckingstub__acb1ee971a3005e9aaf671478425a2defce0c42a4798b74fef66876536bc6205)
|
|
327
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
328
|
+
jsii.set(self, "folderArns", value) # pyright: ignore[reportArgumentType]
|
|
329
|
+
|
|
315
330
|
@builtins.property
|
|
316
331
|
@jsii.member(jsii_name="parameters")
|
|
317
332
|
def parameters(
|
|
@@ -16658,7 +16673,7 @@ class CfnAnalysis(
|
|
|
16658
16673
|
|
|
16659
16674
|
:param custom_values_configuration: The configuration of custom values for destination parameter in ``DestinationParameterValueConfiguration`` .
|
|
16660
16675
|
:param select_all_value_options: The configuration that selects all options.
|
|
16661
|
-
:param source_column:
|
|
16676
|
+
:param source_column: A column of a data set.
|
|
16662
16677
|
:param source_field: The source field ID of the destination parameter.
|
|
16663
16678
|
:param source_parameter_name: The source parameter name of the destination parameter.
|
|
16664
16679
|
|
|
@@ -16735,7 +16750,8 @@ class CfnAnalysis(
|
|
|
16735
16750
|
def source_column(
|
|
16736
16751
|
self,
|
|
16737
16752
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ColumnIdentifierProperty"]]:
|
|
16738
|
-
'''
|
|
16753
|
+
'''A column of a data set.
|
|
16754
|
+
|
|
16739
16755
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-destinationparametervalueconfiguration.html#cfn-quicksight-analysis-destinationparametervalueconfiguration-sourcecolumn
|
|
16740
16756
|
'''
|
|
16741
16757
|
result = self._values.get("source_column")
|
|
@@ -67686,6 +67702,7 @@ class CfnAnalysis(
|
|
|
67686
67702
|
"name": "name",
|
|
67687
67703
|
"definition": "definition",
|
|
67688
67704
|
"errors": "errors",
|
|
67705
|
+
"folder_arns": "folderArns",
|
|
67689
67706
|
"parameters": "parameters",
|
|
67690
67707
|
"permissions": "permissions",
|
|
67691
67708
|
"sheets": "sheets",
|
|
@@ -67705,6 +67722,7 @@ class CfnAnalysisProps:
|
|
|
67705
67722
|
name: builtins.str,
|
|
67706
67723
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.AnalysisDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
67707
67724
|
errors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.AnalysisErrorProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
67725
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
67708
67726
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
67709
67727
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
67710
67728
|
sheets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.SheetProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -67721,6 +67739,7 @@ class CfnAnalysisProps:
|
|
|
67721
67739
|
:param name: A descriptive name for the analysis that you're creating. This name displays for the analysis in the Amazon QuickSight console.
|
|
67722
67740
|
:param definition:
|
|
67723
67741
|
:param errors: Errors associated with the analysis.
|
|
67742
|
+
:param folder_arns:
|
|
67724
67743
|
:param parameters: The parameter names and override values that you want to use. An analysis can have any parameter type, and some parameters might accept multiple values.
|
|
67725
67744
|
:param permissions: A structure that describes the principals and the resource-level permissions on an analysis. You can use the ``Permissions`` structure to grant permissions by providing a list of AWS Identity and Access Management (IAM) action information for each principal listed by Amazon Resource Name (ARN). To specify no permissions, omit ``Permissions`` .
|
|
67726
67745
|
:param sheets: A list of the associated sheets with the unique identifier and name of each sheet.
|
|
@@ -67744,6 +67763,7 @@ class CfnAnalysisProps:
|
|
|
67744
67763
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
67745
67764
|
check_type(argname="argument definition", value=definition, expected_type=type_hints["definition"])
|
|
67746
67765
|
check_type(argname="argument errors", value=errors, expected_type=type_hints["errors"])
|
|
67766
|
+
check_type(argname="argument folder_arns", value=folder_arns, expected_type=type_hints["folder_arns"])
|
|
67747
67767
|
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
67748
67768
|
check_type(argname="argument permissions", value=permissions, expected_type=type_hints["permissions"])
|
|
67749
67769
|
check_type(argname="argument sheets", value=sheets, expected_type=type_hints["sheets"])
|
|
@@ -67761,6 +67781,8 @@ class CfnAnalysisProps:
|
|
|
67761
67781
|
self._values["definition"] = definition
|
|
67762
67782
|
if errors is not None:
|
|
67763
67783
|
self._values["errors"] = errors
|
|
67784
|
+
if folder_arns is not None:
|
|
67785
|
+
self._values["folder_arns"] = folder_arns
|
|
67764
67786
|
if parameters is not None:
|
|
67765
67787
|
self._values["parameters"] = parameters
|
|
67766
67788
|
if permissions is not None:
|
|
@@ -67833,6 +67855,14 @@ class CfnAnalysisProps:
|
|
|
67833
67855
|
result = self._values.get("errors")
|
|
67834
67856
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnAnalysis.AnalysisErrorProperty]]]], result)
|
|
67835
67857
|
|
|
67858
|
+
@builtins.property
|
|
67859
|
+
def folder_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
67860
|
+
'''
|
|
67861
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-analysis.html#cfn-quicksight-analysis-folderarns
|
|
67862
|
+
'''
|
|
67863
|
+
result = self._values.get("folder_arns")
|
|
67864
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
67865
|
+
|
|
67836
67866
|
@builtins.property
|
|
67837
67867
|
def parameters(
|
|
67838
67868
|
self,
|
|
@@ -67970,6 +68000,7 @@ class CfnDashboard(
|
|
|
67970
68000
|
name: builtins.str,
|
|
67971
68001
|
dashboard_publish_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.DashboardPublishOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
67972
68002
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.DashboardVersionDefinitionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
68003
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
67973
68004
|
link_entities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
67974
68005
|
link_sharing_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.LinkSharingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
67975
68006
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.ParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -67988,6 +68019,7 @@ class CfnDashboard(
|
|
|
67988
68019
|
:param name: The display name of the dashboard.
|
|
67989
68020
|
:param dashboard_publish_options: Options for publishing the dashboard when you create it:. - ``AvailabilityStatus`` for ``AdHocFilteringOption`` - This status can be either ``ENABLED`` or ``DISABLED`` . When this is set to ``DISABLED`` , Amazon QuickSight disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This option is ``ENABLED`` by default. - ``AvailabilityStatus`` for ``ExportToCSVOption`` - This status can be either ``ENABLED`` or ``DISABLED`` . The visual option to export data to .CSV format isn't enabled when this is set to ``DISABLED`` . This option is ``ENABLED`` by default. - ``VisibilityState`` for ``SheetControlsOption`` - This visibility state can be either ``COLLAPSED`` or ``EXPANDED`` . This option is ``COLLAPSED`` by default.
|
|
67990
68021
|
:param definition:
|
|
68022
|
+
:param folder_arns:
|
|
67991
68023
|
:param link_entities: A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
|
67992
68024
|
:param link_sharing_configuration: A structure that contains the link sharing configurations that you want to apply overrides to.
|
|
67993
68025
|
:param parameters: The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values.
|
|
@@ -68008,6 +68040,7 @@ class CfnDashboard(
|
|
|
68008
68040
|
name=name,
|
|
68009
68041
|
dashboard_publish_options=dashboard_publish_options,
|
|
68010
68042
|
definition=definition,
|
|
68043
|
+
folder_arns=folder_arns,
|
|
68011
68044
|
link_entities=link_entities,
|
|
68012
68045
|
link_sharing_configuration=link_sharing_configuration,
|
|
68013
68046
|
parameters=parameters,
|
|
@@ -68260,6 +68293,18 @@ class CfnDashboard(
|
|
|
68260
68293
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
68261
68294
|
jsii.set(self, "definition", value) # pyright: ignore[reportArgumentType]
|
|
68262
68295
|
|
|
68296
|
+
@builtins.property
|
|
68297
|
+
@jsii.member(jsii_name="folderArns")
|
|
68298
|
+
def folder_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
68299
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "folderArns"))
|
|
68300
|
+
|
|
68301
|
+
@folder_arns.setter
|
|
68302
|
+
def folder_arns(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
|
|
68303
|
+
if __debug__:
|
|
68304
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7b871aacfd7bae026812fa0ebc5b91fb19eb27a1d0030db6c8bad9798d93cc45)
|
|
68305
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
68306
|
+
jsii.set(self, "folderArns", value) # pyright: ignore[reportArgumentType]
|
|
68307
|
+
|
|
68263
68308
|
@builtins.property
|
|
68264
68309
|
@jsii.member(jsii_name="linkEntities")
|
|
68265
68310
|
def link_entities(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -85357,7 +85402,7 @@ class CfnDashboard(
|
|
|
85357
85402
|
|
|
85358
85403
|
:param custom_values_configuration: The configuration of custom values for destination parameter in ``DestinationParameterValueConfiguration`` .
|
|
85359
85404
|
:param select_all_value_options: The configuration that selects all options.
|
|
85360
|
-
:param source_column:
|
|
85405
|
+
:param source_column: A column of a data set.
|
|
85361
85406
|
:param source_field: The source field ID of the destination parameter.
|
|
85362
85407
|
:param source_parameter_name: The source parameter name of the destination parameter.
|
|
85363
85408
|
|
|
@@ -85434,7 +85479,8 @@ class CfnDashboard(
|
|
|
85434
85479
|
def source_column(
|
|
85435
85480
|
self,
|
|
85436
85481
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ColumnIdentifierProperty"]]:
|
|
85437
|
-
'''
|
|
85482
|
+
'''A column of a data set.
|
|
85483
|
+
|
|
85438
85484
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-destinationparametervalueconfiguration.html#cfn-quicksight-dashboard-destinationparametervalueconfiguration-sourcecolumn
|
|
85439
85485
|
'''
|
|
85440
85486
|
result = self._values.get("source_column")
|
|
@@ -136778,6 +136824,7 @@ class CfnDashboard(
|
|
|
136778
136824
|
"name": "name",
|
|
136779
136825
|
"dashboard_publish_options": "dashboardPublishOptions",
|
|
136780
136826
|
"definition": "definition",
|
|
136827
|
+
"folder_arns": "folderArns",
|
|
136781
136828
|
"link_entities": "linkEntities",
|
|
136782
136829
|
"link_sharing_configuration": "linkSharingConfiguration",
|
|
136783
136830
|
"parameters": "parameters",
|
|
@@ -136798,6 +136845,7 @@ class CfnDashboardProps:
|
|
|
136798
136845
|
name: builtins.str,
|
|
136799
136846
|
dashboard_publish_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DashboardPublishOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
136800
136847
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DashboardVersionDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
136848
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
136801
136849
|
link_entities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
136802
136850
|
link_sharing_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.LinkSharingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
136803
136851
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -136815,6 +136863,7 @@ class CfnDashboardProps:
|
|
|
136815
136863
|
:param name: The display name of the dashboard.
|
|
136816
136864
|
:param dashboard_publish_options: Options for publishing the dashboard when you create it:. - ``AvailabilityStatus`` for ``AdHocFilteringOption`` - This status can be either ``ENABLED`` or ``DISABLED`` . When this is set to ``DISABLED`` , Amazon QuickSight disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This option is ``ENABLED`` by default. - ``AvailabilityStatus`` for ``ExportToCSVOption`` - This status can be either ``ENABLED`` or ``DISABLED`` . The visual option to export data to .CSV format isn't enabled when this is set to ``DISABLED`` . This option is ``ENABLED`` by default. - ``VisibilityState`` for ``SheetControlsOption`` - This visibility state can be either ``COLLAPSED`` or ``EXPANDED`` . This option is ``COLLAPSED`` by default.
|
|
136817
136865
|
:param definition:
|
|
136866
|
+
:param folder_arns:
|
|
136818
136867
|
:param link_entities: A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
|
136819
136868
|
:param link_sharing_configuration: A structure that contains the link sharing configurations that you want to apply overrides to.
|
|
136820
136869
|
:param parameters: The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values.
|
|
@@ -136839,6 +136888,7 @@ class CfnDashboardProps:
|
|
|
136839
136888
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
136840
136889
|
check_type(argname="argument dashboard_publish_options", value=dashboard_publish_options, expected_type=type_hints["dashboard_publish_options"])
|
|
136841
136890
|
check_type(argname="argument definition", value=definition, expected_type=type_hints["definition"])
|
|
136891
|
+
check_type(argname="argument folder_arns", value=folder_arns, expected_type=type_hints["folder_arns"])
|
|
136842
136892
|
check_type(argname="argument link_entities", value=link_entities, expected_type=type_hints["link_entities"])
|
|
136843
136893
|
check_type(argname="argument link_sharing_configuration", value=link_sharing_configuration, expected_type=type_hints["link_sharing_configuration"])
|
|
136844
136894
|
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
@@ -136857,6 +136907,8 @@ class CfnDashboardProps:
|
|
|
136857
136907
|
self._values["dashboard_publish_options"] = dashboard_publish_options
|
|
136858
136908
|
if definition is not None:
|
|
136859
136909
|
self._values["definition"] = definition
|
|
136910
|
+
if folder_arns is not None:
|
|
136911
|
+
self._values["folder_arns"] = folder_arns
|
|
136860
136912
|
if link_entities is not None:
|
|
136861
136913
|
self._values["link_entities"] = link_entities
|
|
136862
136914
|
if link_sharing_configuration is not None:
|
|
@@ -136931,6 +136983,14 @@ class CfnDashboardProps:
|
|
|
136931
136983
|
result = self._values.get("definition")
|
|
136932
136984
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDashboard.DashboardVersionDefinitionProperty]], result)
|
|
136933
136985
|
|
|
136986
|
+
@builtins.property
|
|
136987
|
+
def folder_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
136988
|
+
'''
|
|
136989
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dashboard.html#cfn-quicksight-dashboard-folderarns
|
|
136990
|
+
'''
|
|
136991
|
+
result = self._values.get("folder_arns")
|
|
136992
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
136993
|
+
|
|
136934
136994
|
@builtins.property
|
|
136935
136995
|
def link_entities(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
136936
136996
|
'''A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
|
|
@@ -137241,19 +137301,25 @@ class CfnDataSet(
|
|
|
137241
137301
|
physical_table_map={
|
|
137242
137302
|
"physical_table_map_key": quicksight.CfnDataSet.PhysicalTableProperty(
|
|
137243
137303
|
custom_sql=quicksight.CfnDataSet.CustomSqlProperty(
|
|
137304
|
+
data_source_arn="dataSourceArn",
|
|
137305
|
+
name="name",
|
|
137306
|
+
sql_query="sqlQuery",
|
|
137307
|
+
|
|
137308
|
+
# the properties below are optional
|
|
137244
137309
|
columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
137245
137310
|
name="name",
|
|
137246
137311
|
type="type",
|
|
137247
137312
|
|
|
137248
137313
|
# the properties below are optional
|
|
137249
137314
|
sub_type="subType"
|
|
137250
|
-
)]
|
|
137251
|
-
data_source_arn="dataSourceArn",
|
|
137252
|
-
name="name",
|
|
137253
|
-
sql_query="sqlQuery"
|
|
137315
|
+
)]
|
|
137254
137316
|
),
|
|
137255
137317
|
relational_table=quicksight.CfnDataSet.RelationalTableProperty(
|
|
137256
137318
|
data_source_arn="dataSourceArn",
|
|
137319
|
+
name="name",
|
|
137320
|
+
|
|
137321
|
+
# the properties below are optional
|
|
137322
|
+
catalog="catalog",
|
|
137257
137323
|
input_columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
137258
137324
|
name="name",
|
|
137259
137325
|
type="type",
|
|
@@ -137261,10 +137327,6 @@ class CfnDataSet(
|
|
|
137261
137327
|
# the properties below are optional
|
|
137262
137328
|
sub_type="subType"
|
|
137263
137329
|
)],
|
|
137264
|
-
name="name",
|
|
137265
|
-
|
|
137266
|
-
# the properties below are optional
|
|
137267
|
-
catalog="catalog",
|
|
137268
137330
|
schema="schema"
|
|
137269
137331
|
),
|
|
137270
137332
|
s3_source=quicksight.CfnDataSet.S3SourceProperty(
|
|
@@ -138309,27 +138371,27 @@ class CfnDataSet(
|
|
|
138309
138371
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSet.CustomSqlProperty",
|
|
138310
138372
|
jsii_struct_bases=[],
|
|
138311
138373
|
name_mapping={
|
|
138312
|
-
"columns": "columns",
|
|
138313
138374
|
"data_source_arn": "dataSourceArn",
|
|
138314
138375
|
"name": "name",
|
|
138315
138376
|
"sql_query": "sqlQuery",
|
|
138377
|
+
"columns": "columns",
|
|
138316
138378
|
},
|
|
138317
138379
|
)
|
|
138318
138380
|
class CustomSqlProperty:
|
|
138319
138381
|
def __init__(
|
|
138320
138382
|
self,
|
|
138321
138383
|
*,
|
|
138322
|
-
columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.InputColumnProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
138323
138384
|
data_source_arn: builtins.str,
|
|
138324
138385
|
name: builtins.str,
|
|
138325
138386
|
sql_query: builtins.str,
|
|
138387
|
+
columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.InputColumnProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
138326
138388
|
) -> None:
|
|
138327
138389
|
'''A physical table type built from the results of the custom SQL query.
|
|
138328
138390
|
|
|
138329
|
-
:param columns: The column schema from the SQL query result set.
|
|
138330
138391
|
:param data_source_arn: The Amazon Resource Name (ARN) of the data source.
|
|
138331
138392
|
:param name: A display name for the SQL query result.
|
|
138332
138393
|
:param sql_query: The SQL query.
|
|
138394
|
+
:param columns: The column schema from the SQL query result set.
|
|
138333
138395
|
|
|
138334
138396
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-customsql.html
|
|
138335
138397
|
:exampleMetadata: fixture=_generated
|
|
@@ -138341,42 +138403,33 @@ class CfnDataSet(
|
|
|
138341
138403
|
from aws_cdk import aws_quicksight as quicksight
|
|
138342
138404
|
|
|
138343
138405
|
custom_sql_property = quicksight.CfnDataSet.CustomSqlProperty(
|
|
138406
|
+
data_source_arn="dataSourceArn",
|
|
138407
|
+
name="name",
|
|
138408
|
+
sql_query="sqlQuery",
|
|
138409
|
+
|
|
138410
|
+
# the properties below are optional
|
|
138344
138411
|
columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
138345
138412
|
name="name",
|
|
138346
138413
|
type="type",
|
|
138347
138414
|
|
|
138348
138415
|
# the properties below are optional
|
|
138349
138416
|
sub_type="subType"
|
|
138350
|
-
)]
|
|
138351
|
-
data_source_arn="dataSourceArn",
|
|
138352
|
-
name="name",
|
|
138353
|
-
sql_query="sqlQuery"
|
|
138417
|
+
)]
|
|
138354
138418
|
)
|
|
138355
138419
|
'''
|
|
138356
138420
|
if __debug__:
|
|
138357
138421
|
type_hints = typing.get_type_hints(_typecheckingstub__97e4fcb997b025bd8b8162d5528bd73bc1c489c80a53a49d2bf3f33ac9c086df)
|
|
138358
|
-
check_type(argname="argument columns", value=columns, expected_type=type_hints["columns"])
|
|
138359
138422
|
check_type(argname="argument data_source_arn", value=data_source_arn, expected_type=type_hints["data_source_arn"])
|
|
138360
138423
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
138361
138424
|
check_type(argname="argument sql_query", value=sql_query, expected_type=type_hints["sql_query"])
|
|
138425
|
+
check_type(argname="argument columns", value=columns, expected_type=type_hints["columns"])
|
|
138362
138426
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
138363
|
-
"columns": columns,
|
|
138364
138427
|
"data_source_arn": data_source_arn,
|
|
138365
138428
|
"name": name,
|
|
138366
138429
|
"sql_query": sql_query,
|
|
138367
138430
|
}
|
|
138368
|
-
|
|
138369
|
-
|
|
138370
|
-
def columns(
|
|
138371
|
-
self,
|
|
138372
|
-
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]]:
|
|
138373
|
-
'''The column schema from the SQL query result set.
|
|
138374
|
-
|
|
138375
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-customsql.html#cfn-quicksight-dataset-customsql-columns
|
|
138376
|
-
'''
|
|
138377
|
-
result = self._values.get("columns")
|
|
138378
|
-
assert result is not None, "Required property 'columns' is missing"
|
|
138379
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]], result)
|
|
138431
|
+
if columns is not None:
|
|
138432
|
+
self._values["columns"] = columns
|
|
138380
138433
|
|
|
138381
138434
|
@builtins.property
|
|
138382
138435
|
def data_source_arn(self) -> builtins.str:
|
|
@@ -138408,6 +138461,17 @@ class CfnDataSet(
|
|
|
138408
138461
|
assert result is not None, "Required property 'sql_query' is missing"
|
|
138409
138462
|
return typing.cast(builtins.str, result)
|
|
138410
138463
|
|
|
138464
|
+
@builtins.property
|
|
138465
|
+
def columns(
|
|
138466
|
+
self,
|
|
138467
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]]]:
|
|
138468
|
+
'''The column schema from the SQL query result set.
|
|
138469
|
+
|
|
138470
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-customsql.html#cfn-quicksight-dataset-customsql-columns
|
|
138471
|
+
'''
|
|
138472
|
+
result = self._values.get("columns")
|
|
138473
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]]], result)
|
|
138474
|
+
|
|
138411
138475
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
138412
138476
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
138413
138477
|
|
|
@@ -140635,19 +140699,25 @@ class CfnDataSet(
|
|
|
140635
140699
|
|
|
140636
140700
|
physical_table_property = quicksight.CfnDataSet.PhysicalTableProperty(
|
|
140637
140701
|
custom_sql=quicksight.CfnDataSet.CustomSqlProperty(
|
|
140702
|
+
data_source_arn="dataSourceArn",
|
|
140703
|
+
name="name",
|
|
140704
|
+
sql_query="sqlQuery",
|
|
140705
|
+
|
|
140706
|
+
# the properties below are optional
|
|
140638
140707
|
columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
140639
140708
|
name="name",
|
|
140640
140709
|
type="type",
|
|
140641
140710
|
|
|
140642
140711
|
# the properties below are optional
|
|
140643
140712
|
sub_type="subType"
|
|
140644
|
-
)]
|
|
140645
|
-
data_source_arn="dataSourceArn",
|
|
140646
|
-
name="name",
|
|
140647
|
-
sql_query="sqlQuery"
|
|
140713
|
+
)]
|
|
140648
140714
|
),
|
|
140649
140715
|
relational_table=quicksight.CfnDataSet.RelationalTableProperty(
|
|
140650
140716
|
data_source_arn="dataSourceArn",
|
|
140717
|
+
name="name",
|
|
140718
|
+
|
|
140719
|
+
# the properties below are optional
|
|
140720
|
+
catalog="catalog",
|
|
140651
140721
|
input_columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
140652
140722
|
name="name",
|
|
140653
140723
|
type="type",
|
|
@@ -140655,10 +140725,6 @@ class CfnDataSet(
|
|
|
140655
140725
|
# the properties below are optional
|
|
140656
140726
|
sub_type="subType"
|
|
140657
140727
|
)],
|
|
140658
|
-
name="name",
|
|
140659
|
-
|
|
140660
|
-
# the properties below are optional
|
|
140661
|
-
catalog="catalog",
|
|
140662
140728
|
schema="schema"
|
|
140663
140729
|
),
|
|
140664
140730
|
s3_source=quicksight.CfnDataSet.S3SourceProperty(
|
|
@@ -140862,9 +140928,9 @@ class CfnDataSet(
|
|
|
140862
140928
|
jsii_struct_bases=[],
|
|
140863
140929
|
name_mapping={
|
|
140864
140930
|
"data_source_arn": "dataSourceArn",
|
|
140865
|
-
"input_columns": "inputColumns",
|
|
140866
140931
|
"name": "name",
|
|
140867
140932
|
"catalog": "catalog",
|
|
140933
|
+
"input_columns": "inputColumns",
|
|
140868
140934
|
"schema": "schema",
|
|
140869
140935
|
},
|
|
140870
140936
|
)
|
|
@@ -140873,17 +140939,17 @@ class CfnDataSet(
|
|
|
140873
140939
|
self,
|
|
140874
140940
|
*,
|
|
140875
140941
|
data_source_arn: builtins.str,
|
|
140876
|
-
input_columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.InputColumnProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
140877
140942
|
name: builtins.str,
|
|
140878
140943
|
catalog: typing.Optional[builtins.str] = None,
|
|
140944
|
+
input_columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.InputColumnProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
140879
140945
|
schema: typing.Optional[builtins.str] = None,
|
|
140880
140946
|
) -> None:
|
|
140881
140947
|
'''A physical table type for relational data sources.
|
|
140882
140948
|
|
|
140883
140949
|
:param data_source_arn: The Amazon Resource Name (ARN) for the data source.
|
|
140884
|
-
:param input_columns: The column schema of the table.
|
|
140885
140950
|
:param name: The name of the relational table.
|
|
140886
140951
|
:param catalog: The catalog associated with a table.
|
|
140952
|
+
:param input_columns: The column schema of the table.
|
|
140887
140953
|
:param schema: The schema name. This name applies to certain relational database engines.
|
|
140888
140954
|
|
|
140889
140955
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-relationaltable.html
|
|
@@ -140897,6 +140963,10 @@ class CfnDataSet(
|
|
|
140897
140963
|
|
|
140898
140964
|
relational_table_property = quicksight.CfnDataSet.RelationalTableProperty(
|
|
140899
140965
|
data_source_arn="dataSourceArn",
|
|
140966
|
+
name="name",
|
|
140967
|
+
|
|
140968
|
+
# the properties below are optional
|
|
140969
|
+
catalog="catalog",
|
|
140900
140970
|
input_columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
140901
140971
|
name="name",
|
|
140902
140972
|
type="type",
|
|
@@ -140904,27 +140974,24 @@ class CfnDataSet(
|
|
|
140904
140974
|
# the properties below are optional
|
|
140905
140975
|
sub_type="subType"
|
|
140906
140976
|
)],
|
|
140907
|
-
name="name",
|
|
140908
|
-
|
|
140909
|
-
# the properties below are optional
|
|
140910
|
-
catalog="catalog",
|
|
140911
140977
|
schema="schema"
|
|
140912
140978
|
)
|
|
140913
140979
|
'''
|
|
140914
140980
|
if __debug__:
|
|
140915
140981
|
type_hints = typing.get_type_hints(_typecheckingstub__bc43d1be088dad877549378a89c5cca422c52436d49d6b5d4f473a7370858ebd)
|
|
140916
140982
|
check_type(argname="argument data_source_arn", value=data_source_arn, expected_type=type_hints["data_source_arn"])
|
|
140917
|
-
check_type(argname="argument input_columns", value=input_columns, expected_type=type_hints["input_columns"])
|
|
140918
140983
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
140919
140984
|
check_type(argname="argument catalog", value=catalog, expected_type=type_hints["catalog"])
|
|
140985
|
+
check_type(argname="argument input_columns", value=input_columns, expected_type=type_hints["input_columns"])
|
|
140920
140986
|
check_type(argname="argument schema", value=schema, expected_type=type_hints["schema"])
|
|
140921
140987
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
140922
140988
|
"data_source_arn": data_source_arn,
|
|
140923
|
-
"input_columns": input_columns,
|
|
140924
140989
|
"name": name,
|
|
140925
140990
|
}
|
|
140926
140991
|
if catalog is not None:
|
|
140927
140992
|
self._values["catalog"] = catalog
|
|
140993
|
+
if input_columns is not None:
|
|
140994
|
+
self._values["input_columns"] = input_columns
|
|
140928
140995
|
if schema is not None:
|
|
140929
140996
|
self._values["schema"] = schema
|
|
140930
140997
|
|
|
@@ -140938,18 +141005,6 @@ class CfnDataSet(
|
|
|
140938
141005
|
assert result is not None, "Required property 'data_source_arn' is missing"
|
|
140939
141006
|
return typing.cast(builtins.str, result)
|
|
140940
141007
|
|
|
140941
|
-
@builtins.property
|
|
140942
|
-
def input_columns(
|
|
140943
|
-
self,
|
|
140944
|
-
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]]:
|
|
140945
|
-
'''The column schema of the table.
|
|
140946
|
-
|
|
140947
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-relationaltable.html#cfn-quicksight-dataset-relationaltable-inputcolumns
|
|
140948
|
-
'''
|
|
140949
|
-
result = self._values.get("input_columns")
|
|
140950
|
-
assert result is not None, "Required property 'input_columns' is missing"
|
|
140951
|
-
return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]], result)
|
|
140952
|
-
|
|
140953
141008
|
@builtins.property
|
|
140954
141009
|
def name(self) -> builtins.str:
|
|
140955
141010
|
'''The name of the relational table.
|
|
@@ -140969,6 +141024,17 @@ class CfnDataSet(
|
|
|
140969
141024
|
result = self._values.get("catalog")
|
|
140970
141025
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
140971
141026
|
|
|
141027
|
+
@builtins.property
|
|
141028
|
+
def input_columns(
|
|
141029
|
+
self,
|
|
141030
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]]]:
|
|
141031
|
+
'''The column schema of the table.
|
|
141032
|
+
|
|
141033
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-relationaltable.html#cfn-quicksight-dataset-relationaltable-inputcolumns
|
|
141034
|
+
'''
|
|
141035
|
+
result = self._values.get("input_columns")
|
|
141036
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.InputColumnProperty"]]]], result)
|
|
141037
|
+
|
|
140972
141038
|
@builtins.property
|
|
140973
141039
|
def schema(self) -> typing.Optional[builtins.str]:
|
|
140974
141040
|
'''The schema name.
|
|
@@ -141887,7 +141953,7 @@ class CfnDataSet(
|
|
|
141887
141953
|
:param cast_column_type_operation: A transform operation that casts a column to a different type.
|
|
141888
141954
|
:param create_columns_operation: An operation that creates calculated columns. Columns created in one such operation form a lexical closure.
|
|
141889
141955
|
:param filter_operation: An operation that filters rows based on some condition.
|
|
141890
|
-
:param override_dataset_parameter_operation:
|
|
141956
|
+
:param override_dataset_parameter_operation: A transform operation that overrides the dataset parameter values that are defined in another dataset.
|
|
141891
141957
|
:param project_operation: An operation that projects columns. Operations that come after a projection can only refer to projected columns.
|
|
141892
141958
|
:param rename_column_operation: An operation that renames a column.
|
|
141893
141959
|
:param tag_column_operation: An operation that tags a column with additional information.
|
|
@@ -142022,7 +142088,8 @@ class CfnDataSet(
|
|
|
142022
142088
|
def override_dataset_parameter_operation(
|
|
142023
142089
|
self,
|
|
142024
142090
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.OverrideDatasetParameterOperationProperty"]]:
|
|
142025
|
-
'''
|
|
142091
|
+
'''A transform operation that overrides the dataset parameter values that are defined in another dataset.
|
|
142092
|
+
|
|
142026
142093
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-transformoperation.html#cfn-quicksight-dataset-transformoperation-overridedatasetparameteroperation
|
|
142027
142094
|
'''
|
|
142028
142095
|
result = self._values.get("override_dataset_parameter_operation")
|
|
@@ -142529,19 +142596,25 @@ class CfnDataSetProps:
|
|
|
142529
142596
|
physical_table_map={
|
|
142530
142597
|
"physical_table_map_key": quicksight.CfnDataSet.PhysicalTableProperty(
|
|
142531
142598
|
custom_sql=quicksight.CfnDataSet.CustomSqlProperty(
|
|
142599
|
+
data_source_arn="dataSourceArn",
|
|
142600
|
+
name="name",
|
|
142601
|
+
sql_query="sqlQuery",
|
|
142602
|
+
|
|
142603
|
+
# the properties below are optional
|
|
142532
142604
|
columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
142533
142605
|
name="name",
|
|
142534
142606
|
type="type",
|
|
142535
142607
|
|
|
142536
142608
|
# the properties below are optional
|
|
142537
142609
|
sub_type="subType"
|
|
142538
|
-
)]
|
|
142539
|
-
data_source_arn="dataSourceArn",
|
|
142540
|
-
name="name",
|
|
142541
|
-
sql_query="sqlQuery"
|
|
142610
|
+
)]
|
|
142542
142611
|
),
|
|
142543
142612
|
relational_table=quicksight.CfnDataSet.RelationalTableProperty(
|
|
142544
142613
|
data_source_arn="dataSourceArn",
|
|
142614
|
+
name="name",
|
|
142615
|
+
|
|
142616
|
+
# the properties below are optional
|
|
142617
|
+
catalog="catalog",
|
|
142545
142618
|
input_columns=[quicksight.CfnDataSet.InputColumnProperty(
|
|
142546
142619
|
name="name",
|
|
142547
142620
|
type="type",
|
|
@@ -142549,10 +142622,6 @@ class CfnDataSetProps:
|
|
|
142549
142622
|
# the properties below are optional
|
|
142550
142623
|
sub_type="subType"
|
|
142551
142624
|
)],
|
|
142552
|
-
name="name",
|
|
142553
|
-
|
|
142554
|
-
# the properties below are optional
|
|
142555
|
-
catalog="catalog",
|
|
142556
142625
|
schema="schema"
|
|
142557
142626
|
),
|
|
142558
142627
|
s3_source=quicksight.CfnDataSet.S3SourceProperty(
|
|
@@ -143253,6 +143322,7 @@ class CfnDataSource(
|
|
|
143253
143322
|
message="message",
|
|
143254
143323
|
type="type"
|
|
143255
143324
|
),
|
|
143325
|
+
folder_arns=["folderArns"],
|
|
143256
143326
|
permissions=[quicksight.CfnDataSource.ResourcePermissionProperty(
|
|
143257
143327
|
actions=["actions"],
|
|
143258
143328
|
principal="principal",
|
|
@@ -143286,6 +143356,7 @@ class CfnDataSource(
|
|
|
143286
143356
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
143287
143357
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.DataSourceParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143288
143358
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.DataSourceErrorInfoProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143359
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
143289
143360
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.ResourcePermissionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
143290
143361
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.SslPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143291
143362
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -143302,6 +143373,7 @@ class CfnDataSource(
|
|
|
143302
143373
|
:param data_source_id: An ID for the data source. This ID is unique per AWS Region for each AWS account.
|
|
143303
143374
|
:param data_source_parameters: The parameters that Amazon QuickSight uses to connect to your underlying source.
|
|
143304
143375
|
:param error_info: Error information from the last update or the creation of the data source.
|
|
143376
|
+
:param folder_arns:
|
|
143305
143377
|
:param permissions: A list of resource permissions on the data source.
|
|
143306
143378
|
:param ssl_properties: Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying source.
|
|
143307
143379
|
:param tags: Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.
|
|
@@ -143320,6 +143392,7 @@ class CfnDataSource(
|
|
|
143320
143392
|
data_source_id=data_source_id,
|
|
143321
143393
|
data_source_parameters=data_source_parameters,
|
|
143322
143394
|
error_info=error_info,
|
|
143395
|
+
folder_arns=folder_arns,
|
|
143323
143396
|
permissions=permissions,
|
|
143324
143397
|
ssl_properties=ssl_properties,
|
|
143325
143398
|
tags=tags,
|
|
@@ -143532,6 +143605,18 @@ class CfnDataSource(
|
|
|
143532
143605
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
143533
143606
|
jsii.set(self, "errorInfo", value) # pyright: ignore[reportArgumentType]
|
|
143534
143607
|
|
|
143608
|
+
@builtins.property
|
|
143609
|
+
@jsii.member(jsii_name="folderArns")
|
|
143610
|
+
def folder_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
143611
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "folderArns"))
|
|
143612
|
+
|
|
143613
|
+
@folder_arns.setter
|
|
143614
|
+
def folder_arns(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
|
|
143615
|
+
if __debug__:
|
|
143616
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3934ab4a3856af3344715a264278efaba5748d8334f9125955085f3caf585c11)
|
|
143617
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
143618
|
+
jsii.set(self, "folderArns", value) # pyright: ignore[reportArgumentType]
|
|
143619
|
+
|
|
143535
143620
|
@builtins.property
|
|
143536
143621
|
@jsii.member(jsii_name="permissions")
|
|
143537
143622
|
def permissions(
|
|
@@ -146798,6 +146883,7 @@ class CfnDataSource(
|
|
|
146798
146883
|
"data_source_id": "dataSourceId",
|
|
146799
146884
|
"data_source_parameters": "dataSourceParameters",
|
|
146800
146885
|
"error_info": "errorInfo",
|
|
146886
|
+
"folder_arns": "folderArns",
|
|
146801
146887
|
"permissions": "permissions",
|
|
146802
146888
|
"ssl_properties": "sslProperties",
|
|
146803
146889
|
"tags": "tags",
|
|
@@ -146816,6 +146902,7 @@ class CfnDataSourceProps:
|
|
|
146816
146902
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
146817
146903
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
146818
146904
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceErrorInfoProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
146905
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
146819
146906
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
146820
146907
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.SslPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
146821
146908
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -146831,6 +146918,7 @@ class CfnDataSourceProps:
|
|
|
146831
146918
|
:param data_source_id: An ID for the data source. This ID is unique per AWS Region for each AWS account.
|
|
146832
146919
|
:param data_source_parameters: The parameters that Amazon QuickSight uses to connect to your underlying source.
|
|
146833
146920
|
:param error_info: Error information from the last update or the creation of the data source.
|
|
146921
|
+
:param folder_arns:
|
|
146834
146922
|
:param permissions: A list of resource permissions on the data source.
|
|
146835
146923
|
:param ssl_properties: Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying source.
|
|
146836
146924
|
:param tags: Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.
|
|
@@ -147214,6 +147302,7 @@ class CfnDataSourceProps:
|
|
|
147214
147302
|
message="message",
|
|
147215
147303
|
type="type"
|
|
147216
147304
|
),
|
|
147305
|
+
folder_arns=["folderArns"],
|
|
147217
147306
|
permissions=[quicksight.CfnDataSource.ResourcePermissionProperty(
|
|
147218
147307
|
actions=["actions"],
|
|
147219
147308
|
principal="principal",
|
|
@@ -147243,6 +147332,7 @@ class CfnDataSourceProps:
|
|
|
147243
147332
|
check_type(argname="argument data_source_id", value=data_source_id, expected_type=type_hints["data_source_id"])
|
|
147244
147333
|
check_type(argname="argument data_source_parameters", value=data_source_parameters, expected_type=type_hints["data_source_parameters"])
|
|
147245
147334
|
check_type(argname="argument error_info", value=error_info, expected_type=type_hints["error_info"])
|
|
147335
|
+
check_type(argname="argument folder_arns", value=folder_arns, expected_type=type_hints["folder_arns"])
|
|
147246
147336
|
check_type(argname="argument permissions", value=permissions, expected_type=type_hints["permissions"])
|
|
147247
147337
|
check_type(argname="argument ssl_properties", value=ssl_properties, expected_type=type_hints["ssl_properties"])
|
|
147248
147338
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -147263,6 +147353,8 @@ class CfnDataSourceProps:
|
|
|
147263
147353
|
self._values["data_source_parameters"] = data_source_parameters
|
|
147264
147354
|
if error_info is not None:
|
|
147265
147355
|
self._values["error_info"] = error_info
|
|
147356
|
+
if folder_arns is not None:
|
|
147357
|
+
self._values["folder_arns"] = folder_arns
|
|
147266
147358
|
if permissions is not None:
|
|
147267
147359
|
self._values["permissions"] = permissions
|
|
147268
147360
|
if ssl_properties is not None:
|
|
@@ -147362,6 +147454,14 @@ class CfnDataSourceProps:
|
|
|
147362
147454
|
result = self._values.get("error_info")
|
|
147363
147455
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataSource.DataSourceErrorInfoProperty]], result)
|
|
147364
147456
|
|
|
147457
|
+
@builtins.property
|
|
147458
|
+
def folder_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
147459
|
+
'''
|
|
147460
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html#cfn-quicksight-datasource-folderarns
|
|
147461
|
+
'''
|
|
147462
|
+
result = self._values.get("folder_arns")
|
|
147463
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
147464
|
+
|
|
147365
147465
|
@builtins.property
|
|
147366
147466
|
def permissions(
|
|
147367
147467
|
self,
|
|
@@ -147469,14 +147569,14 @@ class CfnFolder(
|
|
|
147469
147569
|
'''
|
|
147470
147570
|
:param scope: Scope in which this resource is defined.
|
|
147471
147571
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
147472
|
-
:param aws_account_id:
|
|
147572
|
+
:param aws_account_id: The ID for the AWS account where you want to create the folder.
|
|
147473
147573
|
:param folder_id: The ID of the folder.
|
|
147474
147574
|
:param folder_type: The type of folder it is.
|
|
147475
147575
|
:param name: A display name for the folder.
|
|
147476
147576
|
:param parent_folder_arn: The Amazon Resource Name (ARN) for the folder.
|
|
147477
|
-
:param permissions:
|
|
147577
|
+
:param permissions: A structure that describes the principals and the resource-level permissions of a folder. To specify no permissions, omit ``Permissions`` .
|
|
147478
147578
|
:param sharing_model: The sharing scope of the folder.
|
|
147479
|
-
:param tags:
|
|
147579
|
+
:param tags: A list of tags for the folders that you want to apply overrides to.
|
|
147480
147580
|
'''
|
|
147481
147581
|
if __debug__:
|
|
147482
147582
|
type_hints = typing.get_type_hints(_typecheckingstub__5ad21456d864c00798d407eba9a5159c164c124d46390206781d0e19673e451e)
|
|
@@ -147566,6 +147666,7 @@ class CfnFolder(
|
|
|
147566
147666
|
@builtins.property
|
|
147567
147667
|
@jsii.member(jsii_name="awsAccountId")
|
|
147568
147668
|
def aws_account_id(self) -> typing.Optional[builtins.str]:
|
|
147669
|
+
'''The ID for the AWS account where you want to create the folder.'''
|
|
147569
147670
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "awsAccountId"))
|
|
147570
147671
|
|
|
147571
147672
|
@aws_account_id.setter
|
|
@@ -147632,6 +147733,7 @@ class CfnFolder(
|
|
|
147632
147733
|
def permissions(
|
|
147633
147734
|
self,
|
|
147634
147735
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFolder.ResourcePermissionProperty"]]]]:
|
|
147736
|
+
'''A structure that describes the principals and the resource-level permissions of a folder.'''
|
|
147635
147737
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFolder.ResourcePermissionProperty"]]]], jsii.get(self, "permissions"))
|
|
147636
147738
|
|
|
147637
147739
|
@permissions.setter
|
|
@@ -147660,6 +147762,7 @@ class CfnFolder(
|
|
|
147660
147762
|
@builtins.property
|
|
147661
147763
|
@jsii.member(jsii_name="tags")
|
|
147662
147764
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
147765
|
+
'''A list of tags for the folders that you want to apply overrides to.'''
|
|
147663
147766
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
147664
147767
|
|
|
147665
147768
|
@tags.setter
|
|
@@ -147770,14 +147873,14 @@ class CfnFolderProps:
|
|
|
147770
147873
|
) -> None:
|
|
147771
147874
|
'''Properties for defining a ``CfnFolder``.
|
|
147772
147875
|
|
|
147773
|
-
:param aws_account_id:
|
|
147876
|
+
:param aws_account_id: The ID for the AWS account where you want to create the folder.
|
|
147774
147877
|
:param folder_id: The ID of the folder.
|
|
147775
147878
|
:param folder_type: The type of folder it is.
|
|
147776
147879
|
:param name: A display name for the folder.
|
|
147777
147880
|
:param parent_folder_arn: The Amazon Resource Name (ARN) for the folder.
|
|
147778
|
-
:param permissions:
|
|
147881
|
+
:param permissions: A structure that describes the principals and the resource-level permissions of a folder. To specify no permissions, omit ``Permissions`` .
|
|
147779
147882
|
:param sharing_model: The sharing scope of the folder.
|
|
147780
|
-
:param tags:
|
|
147883
|
+
:param tags: A list of tags for the folders that you want to apply overrides to.
|
|
147781
147884
|
|
|
147782
147885
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html
|
|
147783
147886
|
:exampleMetadata: fixture=_generated
|
|
@@ -147835,7 +147938,8 @@ class CfnFolderProps:
|
|
|
147835
147938
|
|
|
147836
147939
|
@builtins.property
|
|
147837
147940
|
def aws_account_id(self) -> typing.Optional[builtins.str]:
|
|
147838
|
-
'''
|
|
147941
|
+
'''The ID for the AWS account where you want to create the folder.
|
|
147942
|
+
|
|
147839
147943
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html#cfn-quicksight-folder-awsaccountid
|
|
147840
147944
|
'''
|
|
147841
147945
|
result = self._values.get("aws_account_id")
|
|
@@ -147881,7 +147985,10 @@ class CfnFolderProps:
|
|
|
147881
147985
|
def permissions(
|
|
147882
147986
|
self,
|
|
147883
147987
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnFolder.ResourcePermissionProperty]]]]:
|
|
147884
|
-
'''
|
|
147988
|
+
'''A structure that describes the principals and the resource-level permissions of a folder.
|
|
147989
|
+
|
|
147990
|
+
To specify no permissions, omit ``Permissions`` .
|
|
147991
|
+
|
|
147885
147992
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html#cfn-quicksight-folder-permissions
|
|
147886
147993
|
'''
|
|
147887
147994
|
result = self._values.get("permissions")
|
|
@@ -147898,7 +148005,8 @@ class CfnFolderProps:
|
|
|
147898
148005
|
|
|
147899
148006
|
@builtins.property
|
|
147900
148007
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
147901
|
-
'''
|
|
148008
|
+
'''A list of tags for the folders that you want to apply overrides to.
|
|
148009
|
+
|
|
147902
148010
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html#cfn-quicksight-folder-tags
|
|
147903
148011
|
'''
|
|
147904
148012
|
result = self._values.get("tags")
|
|
@@ -164794,7 +164902,7 @@ class CfnTemplate(
|
|
|
164794
164902
|
|
|
164795
164903
|
:param custom_values_configuration: The configuration of custom values for destination parameter in ``DestinationParameterValueConfiguration`` .
|
|
164796
164904
|
:param select_all_value_options: The configuration that selects all options.
|
|
164797
|
-
:param source_column:
|
|
164905
|
+
:param source_column: A column of a data set.
|
|
164798
164906
|
:param source_field: The source field ID of the destination parameter.
|
|
164799
164907
|
:param source_parameter_name: The source parameter name of the destination parameter.
|
|
164800
164908
|
|
|
@@ -164871,7 +164979,8 @@ class CfnTemplate(
|
|
|
164871
164979
|
def source_column(
|
|
164872
164980
|
self,
|
|
164873
164981
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ColumnIdentifierProperty"]]:
|
|
164874
|
-
'''
|
|
164982
|
+
'''A column of a data set.
|
|
164983
|
+
|
|
164875
164984
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-destinationparametervalueconfiguration.html#cfn-quicksight-template-destinationparametervalueconfiguration-sourcecolumn
|
|
164876
164985
|
'''
|
|
164877
164986
|
result = self._values.get("source_column")
|
|
@@ -217414,7 +217523,7 @@ class CfnTheme(
|
|
|
217414
217523
|
|
|
217415
217524
|
:param data_color_palette: Color properties that apply to chart data colors.
|
|
217416
217525
|
:param sheet: Display options related to sheets.
|
|
217417
|
-
:param typography:
|
|
217526
|
+
:param typography: Determines the typography options.
|
|
217418
217527
|
:param ui_color_palette: Color properties that apply to the UI and to charts, excluding the colors that apply to data.
|
|
217419
217528
|
|
|
217420
217529
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-themeconfiguration.html
|
|
@@ -217514,7 +217623,8 @@ class CfnTheme(
|
|
|
217514
217623
|
def typography(
|
|
217515
217624
|
self,
|
|
217516
217625
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTheme.TypographyProperty"]]:
|
|
217517
|
-
'''
|
|
217626
|
+
'''Determines the typography options.
|
|
217627
|
+
|
|
217518
217628
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-themeconfiguration.html#cfn-quicksight-theme-themeconfiguration-typography
|
|
217519
217629
|
'''
|
|
217520
217630
|
result = self._values.get("typography")
|
|
@@ -223506,6 +223616,7 @@ def _typecheckingstub__5b3315f05d88d5e66533d2b20616a2e811e05c9fbafca2923d46fac36
|
|
|
223506
223616
|
name: builtins.str,
|
|
223507
223617
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.AnalysisDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
223508
223618
|
errors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.AnalysisErrorProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
223619
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
223509
223620
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
223510
223621
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
223511
223622
|
sheets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.SheetProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -223560,6 +223671,12 @@ def _typecheckingstub__2c6a0b9f84708043b6388b7cc2507e80b2ec92bee4c20a36299936a33
|
|
|
223560
223671
|
"""Type checking stubs"""
|
|
223561
223672
|
pass
|
|
223562
223673
|
|
|
223674
|
+
def _typecheckingstub__acb1ee971a3005e9aaf671478425a2defce0c42a4798b74fef66876536bc6205(
|
|
223675
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
223676
|
+
) -> None:
|
|
223677
|
+
"""Type checking stubs"""
|
|
223678
|
+
pass
|
|
223679
|
+
|
|
223563
223680
|
def _typecheckingstub__ef1f56dc35400e4931f1653bb22e70cc553ebe1114f5d755d003231b1324cba0(
|
|
223564
223681
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysis.ParametersProperty]],
|
|
223565
223682
|
) -> None:
|
|
@@ -228167,6 +228284,7 @@ def _typecheckingstub__abc87c90adc8752b5b24a67c2541ecb565aedcfc0265e29359b671502
|
|
|
228167
228284
|
name: builtins.str,
|
|
228168
228285
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.AnalysisDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228169
228286
|
errors: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.AnalysisErrorProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
228287
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
228170
228288
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228171
228289
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
228172
228290
|
sheets: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.SheetProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -228188,6 +228306,7 @@ def _typecheckingstub__fb817240753e3d59e412d7399827ca12667d95592c4f14cac4aa2bc90
|
|
|
228188
228306
|
name: builtins.str,
|
|
228189
228307
|
dashboard_publish_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DashboardPublishOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228190
228308
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DashboardVersionDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228309
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
228191
228310
|
link_entities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
228192
228311
|
link_sharing_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.LinkSharingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228193
228312
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -228243,6 +228362,12 @@ def _typecheckingstub__401dc566ec96e95f727379b41bac659021acc2d797b3988116201d56f
|
|
|
228243
228362
|
"""Type checking stubs"""
|
|
228244
228363
|
pass
|
|
228245
228364
|
|
|
228365
|
+
def _typecheckingstub__7b871aacfd7bae026812fa0ebc5b91fb19eb27a1d0030db6c8bad9798d93cc45(
|
|
228366
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
228367
|
+
) -> None:
|
|
228368
|
+
"""Type checking stubs"""
|
|
228369
|
+
pass
|
|
228370
|
+
|
|
228246
228371
|
def _typecheckingstub__515e0354418f9b4fe59fd6467d0e086c3552e3e9b4590860e4a85e68170019ef(
|
|
228247
228372
|
value: typing.Optional[typing.List[builtins.str]],
|
|
228248
228373
|
) -> None:
|
|
@@ -232972,6 +233097,7 @@ def _typecheckingstub__b83b0d20e5f4dc99e603d3a3d5cffb1cc46142034276d5f015ae3ed7f
|
|
|
232972
233097
|
name: builtins.str,
|
|
232973
233098
|
dashboard_publish_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DashboardPublishOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
232974
233099
|
definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.DashboardVersionDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
233100
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
232975
233101
|
link_entities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
232976
233102
|
link_sharing_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.LinkSharingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
232977
233103
|
parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -233189,10 +233315,10 @@ def _typecheckingstub__126d3e583c2ac58ef2048d1e7c04201d7b8c4b386e6e2ce57b085e7d0
|
|
|
233189
233315
|
|
|
233190
233316
|
def _typecheckingstub__97e4fcb997b025bd8b8162d5528bd73bc1c489c80a53a49d2bf3f33ac9c086df(
|
|
233191
233317
|
*,
|
|
233192
|
-
columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.InputColumnProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
233193
233318
|
data_source_arn: builtins.str,
|
|
233194
233319
|
name: builtins.str,
|
|
233195
233320
|
sql_query: builtins.str,
|
|
233321
|
+
columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.InputColumnProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
233196
233322
|
) -> None:
|
|
233197
233323
|
"""Type checking stubs"""
|
|
233198
233324
|
pass
|
|
@@ -233423,9 +233549,9 @@ def _typecheckingstub__4f5b07a3830c8168aac61eee81da7fe4ea32166016cf2c4406b473b41
|
|
|
233423
233549
|
def _typecheckingstub__bc43d1be088dad877549378a89c5cca422c52436d49d6b5d4f473a7370858ebd(
|
|
233424
233550
|
*,
|
|
233425
233551
|
data_source_arn: builtins.str,
|
|
233426
|
-
input_columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.InputColumnProperty, typing.Dict[builtins.str, typing.Any]]]]],
|
|
233427
233552
|
name: builtins.str,
|
|
233428
233553
|
catalog: typing.Optional[builtins.str] = None,
|
|
233554
|
+
input_columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.InputColumnProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
233429
233555
|
schema: typing.Optional[builtins.str] = None,
|
|
233430
233556
|
) -> None:
|
|
233431
233557
|
"""Type checking stubs"""
|
|
@@ -233580,6 +233706,7 @@ def _typecheckingstub__374b42679a82ae47079989dc56d79f0d0b7c439a3c9f7e6d2725ab4c7
|
|
|
233580
233706
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
233581
233707
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
233582
233708
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceErrorInfoProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
233709
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
233583
233710
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
233584
233711
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.SslPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
233585
233712
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -233648,6 +233775,12 @@ def _typecheckingstub__e8c906a2be130881812bea32c60ce64f9dd123ce92cb93ebef14967c3
|
|
|
233648
233775
|
"""Type checking stubs"""
|
|
233649
233776
|
pass
|
|
233650
233777
|
|
|
233778
|
+
def _typecheckingstub__3934ab4a3856af3344715a264278efaba5748d8334f9125955085f3caf585c11(
|
|
233779
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
233780
|
+
) -> None:
|
|
233781
|
+
"""Type checking stubs"""
|
|
233782
|
+
pass
|
|
233783
|
+
|
|
233651
233784
|
def _typecheckingstub__67967cbb0c0393ec55fe203f29b3078095f17848804e7a81297e61fe75f5c3ce(
|
|
233652
233785
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataSource.ResourcePermissionProperty]]]],
|
|
233653
233786
|
) -> None:
|
|
@@ -233958,6 +234091,7 @@ def _typecheckingstub__9b7c8e8d2c1cd22ebd57a1044126743d7661d34244f6d106bdbdbab5f
|
|
|
233958
234091
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
233959
234092
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
233960
234093
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceErrorInfoProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
234094
|
+
folder_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
233961
234095
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
233962
234096
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.SslPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
233963
234097
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|