aws-cdk-lib 2.142.1__py3-none-any.whl → 2.143.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.142.1.jsii.tgz → aws-cdk-lib@2.143.1.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -5
- aws_cdk/aws_backup/__init__.py +3 -3
- aws_cdk/aws_batch/__init__.py +237 -0
- aws_cdk/aws_bedrock/__init__.py +700 -16
- aws_cdk/aws_budgets/__init__.py +282 -3
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_codebuild/__init__.py +44 -0
- aws_cdk/aws_codepipeline/__init__.py +91 -4
- aws_cdk/aws_cognito/__init__.py +75 -0
- aws_cdk/aws_datazone/__init__.py +1743 -448
- aws_cdk/aws_dynamodb/__init__.py +60 -25
- aws_cdk/aws_ec2/__init__.py +112 -39
- aws_cdk/aws_ecs/__init__.py +3 -3
- aws_cdk/aws_ecs_patterns/__init__.py +106 -0
- aws_cdk/aws_eks/__init__.py +13 -10
- aws_cdk/aws_elasticache/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +219 -14
- aws_cdk/aws_events_targets/__init__.py +140 -3
- aws_cdk/aws_fms/__init__.py +42 -43
- aws_cdk/aws_fsx/__init__.py +3 -3
- aws_cdk/aws_identitystore/__init__.py +11 -11
- aws_cdk/aws_lambda/__init__.py +45 -0
- aws_cdk/aws_lambda_nodejs/__init__.py +16 -6
- aws_cdk/aws_lightsail/__init__.py +9 -0
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_mediaconnect/__init__.py +1789 -39
- aws_cdk/aws_mediatailor/__init__.py +21 -1
- aws_cdk/aws_mwaa/__init__.py +82 -0
- aws_cdk/aws_neptune/__init__.py +374 -0
- aws_cdk/aws_personalize/__init__.py +9 -3
- aws_cdk/aws_pipes/__init__.py +7 -7
- aws_cdk/aws_quicksight/__init__.py +684 -156
- aws_cdk/aws_rds/__init__.py +88 -24
- aws_cdk/aws_redshift/__init__.py +0 -46
- aws_cdk/aws_route53resolver/__init__.py +23 -0
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_sagemaker/__init__.py +185 -4
- aws_cdk/aws_securityhub/__init__.py +387 -1
- aws_cdk/aws_ssm/__init__.py +14 -6
- aws_cdk/aws_sso/__init__.py +1243 -34
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.142.1.dist-info → aws_cdk_lib-2.143.1.dist-info}/top_level.txt +0 -0
|
@@ -134495,6 +134495,10 @@ class CfnDataSet(
|
|
|
134495
134495
|
),
|
|
134496
134496
|
column_geographic_role="columnGeographicRole"
|
|
134497
134497
|
)]
|
|
134498
|
+
),
|
|
134499
|
+
untag_column_operation=quicksight.CfnDataSet.UntagColumnOperationProperty(
|
|
134500
|
+
column_name="columnName",
|
|
134501
|
+
tag_names=["tagNames"]
|
|
134498
134502
|
)
|
|
134499
134503
|
)]
|
|
134500
134504
|
)
|
|
@@ -135679,7 +135683,7 @@ class CfnDataSet(
|
|
|
135679
135683
|
def __init__(
|
|
135680
135684
|
self,
|
|
135681
135685
|
*,
|
|
135682
|
-
refresh_configuration: typing.
|
|
135686
|
+
refresh_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.RefreshConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
135683
135687
|
) -> None:
|
|
135684
135688
|
'''The refresh properties of a dataset.
|
|
135685
135689
|
|
|
@@ -135709,20 +135713,21 @@ class CfnDataSet(
|
|
|
135709
135713
|
if __debug__:
|
|
135710
135714
|
type_hints = typing.get_type_hints(_typecheckingstub__f8112e3ac95c271ef07e7d73f3bc230c7463e9b93fdcd125f136b968bd641daf)
|
|
135711
135715
|
check_type(argname="argument refresh_configuration", value=refresh_configuration, expected_type=type_hints["refresh_configuration"])
|
|
135712
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
135713
|
-
|
|
135714
|
-
|
|
135716
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
135717
|
+
"refresh_configuration": refresh_configuration,
|
|
135718
|
+
}
|
|
135715
135719
|
|
|
135716
135720
|
@builtins.property
|
|
135717
135721
|
def refresh_configuration(
|
|
135718
135722
|
self,
|
|
135719
|
-
) -> typing.
|
|
135723
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnDataSet.RefreshConfigurationProperty"]:
|
|
135720
135724
|
'''The refresh configuration for a dataset.
|
|
135721
135725
|
|
|
135722
135726
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetrefreshproperties.html#cfn-quicksight-dataset-datasetrefreshproperties-refreshconfiguration
|
|
135723
135727
|
'''
|
|
135724
135728
|
result = self._values.get("refresh_configuration")
|
|
135725
|
-
|
|
135729
|
+
assert result is not None, "Required property 'refresh_configuration' is missing"
|
|
135730
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataSet.RefreshConfigurationProperty"], result)
|
|
135726
135731
|
|
|
135727
135732
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
135728
135733
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -135752,8 +135757,8 @@ class CfnDataSet(
|
|
|
135752
135757
|
) -> None:
|
|
135753
135758
|
'''The usage configuration to apply to child datasets that reference this dataset as a source.
|
|
135754
135759
|
|
|
135755
|
-
:param disable_use_as_direct_query_source: An option that controls whether a child dataset of a direct query can use this dataset as a source.
|
|
135756
|
-
:param disable_use_as_imported_source: An option that controls whether a child dataset that's stored in QuickSight can use this dataset as a source.
|
|
135760
|
+
:param disable_use_as_direct_query_source: An option that controls whether a child dataset of a direct query can use this dataset as a source. Default: - false
|
|
135761
|
+
:param disable_use_as_imported_source: An option that controls whether a child dataset that's stored in QuickSight can use this dataset as a source. Default: - false
|
|
135757
135762
|
|
|
135758
135763
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetusageconfiguration.html
|
|
135759
135764
|
:exampleMetadata: fixture=_generated
|
|
@@ -135785,6 +135790,8 @@ class CfnDataSet(
|
|
|
135785
135790
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
135786
135791
|
'''An option that controls whether a child dataset of a direct query can use this dataset as a source.
|
|
135787
135792
|
|
|
135793
|
+
:default: - false
|
|
135794
|
+
|
|
135788
135795
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetusageconfiguration.html#cfn-quicksight-dataset-datasetusageconfiguration-disableuseasdirectquerysource
|
|
135789
135796
|
'''
|
|
135790
135797
|
result = self._values.get("disable_use_as_direct_query_source")
|
|
@@ -135796,6 +135803,8 @@ class CfnDataSet(
|
|
|
135796
135803
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
135797
135804
|
'''An option that controls whether a child dataset that's stored in QuickSight can use this dataset as a source.
|
|
135798
135805
|
|
|
135806
|
+
:default: - false
|
|
135807
|
+
|
|
135799
135808
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetusageconfiguration.html#cfn-quicksight-dataset-datasetusageconfiguration-disableuseasimportedsource
|
|
135800
135809
|
'''
|
|
135801
135810
|
result = self._values.get("disable_use_as_imported_source")
|
|
@@ -135974,8 +135983,6 @@ class CfnDataSet(
|
|
|
135974
135983
|
static_values: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
135975
135984
|
) -> None:
|
|
135976
135985
|
'''
|
|
135977
|
-
Currently only static values are supported.
|
|
135978
|
-
|
|
135979
135986
|
:param static_values: A list of static default values for a given date time parameter. The valid format for this property is ``yyyy-MM-dd’T’HH:mm:ss’Z’`` .
|
|
135980
135987
|
|
|
135981
135988
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameterdefaultvalues.html
|
|
@@ -136554,7 +136561,7 @@ class CfnDataSet(
|
|
|
136554
136561
|
def __init__(
|
|
136555
136562
|
self,
|
|
136556
136563
|
*,
|
|
136557
|
-
lookback_window: typing.
|
|
136564
|
+
lookback_window: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.LookbackWindowProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
136558
136565
|
) -> None:
|
|
136559
136566
|
'''The incremental refresh configuration for a dataset.
|
|
136560
136567
|
|
|
@@ -136580,20 +136587,21 @@ class CfnDataSet(
|
|
|
136580
136587
|
if __debug__:
|
|
136581
136588
|
type_hints = typing.get_type_hints(_typecheckingstub__050d6b5255b31d4ab7c73f6aafa1a5fe608236a3cccebca823246b22b90fee38)
|
|
136582
136589
|
check_type(argname="argument lookback_window", value=lookback_window, expected_type=type_hints["lookback_window"])
|
|
136583
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
136584
|
-
|
|
136585
|
-
|
|
136590
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
136591
|
+
"lookback_window": lookback_window,
|
|
136592
|
+
}
|
|
136586
136593
|
|
|
136587
136594
|
@builtins.property
|
|
136588
136595
|
def lookback_window(
|
|
136589
136596
|
self,
|
|
136590
|
-
) -> typing.
|
|
136597
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnDataSet.LookbackWindowProperty"]:
|
|
136591
136598
|
'''The lookback window setup for an incremental refresh configuration.
|
|
136592
136599
|
|
|
136593
136600
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-incrementalrefresh.html#cfn-quicksight-dataset-incrementalrefresh-lookbackwindow
|
|
136594
136601
|
'''
|
|
136595
136602
|
result = self._values.get("lookback_window")
|
|
136596
|
-
|
|
136603
|
+
assert result is not None, "Required property 'lookback_window' is missing"
|
|
136604
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataSet.LookbackWindowProperty"], result)
|
|
136597
136605
|
|
|
136598
136606
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
136599
136607
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -137265,6 +137273,10 @@ class CfnDataSet(
|
|
|
137265
137273
|
),
|
|
137266
137274
|
column_geographic_role="columnGeographicRole"
|
|
137267
137275
|
)]
|
|
137276
|
+
),
|
|
137277
|
+
untag_column_operation=quicksight.CfnDataSet.UntagColumnOperationProperty(
|
|
137278
|
+
column_name="columnName",
|
|
137279
|
+
tag_names=["tagNames"]
|
|
137268
137280
|
)
|
|
137269
137281
|
)]
|
|
137270
137282
|
)
|
|
@@ -137446,14 +137458,14 @@ class CfnDataSet(
|
|
|
137446
137458
|
def __init__(
|
|
137447
137459
|
self,
|
|
137448
137460
|
*,
|
|
137449
|
-
column_name:
|
|
137450
|
-
size:
|
|
137451
|
-
size_unit:
|
|
137461
|
+
column_name: builtins.str,
|
|
137462
|
+
size: jsii.Number,
|
|
137463
|
+
size_unit: builtins.str,
|
|
137452
137464
|
) -> None:
|
|
137453
137465
|
'''The lookback window setup of an incremental refresh configuration.
|
|
137454
137466
|
|
|
137455
137467
|
:param column_name: The name of the lookback window column.
|
|
137456
|
-
:param size: The lookback window column size.
|
|
137468
|
+
:param size: The lookback window column size. Default: - 0
|
|
137457
137469
|
:param size_unit: The size unit that is used for the lookback window column. Valid values for this structure are ``HOUR`` , ``DAY`` , and ``WEEK`` .
|
|
137458
137470
|
|
|
137459
137471
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html
|
|
@@ -137476,34 +137488,36 @@ class CfnDataSet(
|
|
|
137476
137488
|
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
137477
137489
|
check_type(argname="argument size", value=size, expected_type=type_hints["size"])
|
|
137478
137490
|
check_type(argname="argument size_unit", value=size_unit, expected_type=type_hints["size_unit"])
|
|
137479
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
137480
|
-
|
|
137481
|
-
|
|
137482
|
-
|
|
137483
|
-
|
|
137484
|
-
if size_unit is not None:
|
|
137485
|
-
self._values["size_unit"] = size_unit
|
|
137491
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
137492
|
+
"column_name": column_name,
|
|
137493
|
+
"size": size,
|
|
137494
|
+
"size_unit": size_unit,
|
|
137495
|
+
}
|
|
137486
137496
|
|
|
137487
137497
|
@builtins.property
|
|
137488
|
-
def column_name(self) ->
|
|
137498
|
+
def column_name(self) -> builtins.str:
|
|
137489
137499
|
'''The name of the lookback window column.
|
|
137490
137500
|
|
|
137491
137501
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html#cfn-quicksight-dataset-lookbackwindow-columnname
|
|
137492
137502
|
'''
|
|
137493
137503
|
result = self._values.get("column_name")
|
|
137494
|
-
|
|
137504
|
+
assert result is not None, "Required property 'column_name' is missing"
|
|
137505
|
+
return typing.cast(builtins.str, result)
|
|
137495
137506
|
|
|
137496
137507
|
@builtins.property
|
|
137497
|
-
def size(self) ->
|
|
137508
|
+
def size(self) -> jsii.Number:
|
|
137498
137509
|
'''The lookback window column size.
|
|
137499
137510
|
|
|
137511
|
+
:default: - 0
|
|
137512
|
+
|
|
137500
137513
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html#cfn-quicksight-dataset-lookbackwindow-size
|
|
137501
137514
|
'''
|
|
137502
137515
|
result = self._values.get("size")
|
|
137503
|
-
|
|
137516
|
+
assert result is not None, "Required property 'size' is missing"
|
|
137517
|
+
return typing.cast(jsii.Number, result)
|
|
137504
137518
|
|
|
137505
137519
|
@builtins.property
|
|
137506
|
-
def size_unit(self) ->
|
|
137520
|
+
def size_unit(self) -> builtins.str:
|
|
137507
137521
|
'''The size unit that is used for the lookback window column.
|
|
137508
137522
|
|
|
137509
137523
|
Valid values for this structure are ``HOUR`` , ``DAY`` , and ``WEEK`` .
|
|
@@ -137511,7 +137525,8 @@ class CfnDataSet(
|
|
|
137511
137525
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html#cfn-quicksight-dataset-lookbackwindow-sizeunit
|
|
137512
137526
|
'''
|
|
137513
137527
|
result = self._values.get("size_unit")
|
|
137514
|
-
|
|
137528
|
+
assert result is not None, "Required property 'size_unit' is missing"
|
|
137529
|
+
return typing.cast(builtins.str, result)
|
|
137515
137530
|
|
|
137516
137531
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
137517
137532
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -138042,7 +138057,7 @@ class CfnDataSet(
|
|
|
138042
138057
|
def __init__(
|
|
138043
138058
|
self,
|
|
138044
138059
|
*,
|
|
138045
|
-
incremental_refresh: typing.
|
|
138060
|
+
incremental_refresh: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.IncrementalRefreshProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
138046
138061
|
) -> None:
|
|
138047
138062
|
'''The refresh configuration of a dataset.
|
|
138048
138063
|
|
|
@@ -138070,20 +138085,21 @@ class CfnDataSet(
|
|
|
138070
138085
|
if __debug__:
|
|
138071
138086
|
type_hints = typing.get_type_hints(_typecheckingstub__4f5b07a3830c8168aac61eee81da7fe4ea32166016cf2c4406b473b412992eb3)
|
|
138072
138087
|
check_type(argname="argument incremental_refresh", value=incremental_refresh, expected_type=type_hints["incremental_refresh"])
|
|
138073
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
138074
|
-
|
|
138075
|
-
|
|
138088
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
138089
|
+
"incremental_refresh": incremental_refresh,
|
|
138090
|
+
}
|
|
138076
138091
|
|
|
138077
138092
|
@builtins.property
|
|
138078
138093
|
def incremental_refresh(
|
|
138079
138094
|
self,
|
|
138080
|
-
) -> typing.
|
|
138095
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnDataSet.IncrementalRefreshProperty"]:
|
|
138081
138096
|
'''The incremental refresh for the dataset.
|
|
138082
138097
|
|
|
138083
138098
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshconfiguration.html#cfn-quicksight-dataset-refreshconfiguration-incrementalrefresh
|
|
138084
138099
|
'''
|
|
138085
138100
|
result = self._values.get("incremental_refresh")
|
|
138086
|
-
|
|
138101
|
+
assert result is not None, "Required property 'incremental_refresh' is missing"
|
|
138102
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataSet.IncrementalRefreshProperty"], result)
|
|
138087
138103
|
|
|
138088
138104
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
138089
138105
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -139103,6 +139119,7 @@ class CfnDataSet(
|
|
|
139103
139119
|
"project_operation": "projectOperation",
|
|
139104
139120
|
"rename_column_operation": "renameColumnOperation",
|
|
139105
139121
|
"tag_column_operation": "tagColumnOperation",
|
|
139122
|
+
"untag_column_operation": "untagColumnOperation",
|
|
139106
139123
|
},
|
|
139107
139124
|
)
|
|
139108
139125
|
class TransformOperationProperty:
|
|
@@ -139116,6 +139133,7 @@ class CfnDataSet(
|
|
|
139116
139133
|
project_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.ProjectOperationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
139117
139134
|
rename_column_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.RenameColumnOperationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
139118
139135
|
tag_column_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.TagColumnOperationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
139136
|
+
untag_column_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.UntagColumnOperationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
139119
139137
|
) -> None:
|
|
139120
139138
|
'''A data transformation on a logical table.
|
|
139121
139139
|
|
|
@@ -139128,6 +139146,7 @@ class CfnDataSet(
|
|
|
139128
139146
|
:param project_operation: An operation that projects columns. Operations that come after a projection can only refer to projected columns.
|
|
139129
139147
|
:param rename_column_operation: An operation that renames a column.
|
|
139130
139148
|
:param tag_column_operation: An operation that tags a column with additional information.
|
|
139149
|
+
:param untag_column_operation:
|
|
139131
139150
|
|
|
139132
139151
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-transformoperation.html
|
|
139133
139152
|
:exampleMetadata: fixture=_generated
|
|
@@ -139184,6 +139203,10 @@ class CfnDataSet(
|
|
|
139184
139203
|
),
|
|
139185
139204
|
column_geographic_role="columnGeographicRole"
|
|
139186
139205
|
)]
|
|
139206
|
+
),
|
|
139207
|
+
untag_column_operation=quicksight.CfnDataSet.UntagColumnOperationProperty(
|
|
139208
|
+
column_name="columnName",
|
|
139209
|
+
tag_names=["tagNames"]
|
|
139187
139210
|
)
|
|
139188
139211
|
)
|
|
139189
139212
|
'''
|
|
@@ -139196,6 +139219,7 @@ class CfnDataSet(
|
|
|
139196
139219
|
check_type(argname="argument project_operation", value=project_operation, expected_type=type_hints["project_operation"])
|
|
139197
139220
|
check_type(argname="argument rename_column_operation", value=rename_column_operation, expected_type=type_hints["rename_column_operation"])
|
|
139198
139221
|
check_type(argname="argument tag_column_operation", value=tag_column_operation, expected_type=type_hints["tag_column_operation"])
|
|
139222
|
+
check_type(argname="argument untag_column_operation", value=untag_column_operation, expected_type=type_hints["untag_column_operation"])
|
|
139199
139223
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
139200
139224
|
if cast_column_type_operation is not None:
|
|
139201
139225
|
self._values["cast_column_type_operation"] = cast_column_type_operation
|
|
@@ -139211,6 +139235,8 @@ class CfnDataSet(
|
|
|
139211
139235
|
self._values["rename_column_operation"] = rename_column_operation
|
|
139212
139236
|
if tag_column_operation is not None:
|
|
139213
139237
|
self._values["tag_column_operation"] = tag_column_operation
|
|
139238
|
+
if untag_column_operation is not None:
|
|
139239
|
+
self._values["untag_column_operation"] = untag_column_operation
|
|
139214
139240
|
|
|
139215
139241
|
@builtins.property
|
|
139216
139242
|
def cast_column_type_operation(
|
|
@@ -139292,6 +139318,16 @@ class CfnDataSet(
|
|
|
139292
139318
|
result = self._values.get("tag_column_operation")
|
|
139293
139319
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.TagColumnOperationProperty"]], result)
|
|
139294
139320
|
|
|
139321
|
+
@builtins.property
|
|
139322
|
+
def untag_column_operation(
|
|
139323
|
+
self,
|
|
139324
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.UntagColumnOperationProperty"]]:
|
|
139325
|
+
'''
|
|
139326
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-transformoperation.html#cfn-quicksight-dataset-transformoperation-untagcolumnoperation
|
|
139327
|
+
'''
|
|
139328
|
+
result = self._values.get("untag_column_operation")
|
|
139329
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.UntagColumnOperationProperty"]], result)
|
|
139330
|
+
|
|
139295
139331
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
139296
139332
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
139297
139333
|
|
|
@@ -139303,6 +139339,77 @@ class CfnDataSet(
|
|
|
139303
139339
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
139304
139340
|
)
|
|
139305
139341
|
|
|
139342
|
+
@jsii.data_type(
|
|
139343
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSet.UntagColumnOperationProperty",
|
|
139344
|
+
jsii_struct_bases=[],
|
|
139345
|
+
name_mapping={"column_name": "columnName", "tag_names": "tagNames"},
|
|
139346
|
+
)
|
|
139347
|
+
class UntagColumnOperationProperty:
|
|
139348
|
+
def __init__(
|
|
139349
|
+
self,
|
|
139350
|
+
*,
|
|
139351
|
+
column_name: builtins.str,
|
|
139352
|
+
tag_names: typing.Sequence[builtins.str],
|
|
139353
|
+
) -> None:
|
|
139354
|
+
'''A transform operation that removes tags associated with a column.
|
|
139355
|
+
|
|
139356
|
+
:param column_name: The column that this operation acts on.
|
|
139357
|
+
:param tag_names: The column tags to remove from this column.
|
|
139358
|
+
|
|
139359
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-untagcolumnoperation.html
|
|
139360
|
+
:exampleMetadata: fixture=_generated
|
|
139361
|
+
|
|
139362
|
+
Example::
|
|
139363
|
+
|
|
139364
|
+
# The code below shows an example of how to instantiate this type.
|
|
139365
|
+
# The values are placeholders you should change.
|
|
139366
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
139367
|
+
|
|
139368
|
+
untag_column_operation_property = quicksight.CfnDataSet.UntagColumnOperationProperty(
|
|
139369
|
+
column_name="columnName",
|
|
139370
|
+
tag_names=["tagNames"]
|
|
139371
|
+
)
|
|
139372
|
+
'''
|
|
139373
|
+
if __debug__:
|
|
139374
|
+
type_hints = typing.get_type_hints(_typecheckingstub__83a459067085ea2750b1f919da06faa9466a8a5800fae79848c372863ce7ab3b)
|
|
139375
|
+
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
139376
|
+
check_type(argname="argument tag_names", value=tag_names, expected_type=type_hints["tag_names"])
|
|
139377
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
139378
|
+
"column_name": column_name,
|
|
139379
|
+
"tag_names": tag_names,
|
|
139380
|
+
}
|
|
139381
|
+
|
|
139382
|
+
@builtins.property
|
|
139383
|
+
def column_name(self) -> builtins.str:
|
|
139384
|
+
'''The column that this operation acts on.
|
|
139385
|
+
|
|
139386
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-untagcolumnoperation.html#cfn-quicksight-dataset-untagcolumnoperation-columnname
|
|
139387
|
+
'''
|
|
139388
|
+
result = self._values.get("column_name")
|
|
139389
|
+
assert result is not None, "Required property 'column_name' is missing"
|
|
139390
|
+
return typing.cast(builtins.str, result)
|
|
139391
|
+
|
|
139392
|
+
@builtins.property
|
|
139393
|
+
def tag_names(self) -> typing.List[builtins.str]:
|
|
139394
|
+
'''The column tags to remove from this column.
|
|
139395
|
+
|
|
139396
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-untagcolumnoperation.html#cfn-quicksight-dataset-untagcolumnoperation-tagnames
|
|
139397
|
+
'''
|
|
139398
|
+
result = self._values.get("tag_names")
|
|
139399
|
+
assert result is not None, "Required property 'tag_names' is missing"
|
|
139400
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
139401
|
+
|
|
139402
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
139403
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
139404
|
+
|
|
139405
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
139406
|
+
return not (rhs == self)
|
|
139407
|
+
|
|
139408
|
+
def __repr__(self) -> str:
|
|
139409
|
+
return "UntagColumnOperationProperty(%s)" % ", ".join(
|
|
139410
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
139411
|
+
)
|
|
139412
|
+
|
|
139306
139413
|
@jsii.data_type(
|
|
139307
139414
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSet.UploadSettingsProperty",
|
|
139308
139415
|
jsii_struct_bases=[],
|
|
@@ -139657,6 +139764,10 @@ class CfnDataSetProps:
|
|
|
139657
139764
|
),
|
|
139658
139765
|
column_geographic_role="columnGeographicRole"
|
|
139659
139766
|
)]
|
|
139767
|
+
),
|
|
139768
|
+
untag_column_operation=quicksight.CfnDataSet.UntagColumnOperationProperty(
|
|
139769
|
+
column_name="columnName",
|
|
139770
|
+
tag_names=["tagNames"]
|
|
139660
139771
|
)
|
|
139661
139772
|
)]
|
|
139662
139773
|
)
|
|
@@ -140014,6 +140125,10 @@ class CfnDataSource(
|
|
|
140014
140125
|
from aws_cdk import aws_quicksight as quicksight
|
|
140015
140126
|
|
|
140016
140127
|
cfn_data_source = quicksight.CfnDataSource(self, "MyCfnDataSource",
|
|
140128
|
+
name="name",
|
|
140129
|
+
type="type",
|
|
140130
|
+
|
|
140131
|
+
# the properties below are optional
|
|
140017
140132
|
alternate_data_source_parameters=[quicksight.CfnDataSource.DataSourceParametersProperty(
|
|
140018
140133
|
amazon_elasticsearch_parameters=quicksight.CfnDataSource.AmazonElasticsearchParametersProperty(
|
|
140019
140134
|
domain="domain"
|
|
@@ -140075,6 +140190,17 @@ class CfnDataSource(
|
|
|
140075
140190
|
# the properties below are optional
|
|
140076
140191
|
cluster_id="clusterId",
|
|
140077
140192
|
host="host",
|
|
140193
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
140194
|
+
role_arn="roleArn",
|
|
140195
|
+
|
|
140196
|
+
# the properties below are optional
|
|
140197
|
+
auto_create_database_user=False,
|
|
140198
|
+
database_groups=["databaseGroups"],
|
|
140199
|
+
database_user="databaseUser"
|
|
140200
|
+
),
|
|
140201
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
140202
|
+
enable_identity_propagation=False
|
|
140203
|
+
),
|
|
140078
140204
|
port=123
|
|
140079
140205
|
),
|
|
140080
140206
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -140188,6 +140314,17 @@ class CfnDataSource(
|
|
|
140188
140314
|
# the properties below are optional
|
|
140189
140315
|
cluster_id="clusterId",
|
|
140190
140316
|
host="host",
|
|
140317
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
140318
|
+
role_arn="roleArn",
|
|
140319
|
+
|
|
140320
|
+
# the properties below are optional
|
|
140321
|
+
auto_create_database_user=False,
|
|
140322
|
+
database_groups=["databaseGroups"],
|
|
140323
|
+
database_user="databaseUser"
|
|
140324
|
+
),
|
|
140325
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
140326
|
+
enable_identity_propagation=False
|
|
140327
|
+
),
|
|
140191
140328
|
port=123
|
|
140192
140329
|
),
|
|
140193
140330
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -140297,6 +140434,17 @@ class CfnDataSource(
|
|
|
140297
140434
|
# the properties below are optional
|
|
140298
140435
|
cluster_id="clusterId",
|
|
140299
140436
|
host="host",
|
|
140437
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
140438
|
+
role_arn="roleArn",
|
|
140439
|
+
|
|
140440
|
+
# the properties below are optional
|
|
140441
|
+
auto_create_database_user=False,
|
|
140442
|
+
database_groups=["databaseGroups"],
|
|
140443
|
+
database_user="databaseUser"
|
|
140444
|
+
),
|
|
140445
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
140446
|
+
enable_identity_propagation=False
|
|
140447
|
+
),
|
|
140300
140448
|
port=123
|
|
140301
140449
|
),
|
|
140302
140450
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -140345,10 +140493,12 @@ class CfnDataSource(
|
|
|
140345
140493
|
message="message",
|
|
140346
140494
|
type="type"
|
|
140347
140495
|
),
|
|
140348
|
-
name="name",
|
|
140349
140496
|
permissions=[quicksight.CfnDataSource.ResourcePermissionProperty(
|
|
140350
140497
|
actions=["actions"],
|
|
140351
|
-
principal="principal"
|
|
140498
|
+
principal="principal",
|
|
140499
|
+
|
|
140500
|
+
# the properties below are optional
|
|
140501
|
+
resource="resource"
|
|
140352
140502
|
)],
|
|
140353
140503
|
ssl_properties=quicksight.CfnDataSource.SslPropertiesProperty(
|
|
140354
140504
|
disable_ssl=False
|
|
@@ -140357,7 +140507,6 @@ class CfnDataSource(
|
|
|
140357
140507
|
key="key",
|
|
140358
140508
|
value="value"
|
|
140359
140509
|
)],
|
|
140360
|
-
type="type",
|
|
140361
140510
|
vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
|
|
140362
140511
|
vpc_connection_arn="vpcConnectionArn"
|
|
140363
140512
|
)
|
|
@@ -140369,33 +140518,33 @@ class CfnDataSource(
|
|
|
140369
140518
|
scope: _constructs_77d1e7e8.Construct,
|
|
140370
140519
|
id: builtins.str,
|
|
140371
140520
|
*,
|
|
140521
|
+
name: builtins.str,
|
|
140522
|
+
type: builtins.str,
|
|
140372
140523
|
alternate_data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.DataSourceParametersProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
140373
140524
|
aws_account_id: typing.Optional[builtins.str] = None,
|
|
140374
140525
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.DataSourceCredentialsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
140375
140526
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
140376
140527
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.DataSourceParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
140377
140528
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.DataSourceErrorInfoProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
140378
|
-
name: typing.Optional[builtins.str] = None,
|
|
140379
140529
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.ResourcePermissionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
140380
140530
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.SslPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
140381
140531
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
140382
|
-
type: typing.Optional[builtins.str] = None,
|
|
140383
140532
|
vpc_connection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.VpcConnectionPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
140384
140533
|
) -> None:
|
|
140385
140534
|
'''
|
|
140386
140535
|
:param scope: Scope in which this resource is defined.
|
|
140387
140536
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
140537
|
+
:param name: A display name for the data source.
|
|
140538
|
+
:param type: The type of the data source. To return a list of all data sources, use ``ListDataSources`` . Use ``AMAZON_ELASTICSEARCH`` for Amazon OpenSearch Service.
|
|
140388
140539
|
:param alternate_data_source_parameters: A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the ``DataSourceParameters`` structure that's in the request with the structures in the ``AlternateDataSourceParameters`` allow list. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the ``AlternateDataSourceParameters`` list is null, the ``Credentials`` originally used with this ``DataSourceParameters`` are automatically allowed.
|
|
140389
140540
|
:param aws_account_id: The AWS account ID.
|
|
140390
140541
|
:param credentials: The credentials Amazon QuickSight that uses to connect to your underlying source. Currently, only credentials based on user name and password are supported.
|
|
140391
140542
|
:param data_source_id: An ID for the data source. This ID is unique per AWS Region for each AWS account.
|
|
140392
140543
|
:param data_source_parameters: The parameters that Amazon QuickSight uses to connect to your underlying source.
|
|
140393
140544
|
:param error_info: Error information from the last update or the creation of the data source.
|
|
140394
|
-
:param name: A display name for the data source.
|
|
140395
140545
|
:param permissions: A list of resource permissions on the data source.
|
|
140396
140546
|
:param ssl_properties: Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying source.
|
|
140397
140547
|
:param tags: Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.
|
|
140398
|
-
:param type: The type of the data source. To return a list of all data sources, use ``ListDataSources`` . Use ``AMAZON_ELASTICSEARCH`` for Amazon OpenSearch Service.
|
|
140399
140548
|
:param vpc_connection_properties: Use this parameter only when you want Amazon QuickSight to use a VPC connection when connecting to your underlying source.
|
|
140400
140549
|
'''
|
|
140401
140550
|
if __debug__:
|
|
@@ -140403,17 +140552,17 @@ class CfnDataSource(
|
|
|
140403
140552
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
140404
140553
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
140405
140554
|
props = CfnDataSourceProps(
|
|
140555
|
+
name=name,
|
|
140556
|
+
type=type,
|
|
140406
140557
|
alternate_data_source_parameters=alternate_data_source_parameters,
|
|
140407
140558
|
aws_account_id=aws_account_id,
|
|
140408
140559
|
credentials=credentials,
|
|
140409
140560
|
data_source_id=data_source_id,
|
|
140410
140561
|
data_source_parameters=data_source_parameters,
|
|
140411
140562
|
error_info=error_info,
|
|
140412
|
-
name=name,
|
|
140413
140563
|
permissions=permissions,
|
|
140414
140564
|
ssl_properties=ssl_properties,
|
|
140415
140565
|
tags=tags,
|
|
140416
|
-
type=type,
|
|
140417
140566
|
vpc_connection_properties=vpc_connection_properties,
|
|
140418
140567
|
)
|
|
140419
140568
|
|
|
@@ -140496,6 +140645,35 @@ class CfnDataSource(
|
|
|
140496
140645
|
'''Tag Manager which manages the tags for this resource.'''
|
|
140497
140646
|
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
|
|
140498
140647
|
|
|
140648
|
+
@builtins.property
|
|
140649
|
+
@jsii.member(jsii_name="name")
|
|
140650
|
+
def name(self) -> builtins.str:
|
|
140651
|
+
'''A display name for the data source.'''
|
|
140652
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
140653
|
+
|
|
140654
|
+
@name.setter
|
|
140655
|
+
def name(self, value: builtins.str) -> None:
|
|
140656
|
+
if __debug__:
|
|
140657
|
+
type_hints = typing.get_type_hints(_typecheckingstub__052425c353cfb69cd3d7b21804a17d34c4d718ab05be68ee000a42ec3d089d5e)
|
|
140658
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
140659
|
+
jsii.set(self, "name", value)
|
|
140660
|
+
|
|
140661
|
+
@builtins.property
|
|
140662
|
+
@jsii.member(jsii_name="type")
|
|
140663
|
+
def type(self) -> builtins.str:
|
|
140664
|
+
'''The type of the data source.
|
|
140665
|
+
|
|
140666
|
+
To return a list of all data sources, use ``ListDataSources`` .
|
|
140667
|
+
'''
|
|
140668
|
+
return typing.cast(builtins.str, jsii.get(self, "type"))
|
|
140669
|
+
|
|
140670
|
+
@type.setter
|
|
140671
|
+
def type(self, value: builtins.str) -> None:
|
|
140672
|
+
if __debug__:
|
|
140673
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a9629e48048b57721b64306d8b9ec36a4da85373ef960e1d47fd336a6048d3e7)
|
|
140674
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
140675
|
+
jsii.set(self, "type", value)
|
|
140676
|
+
|
|
140499
140677
|
@builtins.property
|
|
140500
140678
|
@jsii.member(jsii_name="alternateDataSourceParameters")
|
|
140501
140679
|
def alternate_data_source_parameters(
|
|
@@ -140594,19 +140772,6 @@ class CfnDataSource(
|
|
|
140594
140772
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
140595
140773
|
jsii.set(self, "errorInfo", value)
|
|
140596
140774
|
|
|
140597
|
-
@builtins.property
|
|
140598
|
-
@jsii.member(jsii_name="name")
|
|
140599
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
140600
|
-
'''A display name for the data source.'''
|
|
140601
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
140602
|
-
|
|
140603
|
-
@name.setter
|
|
140604
|
-
def name(self, value: typing.Optional[builtins.str]) -> None:
|
|
140605
|
-
if __debug__:
|
|
140606
|
-
type_hints = typing.get_type_hints(_typecheckingstub__052425c353cfb69cd3d7b21804a17d34c4d718ab05be68ee000a42ec3d089d5e)
|
|
140607
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
140608
|
-
jsii.set(self, "name", value)
|
|
140609
|
-
|
|
140610
140775
|
@builtins.property
|
|
140611
140776
|
@jsii.member(jsii_name="permissions")
|
|
140612
140777
|
def permissions(
|
|
@@ -140656,22 +140821,6 @@ class CfnDataSource(
|
|
|
140656
140821
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
140657
140822
|
jsii.set(self, "tagsRaw", value)
|
|
140658
140823
|
|
|
140659
|
-
@builtins.property
|
|
140660
|
-
@jsii.member(jsii_name="type")
|
|
140661
|
-
def type(self) -> typing.Optional[builtins.str]:
|
|
140662
|
-
'''The type of the data source.
|
|
140663
|
-
|
|
140664
|
-
To return a list of all data sources, use ``ListDataSources`` .
|
|
140665
|
-
'''
|
|
140666
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "type"))
|
|
140667
|
-
|
|
140668
|
-
@type.setter
|
|
140669
|
-
def type(self, value: typing.Optional[builtins.str]) -> None:
|
|
140670
|
-
if __debug__:
|
|
140671
|
-
type_hints = typing.get_type_hints(_typecheckingstub__a9629e48048b57721b64306d8b9ec36a4da85373ef960e1d47fd336a6048d3e7)
|
|
140672
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
140673
|
-
jsii.set(self, "type", value)
|
|
140674
|
-
|
|
140675
140824
|
@builtins.property
|
|
140676
140825
|
@jsii.member(jsii_name="vpcConnectionProperties")
|
|
140677
140826
|
def vpc_connection_properties(
|
|
@@ -140883,7 +141032,7 @@ class CfnDataSource(
|
|
|
140883
141032
|
|
|
140884
141033
|
:param database: Database.
|
|
140885
141034
|
:param host: Host.
|
|
140886
|
-
:param port: Port.
|
|
141035
|
+
:param port: Port. Default: - 0
|
|
140887
141036
|
|
|
140888
141037
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-auroraparameters.html
|
|
140889
141038
|
:exampleMetadata: fixture=_generated
|
|
@@ -140935,6 +141084,8 @@ class CfnDataSource(
|
|
|
140935
141084
|
def port(self) -> jsii.Number:
|
|
140936
141085
|
'''Port.
|
|
140937
141086
|
|
|
141087
|
+
:default: - 0
|
|
141088
|
+
|
|
140938
141089
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-auroraparameters.html#cfn-quicksight-datasource-auroraparameters-port
|
|
140939
141090
|
'''
|
|
140940
141091
|
result = self._values.get("port")
|
|
@@ -140969,7 +141120,7 @@ class CfnDataSource(
|
|
|
140969
141120
|
|
|
140970
141121
|
:param database: The Amazon Aurora PostgreSQL database to connect to.
|
|
140971
141122
|
:param host: The Amazon Aurora PostgreSQL-Compatible host to connect to.
|
|
140972
|
-
:param port: The port that Amazon Aurora PostgreSQL is listening on.
|
|
141123
|
+
:param port: The port that Amazon Aurora PostgreSQL is listening on. Default: - 0
|
|
140973
141124
|
|
|
140974
141125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-aurorapostgresqlparameters.html
|
|
140975
141126
|
:exampleMetadata: fixture=_generated
|
|
@@ -141021,6 +141172,8 @@ class CfnDataSource(
|
|
|
141021
141172
|
def port(self) -> jsii.Number:
|
|
141022
141173
|
'''The port that Amazon Aurora PostgreSQL is listening on.
|
|
141023
141174
|
|
|
141175
|
+
:default: - 0
|
|
141176
|
+
|
|
141024
141177
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-aurorapostgresqlparameters.html#cfn-quicksight-datasource-aurorapostgresqlparameters-port
|
|
141025
141178
|
'''
|
|
141026
141179
|
result = self._values.get("port")
|
|
@@ -141136,6 +141289,17 @@ class CfnDataSource(
|
|
|
141136
141289
|
# the properties below are optional
|
|
141137
141290
|
cluster_id="clusterId",
|
|
141138
141291
|
host="host",
|
|
141292
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
141293
|
+
role_arn="roleArn",
|
|
141294
|
+
|
|
141295
|
+
# the properties below are optional
|
|
141296
|
+
auto_create_database_user=False,
|
|
141297
|
+
database_groups=["databaseGroups"],
|
|
141298
|
+
database_user="databaseUser"
|
|
141299
|
+
),
|
|
141300
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
141301
|
+
enable_identity_propagation=False
|
|
141302
|
+
),
|
|
141139
141303
|
port=123
|
|
141140
141304
|
),
|
|
141141
141305
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -141340,6 +141504,17 @@ class CfnDataSource(
|
|
|
141340
141504
|
# the properties below are optional
|
|
141341
141505
|
cluster_id="clusterId",
|
|
141342
141506
|
host="host",
|
|
141507
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
141508
|
+
role_arn="roleArn",
|
|
141509
|
+
|
|
141510
|
+
# the properties below are optional
|
|
141511
|
+
auto_create_database_user=False,
|
|
141512
|
+
database_groups=["databaseGroups"],
|
|
141513
|
+
database_user="databaseUser"
|
|
141514
|
+
),
|
|
141515
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
141516
|
+
enable_identity_propagation=False
|
|
141517
|
+
),
|
|
141343
141518
|
port=123
|
|
141344
141519
|
),
|
|
141345
141520
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -141661,6 +141836,17 @@ class CfnDataSource(
|
|
|
141661
141836
|
# the properties below are optional
|
|
141662
141837
|
cluster_id="clusterId",
|
|
141663
141838
|
host="host",
|
|
141839
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
141840
|
+
role_arn="roleArn",
|
|
141841
|
+
|
|
141842
|
+
# the properties below are optional
|
|
141843
|
+
auto_create_database_user=False,
|
|
141844
|
+
database_groups=["databaseGroups"],
|
|
141845
|
+
database_user="databaseUser"
|
|
141846
|
+
),
|
|
141847
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
141848
|
+
enable_identity_propagation=False
|
|
141849
|
+
),
|
|
141664
141850
|
port=123
|
|
141665
141851
|
),
|
|
141666
141852
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -142021,7 +142207,7 @@ class CfnDataSource(
|
|
|
142021
142207
|
'''The required parameters that are needed to connect to a Databricks data source.
|
|
142022
142208
|
|
|
142023
142209
|
:param host: The host name of the Databricks data source.
|
|
142024
|
-
:param port: The port for the Databricks data source.
|
|
142210
|
+
:param port: The port for the Databricks data source. Default: - 0
|
|
142025
142211
|
:param sql_endpoint_path: The HTTP path of the Databricks data source.
|
|
142026
142212
|
|
|
142027
142213
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-databricksparameters.html
|
|
@@ -142064,6 +142250,8 @@ class CfnDataSource(
|
|
|
142064
142250
|
def port(self) -> jsii.Number:
|
|
142065
142251
|
'''The port for the Databricks data source.
|
|
142066
142252
|
|
|
142253
|
+
:default: - 0
|
|
142254
|
+
|
|
142067
142255
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-databricksparameters.html#cfn-quicksight-datasource-databricksparameters-port
|
|
142068
142256
|
'''
|
|
142069
142257
|
result = self._values.get("port")
|
|
@@ -142091,6 +142279,63 @@ class CfnDataSource(
|
|
|
142091
142279
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
142092
142280
|
)
|
|
142093
142281
|
|
|
142282
|
+
@jsii.data_type(
|
|
142283
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.IdentityCenterConfigurationProperty",
|
|
142284
|
+
jsii_struct_bases=[],
|
|
142285
|
+
name_mapping={"enable_identity_propagation": "enableIdentityPropagation"},
|
|
142286
|
+
)
|
|
142287
|
+
class IdentityCenterConfigurationProperty:
|
|
142288
|
+
def __init__(
|
|
142289
|
+
self,
|
|
142290
|
+
*,
|
|
142291
|
+
enable_identity_propagation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
142292
|
+
) -> None:
|
|
142293
|
+
'''The parameters for an IAM Identity Center configuration.
|
|
142294
|
+
|
|
142295
|
+
:param enable_identity_propagation: A Boolean option that controls whether Trusted Identity Propagation should be used.
|
|
142296
|
+
|
|
142297
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-identitycenterconfiguration.html
|
|
142298
|
+
:exampleMetadata: fixture=_generated
|
|
142299
|
+
|
|
142300
|
+
Example::
|
|
142301
|
+
|
|
142302
|
+
# The code below shows an example of how to instantiate this type.
|
|
142303
|
+
# The values are placeholders you should change.
|
|
142304
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
142305
|
+
|
|
142306
|
+
identity_center_configuration_property = quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
142307
|
+
enable_identity_propagation=False
|
|
142308
|
+
)
|
|
142309
|
+
'''
|
|
142310
|
+
if __debug__:
|
|
142311
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b18cd1c8e3eadf23e534f1d98944b37ecbc88f56480eec1ba6d43514a137f70f)
|
|
142312
|
+
check_type(argname="argument enable_identity_propagation", value=enable_identity_propagation, expected_type=type_hints["enable_identity_propagation"])
|
|
142313
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
142314
|
+
if enable_identity_propagation is not None:
|
|
142315
|
+
self._values["enable_identity_propagation"] = enable_identity_propagation
|
|
142316
|
+
|
|
142317
|
+
@builtins.property
|
|
142318
|
+
def enable_identity_propagation(
|
|
142319
|
+
self,
|
|
142320
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
142321
|
+
'''A Boolean option that controls whether Trusted Identity Propagation should be used.
|
|
142322
|
+
|
|
142323
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-identitycenterconfiguration.html#cfn-quicksight-datasource-identitycenterconfiguration-enableidentitypropagation
|
|
142324
|
+
'''
|
|
142325
|
+
result = self._values.get("enable_identity_propagation")
|
|
142326
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
142327
|
+
|
|
142328
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
142329
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
142330
|
+
|
|
142331
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
142332
|
+
return not (rhs == self)
|
|
142333
|
+
|
|
142334
|
+
def __repr__(self) -> str:
|
|
142335
|
+
return "IdentityCenterConfigurationProperty(%s)" % ", ".join(
|
|
142336
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
142337
|
+
)
|
|
142338
|
+
|
|
142094
142339
|
@jsii.data_type(
|
|
142095
142340
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.ManifestFileLocationProperty",
|
|
142096
142341
|
jsii_struct_bases=[],
|
|
@@ -142174,7 +142419,7 @@ class CfnDataSource(
|
|
|
142174
142419
|
|
|
142175
142420
|
:param database: Database.
|
|
142176
142421
|
:param host: Host.
|
|
142177
|
-
:param port: Port.
|
|
142422
|
+
:param port: Port. Default: - 0
|
|
142178
142423
|
|
|
142179
142424
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-mariadbparameters.html
|
|
142180
142425
|
:exampleMetadata: fixture=_generated
|
|
@@ -142226,6 +142471,8 @@ class CfnDataSource(
|
|
|
142226
142471
|
def port(self) -> jsii.Number:
|
|
142227
142472
|
'''Port.
|
|
142228
142473
|
|
|
142474
|
+
:default: - 0
|
|
142475
|
+
|
|
142229
142476
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-mariadbparameters.html#cfn-quicksight-datasource-mariadbparameters-port
|
|
142230
142477
|
'''
|
|
142231
142478
|
result = self._values.get("port")
|
|
@@ -142260,7 +142507,7 @@ class CfnDataSource(
|
|
|
142260
142507
|
|
|
142261
142508
|
:param database: Database.
|
|
142262
142509
|
:param host: Host.
|
|
142263
|
-
:param port: Port.
|
|
142510
|
+
:param port: Port. Default: - 0
|
|
142264
142511
|
|
|
142265
142512
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-mysqlparameters.html
|
|
142266
142513
|
:exampleMetadata: fixture=_generated
|
|
@@ -142312,6 +142559,8 @@ class CfnDataSource(
|
|
|
142312
142559
|
def port(self) -> jsii.Number:
|
|
142313
142560
|
'''Port.
|
|
142314
142561
|
|
|
142562
|
+
:default: - 0
|
|
142563
|
+
|
|
142315
142564
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-mysqlparameters.html#cfn-quicksight-datasource-mysqlparameters-port
|
|
142316
142565
|
'''
|
|
142317
142566
|
result = self._values.get("port")
|
|
@@ -142346,7 +142595,7 @@ class CfnDataSource(
|
|
|
142346
142595
|
|
|
142347
142596
|
:param database: Database.
|
|
142348
142597
|
:param host: Host.
|
|
142349
|
-
:param port: Port.
|
|
142598
|
+
:param port: Port. Default: - 0
|
|
142350
142599
|
|
|
142351
142600
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html
|
|
142352
142601
|
:exampleMetadata: fixture=_generated
|
|
@@ -142398,6 +142647,8 @@ class CfnDataSource(
|
|
|
142398
142647
|
def port(self) -> jsii.Number:
|
|
142399
142648
|
'''Port.
|
|
142400
142649
|
|
|
142650
|
+
:default: - 0
|
|
142651
|
+
|
|
142401
142652
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-oracleparameters.html#cfn-quicksight-datasource-oracleparameters-port
|
|
142402
142653
|
'''
|
|
142403
142654
|
result = self._values.get("port")
|
|
@@ -142432,7 +142683,7 @@ class CfnDataSource(
|
|
|
142432
142683
|
|
|
142433
142684
|
:param database: Database.
|
|
142434
142685
|
:param host: Host.
|
|
142435
|
-
:param port: Port.
|
|
142686
|
+
:param port: Port. Default: - 0
|
|
142436
142687
|
|
|
142437
142688
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-postgresqlparameters.html
|
|
142438
142689
|
:exampleMetadata: fixture=_generated
|
|
@@ -142484,6 +142735,8 @@ class CfnDataSource(
|
|
|
142484
142735
|
def port(self) -> jsii.Number:
|
|
142485
142736
|
'''Port.
|
|
142486
142737
|
|
|
142738
|
+
:default: - 0
|
|
142739
|
+
|
|
142487
142740
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-postgresqlparameters.html#cfn-quicksight-datasource-postgresqlparameters-port
|
|
142488
142741
|
'''
|
|
142489
142742
|
result = self._values.get("port")
|
|
@@ -142518,7 +142771,7 @@ class CfnDataSource(
|
|
|
142518
142771
|
|
|
142519
142772
|
:param catalog: Catalog.
|
|
142520
142773
|
:param host: Host.
|
|
142521
|
-
:param port: Port.
|
|
142774
|
+
:param port: Port. Default: - 0
|
|
142522
142775
|
|
|
142523
142776
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html
|
|
142524
142777
|
:exampleMetadata: fixture=_generated
|
|
@@ -142570,6 +142823,8 @@ class CfnDataSource(
|
|
|
142570
142823
|
def port(self) -> jsii.Number:
|
|
142571
142824
|
'''Port.
|
|
142572
142825
|
|
|
142826
|
+
:default: - 0
|
|
142827
|
+
|
|
142573
142828
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html#cfn-quicksight-datasource-prestoparameters-port
|
|
142574
142829
|
'''
|
|
142575
142830
|
result = self._values.get("port")
|
|
@@ -142658,6 +142913,125 @@ class CfnDataSource(
|
|
|
142658
142913
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
142659
142914
|
)
|
|
142660
142915
|
|
|
142916
|
+
@jsii.data_type(
|
|
142917
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.RedshiftIAMParametersProperty",
|
|
142918
|
+
jsii_struct_bases=[],
|
|
142919
|
+
name_mapping={
|
|
142920
|
+
"role_arn": "roleArn",
|
|
142921
|
+
"auto_create_database_user": "autoCreateDatabaseUser",
|
|
142922
|
+
"database_groups": "databaseGroups",
|
|
142923
|
+
"database_user": "databaseUser",
|
|
142924
|
+
},
|
|
142925
|
+
)
|
|
142926
|
+
class RedshiftIAMParametersProperty:
|
|
142927
|
+
def __init__(
|
|
142928
|
+
self,
|
|
142929
|
+
*,
|
|
142930
|
+
role_arn: builtins.str,
|
|
142931
|
+
auto_create_database_user: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
142932
|
+
database_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
142933
|
+
database_user: typing.Optional[builtins.str] = None,
|
|
142934
|
+
) -> None:
|
|
142935
|
+
'''
|
|
142936
|
+
For more information on the redshift:GetClusterCredentials API, see
|
|
142937
|
+
GetClusterCredentials
|
|
142938
|
+
.
|
|
142939
|
+
|
|
142940
|
+
:param role_arn: The calling principal must have iam:PassRole access to pass the role to Amazon QuickSight. The role's trust policy must allow the Amazon QuickSight service principal to assume the role.
|
|
142941
|
+
:param auto_create_database_user: If your database doesn't have a DatabaseUser, set this parameter to True. If there is no DatabaseUser, Amazon QuickSight can't connect to your cluster. The RoleArn that you use for this operation must grant access to redshift:CreateClusterUser to successfully create the user. Default: - false
|
|
142942
|
+
:param database_groups: These permissions are combined with the permissions granted to Amazon QuickSight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.
|
|
142943
|
+
:param database_user: If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of AutoCreateDatabaseUser to True to create a new user with PUBLIC permissions.
|
|
142944
|
+
|
|
142945
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftiamparameters.html
|
|
142946
|
+
:exampleMetadata: fixture=_generated
|
|
142947
|
+
|
|
142948
|
+
Example::
|
|
142949
|
+
|
|
142950
|
+
# The code below shows an example of how to instantiate this type.
|
|
142951
|
+
# The values are placeholders you should change.
|
|
142952
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
142953
|
+
|
|
142954
|
+
redshift_iAMParameters_property = quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
142955
|
+
role_arn="roleArn",
|
|
142956
|
+
|
|
142957
|
+
# the properties below are optional
|
|
142958
|
+
auto_create_database_user=False,
|
|
142959
|
+
database_groups=["databaseGroups"],
|
|
142960
|
+
database_user="databaseUser"
|
|
142961
|
+
)
|
|
142962
|
+
'''
|
|
142963
|
+
if __debug__:
|
|
142964
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a47e902e1dae317863117d114ce018f6ffe9d496d2fb295542068d103d059ceb)
|
|
142965
|
+
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
142966
|
+
check_type(argname="argument auto_create_database_user", value=auto_create_database_user, expected_type=type_hints["auto_create_database_user"])
|
|
142967
|
+
check_type(argname="argument database_groups", value=database_groups, expected_type=type_hints["database_groups"])
|
|
142968
|
+
check_type(argname="argument database_user", value=database_user, expected_type=type_hints["database_user"])
|
|
142969
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
142970
|
+
"role_arn": role_arn,
|
|
142971
|
+
}
|
|
142972
|
+
if auto_create_database_user is not None:
|
|
142973
|
+
self._values["auto_create_database_user"] = auto_create_database_user
|
|
142974
|
+
if database_groups is not None:
|
|
142975
|
+
self._values["database_groups"] = database_groups
|
|
142976
|
+
if database_user is not None:
|
|
142977
|
+
self._values["database_user"] = database_user
|
|
142978
|
+
|
|
142979
|
+
@builtins.property
|
|
142980
|
+
def role_arn(self) -> builtins.str:
|
|
142981
|
+
'''
|
|
142982
|
+
The calling principal must have iam:PassRole access to pass the role to Amazon QuickSight. The role's trust policy must allow the Amazon QuickSight service principal to assume the role.
|
|
142983
|
+
|
|
142984
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftiamparameters.html#cfn-quicksight-datasource-redshiftiamparameters-rolearn
|
|
142985
|
+
'''
|
|
142986
|
+
result = self._values.get("role_arn")
|
|
142987
|
+
assert result is not None, "Required property 'role_arn' is missing"
|
|
142988
|
+
return typing.cast(builtins.str, result)
|
|
142989
|
+
|
|
142990
|
+
@builtins.property
|
|
142991
|
+
def auto_create_database_user(
|
|
142992
|
+
self,
|
|
142993
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
142994
|
+
'''
|
|
142995
|
+
If your database doesn't have a DatabaseUser, set this parameter to True. If there is no DatabaseUser, Amazon QuickSight can't connect to your cluster. The RoleArn that you use for this operation must grant access to redshift:CreateClusterUser to successfully create the user.
|
|
142996
|
+
|
|
142997
|
+
:default: - false
|
|
142998
|
+
|
|
142999
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftiamparameters.html#cfn-quicksight-datasource-redshiftiamparameters-autocreatedatabaseuser
|
|
143000
|
+
'''
|
|
143001
|
+
result = self._values.get("auto_create_database_user")
|
|
143002
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
143003
|
+
|
|
143004
|
+
@builtins.property
|
|
143005
|
+
def database_groups(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
143006
|
+
'''
|
|
143007
|
+
These permissions are combined with the permissions granted to Amazon QuickSight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.
|
|
143008
|
+
|
|
143009
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftiamparameters.html#cfn-quicksight-datasource-redshiftiamparameters-databasegroups
|
|
143010
|
+
'''
|
|
143011
|
+
result = self._values.get("database_groups")
|
|
143012
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
143013
|
+
|
|
143014
|
+
@builtins.property
|
|
143015
|
+
def database_user(self) -> typing.Optional[builtins.str]:
|
|
143016
|
+
'''
|
|
143017
|
+
If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of AutoCreateDatabaseUser to True to create a new user with PUBLIC permissions.
|
|
143018
|
+
|
|
143019
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftiamparameters.html#cfn-quicksight-datasource-redshiftiamparameters-databaseuser
|
|
143020
|
+
'''
|
|
143021
|
+
result = self._values.get("database_user")
|
|
143022
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
143023
|
+
|
|
143024
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
143025
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
143026
|
+
|
|
143027
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
143028
|
+
return not (rhs == self)
|
|
143029
|
+
|
|
143030
|
+
def __repr__(self) -> str:
|
|
143031
|
+
return "RedshiftIAMParametersProperty(%s)" % ", ".join(
|
|
143032
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
143033
|
+
)
|
|
143034
|
+
|
|
142661
143035
|
@jsii.data_type(
|
|
142662
143036
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.RedshiftParametersProperty",
|
|
142663
143037
|
jsii_struct_bases=[],
|
|
@@ -142665,6 +143039,8 @@ class CfnDataSource(
|
|
|
142665
143039
|
"database": "database",
|
|
142666
143040
|
"cluster_id": "clusterId",
|
|
142667
143041
|
"host": "host",
|
|
143042
|
+
"iam_parameters": "iamParameters",
|
|
143043
|
+
"identity_center_configuration": "identityCenterConfiguration",
|
|
142668
143044
|
"port": "port",
|
|
142669
143045
|
},
|
|
142670
143046
|
)
|
|
@@ -142675,6 +143051,8 @@ class CfnDataSource(
|
|
|
142675
143051
|
database: builtins.str,
|
|
142676
143052
|
cluster_id: typing.Optional[builtins.str] = None,
|
|
142677
143053
|
host: typing.Optional[builtins.str] = None,
|
|
143054
|
+
iam_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.RedshiftIAMParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143055
|
+
identity_center_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.IdentityCenterConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
142678
143056
|
port: typing.Optional[jsii.Number] = None,
|
|
142679
143057
|
) -> None:
|
|
142680
143058
|
'''The parameters for Amazon Redshift.
|
|
@@ -142684,7 +143062,9 @@ class CfnDataSource(
|
|
|
142684
143062
|
:param database: Database.
|
|
142685
143063
|
:param cluster_id: Cluster ID. This field can be blank if the ``Host`` and ``Port`` are provided.
|
|
142686
143064
|
:param host: Host. This field can be blank if ``ClusterId`` is provided.
|
|
142687
|
-
:param
|
|
143065
|
+
:param iam_parameters: For more information on the redshift:GetClusterCredentials API, see GetClusterCredentials .
|
|
143066
|
+
:param identity_center_configuration: An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your cluster. This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.
|
|
143067
|
+
:param port: Port. This field can be blank if the ``ClusterId`` is provided. Default: - 0
|
|
142688
143068
|
|
|
142689
143069
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftparameters.html
|
|
142690
143070
|
:exampleMetadata: fixture=_generated
|
|
@@ -142701,6 +143081,17 @@ class CfnDataSource(
|
|
|
142701
143081
|
# the properties below are optional
|
|
142702
143082
|
cluster_id="clusterId",
|
|
142703
143083
|
host="host",
|
|
143084
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
143085
|
+
role_arn="roleArn",
|
|
143086
|
+
|
|
143087
|
+
# the properties below are optional
|
|
143088
|
+
auto_create_database_user=False,
|
|
143089
|
+
database_groups=["databaseGroups"],
|
|
143090
|
+
database_user="databaseUser"
|
|
143091
|
+
),
|
|
143092
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
143093
|
+
enable_identity_propagation=False
|
|
143094
|
+
),
|
|
142704
143095
|
port=123
|
|
142705
143096
|
)
|
|
142706
143097
|
'''
|
|
@@ -142709,6 +143100,8 @@ class CfnDataSource(
|
|
|
142709
143100
|
check_type(argname="argument database", value=database, expected_type=type_hints["database"])
|
|
142710
143101
|
check_type(argname="argument cluster_id", value=cluster_id, expected_type=type_hints["cluster_id"])
|
|
142711
143102
|
check_type(argname="argument host", value=host, expected_type=type_hints["host"])
|
|
143103
|
+
check_type(argname="argument iam_parameters", value=iam_parameters, expected_type=type_hints["iam_parameters"])
|
|
143104
|
+
check_type(argname="argument identity_center_configuration", value=identity_center_configuration, expected_type=type_hints["identity_center_configuration"])
|
|
142712
143105
|
check_type(argname="argument port", value=port, expected_type=type_hints["port"])
|
|
142713
143106
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
142714
143107
|
"database": database,
|
|
@@ -142717,6 +143110,10 @@ class CfnDataSource(
|
|
|
142717
143110
|
self._values["cluster_id"] = cluster_id
|
|
142718
143111
|
if host is not None:
|
|
142719
143112
|
self._values["host"] = host
|
|
143113
|
+
if iam_parameters is not None:
|
|
143114
|
+
self._values["iam_parameters"] = iam_parameters
|
|
143115
|
+
if identity_center_configuration is not None:
|
|
143116
|
+
self._values["identity_center_configuration"] = identity_center_configuration
|
|
142720
143117
|
if port is not None:
|
|
142721
143118
|
self._values["port"] = port
|
|
142722
143119
|
|
|
@@ -142752,12 +143149,41 @@ class CfnDataSource(
|
|
|
142752
143149
|
result = self._values.get("host")
|
|
142753
143150
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
142754
143151
|
|
|
143152
|
+
@builtins.property
|
|
143153
|
+
def iam_parameters(
|
|
143154
|
+
self,
|
|
143155
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.RedshiftIAMParametersProperty"]]:
|
|
143156
|
+
'''
|
|
143157
|
+
For more information on the redshift:GetClusterCredentials API, see
|
|
143158
|
+
GetClusterCredentials
|
|
143159
|
+
.
|
|
143160
|
+
|
|
143161
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftparameters.html#cfn-quicksight-datasource-redshiftparameters-iamparameters
|
|
143162
|
+
'''
|
|
143163
|
+
result = self._values.get("iam_parameters")
|
|
143164
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.RedshiftIAMParametersProperty"]], result)
|
|
143165
|
+
|
|
143166
|
+
@builtins.property
|
|
143167
|
+
def identity_center_configuration(
|
|
143168
|
+
self,
|
|
143169
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.IdentityCenterConfigurationProperty"]]:
|
|
143170
|
+
'''An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your cluster.
|
|
143171
|
+
|
|
143172
|
+
This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.
|
|
143173
|
+
|
|
143174
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftparameters.html#cfn-quicksight-datasource-redshiftparameters-identitycenterconfiguration
|
|
143175
|
+
'''
|
|
143176
|
+
result = self._values.get("identity_center_configuration")
|
|
143177
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.IdentityCenterConfigurationProperty"]], result)
|
|
143178
|
+
|
|
142755
143179
|
@builtins.property
|
|
142756
143180
|
def port(self) -> typing.Optional[jsii.Number]:
|
|
142757
143181
|
'''Port.
|
|
142758
143182
|
|
|
142759
143183
|
This field can be blank if the ``ClusterId`` is provided.
|
|
142760
143184
|
|
|
143185
|
+
:default: - 0
|
|
143186
|
+
|
|
142761
143187
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftparameters.html#cfn-quicksight-datasource-redshiftparameters-port
|
|
142762
143188
|
'''
|
|
142763
143189
|
result = self._values.get("port")
|
|
@@ -142777,7 +143203,11 @@ class CfnDataSource(
|
|
|
142777
143203
|
@jsii.data_type(
|
|
142778
143204
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSource.ResourcePermissionProperty",
|
|
142779
143205
|
jsii_struct_bases=[],
|
|
142780
|
-
name_mapping={
|
|
143206
|
+
name_mapping={
|
|
143207
|
+
"actions": "actions",
|
|
143208
|
+
"principal": "principal",
|
|
143209
|
+
"resource": "resource",
|
|
143210
|
+
},
|
|
142781
143211
|
)
|
|
142782
143212
|
class ResourcePermissionProperty:
|
|
142783
143213
|
def __init__(
|
|
@@ -142785,11 +143215,13 @@ class CfnDataSource(
|
|
|
142785
143215
|
*,
|
|
142786
143216
|
actions: typing.Sequence[builtins.str],
|
|
142787
143217
|
principal: builtins.str,
|
|
143218
|
+
resource: typing.Optional[builtins.str] = None,
|
|
142788
143219
|
) -> None:
|
|
142789
143220
|
'''Permission for the resource.
|
|
142790
143221
|
|
|
142791
143222
|
:param actions: The IAM action to grant or revoke permissions on.
|
|
142792
143223
|
:param principal: The Amazon Resource Name (ARN) of the principal. This can be one of the following:. - The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) - The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) - The ARN of an AWS account root: This is an IAM ARN rather than a Amazon QuickSight ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
|
|
143224
|
+
:param resource:
|
|
142793
143225
|
|
|
142794
143226
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcepermission.html
|
|
142795
143227
|
:exampleMetadata: fixture=_generated
|
|
@@ -142802,17 +143234,23 @@ class CfnDataSource(
|
|
|
142802
143234
|
|
|
142803
143235
|
resource_permission_property = quicksight.CfnDataSource.ResourcePermissionProperty(
|
|
142804
143236
|
actions=["actions"],
|
|
142805
|
-
principal="principal"
|
|
143237
|
+
principal="principal",
|
|
143238
|
+
|
|
143239
|
+
# the properties below are optional
|
|
143240
|
+
resource="resource"
|
|
142806
143241
|
)
|
|
142807
143242
|
'''
|
|
142808
143243
|
if __debug__:
|
|
142809
143244
|
type_hints = typing.get_type_hints(_typecheckingstub__1a0d9b8b7745b89b7ad28ec581b2f119c802dde16a26174f65e9d15a40a7ec3a)
|
|
142810
143245
|
check_type(argname="argument actions", value=actions, expected_type=type_hints["actions"])
|
|
142811
143246
|
check_type(argname="argument principal", value=principal, expected_type=type_hints["principal"])
|
|
143247
|
+
check_type(argname="argument resource", value=resource, expected_type=type_hints["resource"])
|
|
142812
143248
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
142813
143249
|
"actions": actions,
|
|
142814
143250
|
"principal": principal,
|
|
142815
143251
|
}
|
|
143252
|
+
if resource is not None:
|
|
143253
|
+
self._values["resource"] = resource
|
|
142816
143254
|
|
|
142817
143255
|
@builtins.property
|
|
142818
143256
|
def actions(self) -> typing.List[builtins.str]:
|
|
@@ -142838,6 +143276,14 @@ class CfnDataSource(
|
|
|
142838
143276
|
assert result is not None, "Required property 'principal' is missing"
|
|
142839
143277
|
return typing.cast(builtins.str, result)
|
|
142840
143278
|
|
|
143279
|
+
@builtins.property
|
|
143280
|
+
def resource(self) -> typing.Optional[builtins.str]:
|
|
143281
|
+
'''
|
|
143282
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcepermission.html#cfn-quicksight-datasource-resourcepermission-resource
|
|
143283
|
+
'''
|
|
143284
|
+
result = self._values.get("resource")
|
|
143285
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
143286
|
+
|
|
142841
143287
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
142842
143288
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
142843
143289
|
|
|
@@ -143034,7 +143480,7 @@ class CfnDataSource(
|
|
|
143034
143480
|
'''The parameters for Spark.
|
|
143035
143481
|
|
|
143036
143482
|
:param host: Host.
|
|
143037
|
-
:param port: Port.
|
|
143483
|
+
:param port: Port. Default: - 0
|
|
143038
143484
|
|
|
143039
143485
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sparkparameters.html
|
|
143040
143486
|
:exampleMetadata: fixture=_generated
|
|
@@ -143073,6 +143519,8 @@ class CfnDataSource(
|
|
|
143073
143519
|
def port(self) -> jsii.Number:
|
|
143074
143520
|
'''Port.
|
|
143075
143521
|
|
|
143522
|
+
:default: - 0
|
|
143523
|
+
|
|
143076
143524
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sparkparameters.html#cfn-quicksight-datasource-sparkparameters-port
|
|
143077
143525
|
'''
|
|
143078
143526
|
result = self._values.get("port")
|
|
@@ -143107,7 +143555,7 @@ class CfnDataSource(
|
|
|
143107
143555
|
|
|
143108
143556
|
:param database: Database.
|
|
143109
143557
|
:param host: Host.
|
|
143110
|
-
:param port: Port.
|
|
143558
|
+
:param port: Port. Default: - 0
|
|
143111
143559
|
|
|
143112
143560
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sqlserverparameters.html
|
|
143113
143561
|
:exampleMetadata: fixture=_generated
|
|
@@ -143159,6 +143607,8 @@ class CfnDataSource(
|
|
|
143159
143607
|
def port(self) -> jsii.Number:
|
|
143160
143608
|
'''Port.
|
|
143161
143609
|
|
|
143610
|
+
:default: - 0
|
|
143611
|
+
|
|
143162
143612
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sqlserverparameters.html#cfn-quicksight-datasource-sqlserverparameters-port
|
|
143163
143613
|
'''
|
|
143164
143614
|
result = self._values.get("port")
|
|
@@ -143189,7 +143639,7 @@ class CfnDataSource(
|
|
|
143189
143639
|
) -> None:
|
|
143190
143640
|
'''Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying data source.
|
|
143191
143641
|
|
|
143192
|
-
:param disable_ssl: A Boolean option to control whether SSL should be disabled.
|
|
143642
|
+
:param disable_ssl: A Boolean option to control whether SSL should be disabled. Default: - false
|
|
143193
143643
|
|
|
143194
143644
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sslproperties.html
|
|
143195
143645
|
:exampleMetadata: fixture=_generated
|
|
@@ -143217,6 +143667,8 @@ class CfnDataSource(
|
|
|
143217
143667
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
143218
143668
|
'''A Boolean option to control whether SSL should be disabled.
|
|
143219
143669
|
|
|
143670
|
+
:default: - false
|
|
143671
|
+
|
|
143220
143672
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-sslproperties.html#cfn-quicksight-datasource-sslproperties-disablessl
|
|
143221
143673
|
'''
|
|
143222
143674
|
result = self._values.get("disable_ssl")
|
|
@@ -143256,7 +143708,7 @@ class CfnDataSource(
|
|
|
143256
143708
|
|
|
143257
143709
|
:param catalog: The catalog name for the Starburst data source.
|
|
143258
143710
|
:param host: The host name of the Starburst data source.
|
|
143259
|
-
:param port: The port for the Starburst data source.
|
|
143711
|
+
:param port: The port for the Starburst data source. Default: - 0
|
|
143260
143712
|
:param product_type: The product type for the Starburst data source.
|
|
143261
143713
|
|
|
143262
143714
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html
|
|
@@ -143315,6 +143767,8 @@ class CfnDataSource(
|
|
|
143315
143767
|
def port(self) -> jsii.Number:
|
|
143316
143768
|
'''The port for the Starburst data source.
|
|
143317
143769
|
|
|
143770
|
+
:default: - 0
|
|
143771
|
+
|
|
143318
143772
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-starburstparameters.html#cfn-quicksight-datasource-starburstparameters-port
|
|
143319
143773
|
'''
|
|
143320
143774
|
result = self._values.get("port")
|
|
@@ -143358,7 +143812,7 @@ class CfnDataSource(
|
|
|
143358
143812
|
|
|
143359
143813
|
:param database: Database.
|
|
143360
143814
|
:param host: Host.
|
|
143361
|
-
:param port: Port.
|
|
143815
|
+
:param port: Port. Default: - 0
|
|
143362
143816
|
|
|
143363
143817
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-teradataparameters.html
|
|
143364
143818
|
:exampleMetadata: fixture=_generated
|
|
@@ -143410,6 +143864,8 @@ class CfnDataSource(
|
|
|
143410
143864
|
def port(self) -> jsii.Number:
|
|
143411
143865
|
'''Port.
|
|
143412
143866
|
|
|
143867
|
+
:default: - 0
|
|
143868
|
+
|
|
143413
143869
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-teradataparameters.html#cfn-quicksight-datasource-teradataparameters-port
|
|
143414
143870
|
'''
|
|
143415
143871
|
result = self._values.get("port")
|
|
@@ -143444,7 +143900,7 @@ class CfnDataSource(
|
|
|
143444
143900
|
|
|
143445
143901
|
:param catalog: The catalog name for the Trino data source.
|
|
143446
143902
|
:param host: The host name of the Trino data source.
|
|
143447
|
-
:param port: The port for the Trino data source.
|
|
143903
|
+
:param port: The port for the Trino data source. Default: - 0
|
|
143448
143904
|
|
|
143449
143905
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-trinoparameters.html
|
|
143450
143906
|
:exampleMetadata: fixture=_generated
|
|
@@ -143496,6 +143952,8 @@ class CfnDataSource(
|
|
|
143496
143952
|
def port(self) -> jsii.Number:
|
|
143497
143953
|
'''The port for the Trino data source.
|
|
143498
143954
|
|
|
143955
|
+
:default: - 0
|
|
143956
|
+
|
|
143499
143957
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-trinoparameters.html#cfn-quicksight-datasource-trinoparameters-port
|
|
143500
143958
|
'''
|
|
143501
143959
|
result = self._values.get("port")
|
|
@@ -143570,17 +144028,17 @@ class CfnDataSource(
|
|
|
143570
144028
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSourceProps",
|
|
143571
144029
|
jsii_struct_bases=[],
|
|
143572
144030
|
name_mapping={
|
|
144031
|
+
"name": "name",
|
|
144032
|
+
"type": "type",
|
|
143573
144033
|
"alternate_data_source_parameters": "alternateDataSourceParameters",
|
|
143574
144034
|
"aws_account_id": "awsAccountId",
|
|
143575
144035
|
"credentials": "credentials",
|
|
143576
144036
|
"data_source_id": "dataSourceId",
|
|
143577
144037
|
"data_source_parameters": "dataSourceParameters",
|
|
143578
144038
|
"error_info": "errorInfo",
|
|
143579
|
-
"name": "name",
|
|
143580
144039
|
"permissions": "permissions",
|
|
143581
144040
|
"ssl_properties": "sslProperties",
|
|
143582
144041
|
"tags": "tags",
|
|
143583
|
-
"type": "type",
|
|
143584
144042
|
"vpc_connection_properties": "vpcConnectionProperties",
|
|
143585
144043
|
},
|
|
143586
144044
|
)
|
|
@@ -143588,32 +144046,32 @@ class CfnDataSourceProps:
|
|
|
143588
144046
|
def __init__(
|
|
143589
144047
|
self,
|
|
143590
144048
|
*,
|
|
144049
|
+
name: builtins.str,
|
|
144050
|
+
type: builtins.str,
|
|
143591
144051
|
alternate_data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
143592
144052
|
aws_account_id: typing.Optional[builtins.str] = None,
|
|
143593
144053
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceCredentialsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143594
144054
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
143595
144055
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143596
144056
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceErrorInfoProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143597
|
-
name: typing.Optional[builtins.str] = None,
|
|
143598
144057
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
143599
144058
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.SslPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143600
144059
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143601
|
-
type: typing.Optional[builtins.str] = None,
|
|
143602
144060
|
vpc_connection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.VpcConnectionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
143603
144061
|
) -> None:
|
|
143604
144062
|
'''Properties for defining a ``CfnDataSource``.
|
|
143605
144063
|
|
|
144064
|
+
:param name: A display name for the data source.
|
|
144065
|
+
:param type: The type of the data source. To return a list of all data sources, use ``ListDataSources`` . Use ``AMAZON_ELASTICSEARCH`` for Amazon OpenSearch Service.
|
|
143606
144066
|
:param alternate_data_source_parameters: A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the ``DataSourceParameters`` structure that's in the request with the structures in the ``AlternateDataSourceParameters`` allow list. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the ``AlternateDataSourceParameters`` list is null, the ``Credentials`` originally used with this ``DataSourceParameters`` are automatically allowed.
|
|
143607
144067
|
:param aws_account_id: The AWS account ID.
|
|
143608
144068
|
:param credentials: The credentials Amazon QuickSight that uses to connect to your underlying source. Currently, only credentials based on user name and password are supported.
|
|
143609
144069
|
:param data_source_id: An ID for the data source. This ID is unique per AWS Region for each AWS account.
|
|
143610
144070
|
:param data_source_parameters: The parameters that Amazon QuickSight uses to connect to your underlying source.
|
|
143611
144071
|
:param error_info: Error information from the last update or the creation of the data source.
|
|
143612
|
-
:param name: A display name for the data source.
|
|
143613
144072
|
:param permissions: A list of resource permissions on the data source.
|
|
143614
144073
|
:param ssl_properties: Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying source.
|
|
143615
144074
|
:param tags: Contains a map of the key-value pairs for the resource tag or tags assigned to the data source.
|
|
143616
|
-
:param type: The type of the data source. To return a list of all data sources, use ``ListDataSources`` . Use ``AMAZON_ELASTICSEARCH`` for Amazon OpenSearch Service.
|
|
143617
144075
|
:param vpc_connection_properties: Use this parameter only when you want Amazon QuickSight to use a VPC connection when connecting to your underlying source.
|
|
143618
144076
|
|
|
143619
144077
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html
|
|
@@ -143626,6 +144084,10 @@ class CfnDataSourceProps:
|
|
|
143626
144084
|
from aws_cdk import aws_quicksight as quicksight
|
|
143627
144085
|
|
|
143628
144086
|
cfn_data_source_props = quicksight.CfnDataSourceProps(
|
|
144087
|
+
name="name",
|
|
144088
|
+
type="type",
|
|
144089
|
+
|
|
144090
|
+
# the properties below are optional
|
|
143629
144091
|
alternate_data_source_parameters=[quicksight.CfnDataSource.DataSourceParametersProperty(
|
|
143630
144092
|
amazon_elasticsearch_parameters=quicksight.CfnDataSource.AmazonElasticsearchParametersProperty(
|
|
143631
144093
|
domain="domain"
|
|
@@ -143687,6 +144149,17 @@ class CfnDataSourceProps:
|
|
|
143687
144149
|
# the properties below are optional
|
|
143688
144150
|
cluster_id="clusterId",
|
|
143689
144151
|
host="host",
|
|
144152
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
144153
|
+
role_arn="roleArn",
|
|
144154
|
+
|
|
144155
|
+
# the properties below are optional
|
|
144156
|
+
auto_create_database_user=False,
|
|
144157
|
+
database_groups=["databaseGroups"],
|
|
144158
|
+
database_user="databaseUser"
|
|
144159
|
+
),
|
|
144160
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
144161
|
+
enable_identity_propagation=False
|
|
144162
|
+
),
|
|
143690
144163
|
port=123
|
|
143691
144164
|
),
|
|
143692
144165
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -143800,6 +144273,17 @@ class CfnDataSourceProps:
|
|
|
143800
144273
|
# the properties below are optional
|
|
143801
144274
|
cluster_id="clusterId",
|
|
143802
144275
|
host="host",
|
|
144276
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
144277
|
+
role_arn="roleArn",
|
|
144278
|
+
|
|
144279
|
+
# the properties below are optional
|
|
144280
|
+
auto_create_database_user=False,
|
|
144281
|
+
database_groups=["databaseGroups"],
|
|
144282
|
+
database_user="databaseUser"
|
|
144283
|
+
),
|
|
144284
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
144285
|
+
enable_identity_propagation=False
|
|
144286
|
+
),
|
|
143803
144287
|
port=123
|
|
143804
144288
|
),
|
|
143805
144289
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -143909,6 +144393,17 @@ class CfnDataSourceProps:
|
|
|
143909
144393
|
# the properties below are optional
|
|
143910
144394
|
cluster_id="clusterId",
|
|
143911
144395
|
host="host",
|
|
144396
|
+
iam_parameters=quicksight.CfnDataSource.RedshiftIAMParametersProperty(
|
|
144397
|
+
role_arn="roleArn",
|
|
144398
|
+
|
|
144399
|
+
# the properties below are optional
|
|
144400
|
+
auto_create_database_user=False,
|
|
144401
|
+
database_groups=["databaseGroups"],
|
|
144402
|
+
database_user="databaseUser"
|
|
144403
|
+
),
|
|
144404
|
+
identity_center_configuration=quicksight.CfnDataSource.IdentityCenterConfigurationProperty(
|
|
144405
|
+
enable_identity_propagation=False
|
|
144406
|
+
),
|
|
143912
144407
|
port=123
|
|
143913
144408
|
),
|
|
143914
144409
|
s3_parameters=quicksight.CfnDataSource.S3ParametersProperty(
|
|
@@ -143957,10 +144452,12 @@ class CfnDataSourceProps:
|
|
|
143957
144452
|
message="message",
|
|
143958
144453
|
type="type"
|
|
143959
144454
|
),
|
|
143960
|
-
name="name",
|
|
143961
144455
|
permissions=[quicksight.CfnDataSource.ResourcePermissionProperty(
|
|
143962
144456
|
actions=["actions"],
|
|
143963
|
-
principal="principal"
|
|
144457
|
+
principal="principal",
|
|
144458
|
+
|
|
144459
|
+
# the properties below are optional
|
|
144460
|
+
resource="resource"
|
|
143964
144461
|
)],
|
|
143965
144462
|
ssl_properties=quicksight.CfnDataSource.SslPropertiesProperty(
|
|
143966
144463
|
disable_ssl=False
|
|
@@ -143969,7 +144466,6 @@ class CfnDataSourceProps:
|
|
|
143969
144466
|
key="key",
|
|
143970
144467
|
value="value"
|
|
143971
144468
|
)],
|
|
143972
|
-
type="type",
|
|
143973
144469
|
vpc_connection_properties=quicksight.CfnDataSource.VpcConnectionPropertiesProperty(
|
|
143974
144470
|
vpc_connection_arn="vpcConnectionArn"
|
|
143975
144471
|
)
|
|
@@ -143977,19 +144473,22 @@ class CfnDataSourceProps:
|
|
|
143977
144473
|
'''
|
|
143978
144474
|
if __debug__:
|
|
143979
144475
|
type_hints = typing.get_type_hints(_typecheckingstub__9b7c8e8d2c1cd22ebd57a1044126743d7661d34244f6d106bdbdbab5f407abce)
|
|
144476
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
144477
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
143980
144478
|
check_type(argname="argument alternate_data_source_parameters", value=alternate_data_source_parameters, expected_type=type_hints["alternate_data_source_parameters"])
|
|
143981
144479
|
check_type(argname="argument aws_account_id", value=aws_account_id, expected_type=type_hints["aws_account_id"])
|
|
143982
144480
|
check_type(argname="argument credentials", value=credentials, expected_type=type_hints["credentials"])
|
|
143983
144481
|
check_type(argname="argument data_source_id", value=data_source_id, expected_type=type_hints["data_source_id"])
|
|
143984
144482
|
check_type(argname="argument data_source_parameters", value=data_source_parameters, expected_type=type_hints["data_source_parameters"])
|
|
143985
144483
|
check_type(argname="argument error_info", value=error_info, expected_type=type_hints["error_info"])
|
|
143986
|
-
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
143987
144484
|
check_type(argname="argument permissions", value=permissions, expected_type=type_hints["permissions"])
|
|
143988
144485
|
check_type(argname="argument ssl_properties", value=ssl_properties, expected_type=type_hints["ssl_properties"])
|
|
143989
144486
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
143990
|
-
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
143991
144487
|
check_type(argname="argument vpc_connection_properties", value=vpc_connection_properties, expected_type=type_hints["vpc_connection_properties"])
|
|
143992
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
144488
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
144489
|
+
"name": name,
|
|
144490
|
+
"type": type,
|
|
144491
|
+
}
|
|
143993
144492
|
if alternate_data_source_parameters is not None:
|
|
143994
144493
|
self._values["alternate_data_source_parameters"] = alternate_data_source_parameters
|
|
143995
144494
|
if aws_account_id is not None:
|
|
@@ -144002,19 +144501,37 @@ class CfnDataSourceProps:
|
|
|
144002
144501
|
self._values["data_source_parameters"] = data_source_parameters
|
|
144003
144502
|
if error_info is not None:
|
|
144004
144503
|
self._values["error_info"] = error_info
|
|
144005
|
-
if name is not None:
|
|
144006
|
-
self._values["name"] = name
|
|
144007
144504
|
if permissions is not None:
|
|
144008
144505
|
self._values["permissions"] = permissions
|
|
144009
144506
|
if ssl_properties is not None:
|
|
144010
144507
|
self._values["ssl_properties"] = ssl_properties
|
|
144011
144508
|
if tags is not None:
|
|
144012
144509
|
self._values["tags"] = tags
|
|
144013
|
-
if type is not None:
|
|
144014
|
-
self._values["type"] = type
|
|
144015
144510
|
if vpc_connection_properties is not None:
|
|
144016
144511
|
self._values["vpc_connection_properties"] = vpc_connection_properties
|
|
144017
144512
|
|
|
144513
|
+
@builtins.property
|
|
144514
|
+
def name(self) -> builtins.str:
|
|
144515
|
+
'''A display name for the data source.
|
|
144516
|
+
|
|
144517
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html#cfn-quicksight-datasource-name
|
|
144518
|
+
'''
|
|
144519
|
+
result = self._values.get("name")
|
|
144520
|
+
assert result is not None, "Required property 'name' is missing"
|
|
144521
|
+
return typing.cast(builtins.str, result)
|
|
144522
|
+
|
|
144523
|
+
@builtins.property
|
|
144524
|
+
def type(self) -> builtins.str:
|
|
144525
|
+
'''The type of the data source. To return a list of all data sources, use ``ListDataSources`` .
|
|
144526
|
+
|
|
144527
|
+
Use ``AMAZON_ELASTICSEARCH`` for Amazon OpenSearch Service.
|
|
144528
|
+
|
|
144529
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html#cfn-quicksight-datasource-type
|
|
144530
|
+
'''
|
|
144531
|
+
result = self._values.get("type")
|
|
144532
|
+
assert result is not None, "Required property 'type' is missing"
|
|
144533
|
+
return typing.cast(builtins.str, result)
|
|
144534
|
+
|
|
144018
144535
|
@builtins.property
|
|
144019
144536
|
def alternate_data_source_parameters(
|
|
144020
144537
|
self,
|
|
@@ -144083,15 +144600,6 @@ class CfnDataSourceProps:
|
|
|
144083
144600
|
result = self._values.get("error_info")
|
|
144084
144601
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataSource.DataSourceErrorInfoProperty]], result)
|
|
144085
144602
|
|
|
144086
|
-
@builtins.property
|
|
144087
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
144088
|
-
'''A display name for the data source.
|
|
144089
|
-
|
|
144090
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html#cfn-quicksight-datasource-name
|
|
144091
|
-
'''
|
|
144092
|
-
result = self._values.get("name")
|
|
144093
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
144094
|
-
|
|
144095
144603
|
@builtins.property
|
|
144096
144604
|
def permissions(
|
|
144097
144605
|
self,
|
|
@@ -144123,17 +144631,6 @@ class CfnDataSourceProps:
|
|
|
144123
144631
|
result = self._values.get("tags")
|
|
144124
144632
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
144125
144633
|
|
|
144126
|
-
@builtins.property
|
|
144127
|
-
def type(self) -> typing.Optional[builtins.str]:
|
|
144128
|
-
'''The type of the data source. To return a list of all data sources, use ``ListDataSources`` .
|
|
144129
|
-
|
|
144130
|
-
Use ``AMAZON_ELASTICSEARCH`` for Amazon OpenSearch Service.
|
|
144131
|
-
|
|
144132
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html#cfn-quicksight-datasource-type
|
|
144133
|
-
'''
|
|
144134
|
-
result = self._values.get("type")
|
|
144135
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
144136
|
-
|
|
144137
144634
|
@builtins.property
|
|
144138
144635
|
def vpc_connection_properties(
|
|
144139
144636
|
self,
|
|
@@ -215490,7 +215987,7 @@ class CfnTopic(
|
|
|
215490
215987
|
:param column_data_role: The column data role for a calculated field. Valid values for this structure are ``DIMENSION`` and ``MEASURE`` .
|
|
215491
215988
|
:param comparative_order: The order in which data is displayed for the calculated field when it's used in a comparative context.
|
|
215492
215989
|
:param default_formatting: The default formatting definition.
|
|
215493
|
-
:param disable_indexing:
|
|
215990
|
+
:param disable_indexing: A Boolean value that indicates if a calculated field is visible in the autocomplete.
|
|
215494
215991
|
:param is_included_in_topic: A boolean value that indicates if a calculated field is included in the topic. Default: - false
|
|
215495
215992
|
:param never_aggregate_in_filter: A Boolean value that indicates whether to never aggregate calculated field in filters. Default: - false
|
|
215496
215993
|
:param non_additive: The non additive for the table style target. Default: - false
|
|
@@ -215729,7 +216226,8 @@ class CfnTopic(
|
|
|
215729
216226
|
def disable_indexing(
|
|
215730
216227
|
self,
|
|
215731
216228
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
215732
|
-
'''
|
|
216229
|
+
'''A Boolean value that indicates if a calculated field is visible in the autocomplete.
|
|
216230
|
+
|
|
215733
216231
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-topiccalculatedfield.html#cfn-quicksight-topic-topiccalculatedfield-disableindexing
|
|
215734
216232
|
'''
|
|
215735
216233
|
result = self._values.get("disable_indexing")
|
|
@@ -216095,7 +216593,7 @@ class CfnTopic(
|
|
|
216095
216593
|
:param column_synonyms: The other names or aliases for the column.
|
|
216096
216594
|
:param comparative_order: The order in which data is displayed for the column when it's used in a comparative context.
|
|
216097
216595
|
:param default_formatting: The default formatting used for values in the column.
|
|
216098
|
-
:param disable_indexing:
|
|
216596
|
+
:param disable_indexing: A Boolean value that indicates whether the column shows in the autocomplete functionality.
|
|
216099
216597
|
:param is_included_in_topic: A Boolean value that indicates whether the column is included in the query results. Default: - false
|
|
216100
216598
|
:param never_aggregate_in_filter: A Boolean value that indicates whether to aggregate the column data when it's used in a filter context. Default: - false
|
|
216101
216599
|
:param non_additive: The non additive value for the column. Default: - false
|
|
@@ -216330,7 +216828,8 @@ class CfnTopic(
|
|
|
216330
216828
|
def disable_indexing(
|
|
216331
216829
|
self,
|
|
216332
216830
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
216333
|
-
'''
|
|
216831
|
+
'''A Boolean value that indicates whether the column shows in the autocomplete functionality.
|
|
216832
|
+
|
|
216334
216833
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-topiccolumn.html#cfn-quicksight-topic-topiccolumn-disableindexing
|
|
216335
216834
|
'''
|
|
216336
216835
|
result = self._values.get("disable_indexing")
|
|
@@ -227925,7 +228424,7 @@ def _typecheckingstub__97e4fcb997b025bd8b8162d5528bd73bc1c489c80a53a49d2bf3f33ac
|
|
|
227925
228424
|
|
|
227926
228425
|
def _typecheckingstub__f8112e3ac95c271ef07e7d73f3bc230c7463e9b93fdcd125f136b968bd641daf(
|
|
227927
228426
|
*,
|
|
227928
|
-
refresh_configuration: typing.
|
|
228427
|
+
refresh_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.RefreshConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
227929
228428
|
) -> None:
|
|
227930
228429
|
"""Type checking stubs"""
|
|
227931
228430
|
pass
|
|
@@ -228009,7 +228508,7 @@ def _typecheckingstub__bec18505abc90d3d5642a41efec26e4f721ea187d8c10ac74e83c1b18
|
|
|
228009
228508
|
|
|
228010
228509
|
def _typecheckingstub__050d6b5255b31d4ab7c73f6aafa1a5fe608236a3cccebca823246b22b90fee38(
|
|
228011
228510
|
*,
|
|
228012
|
-
lookback_window: typing.
|
|
228511
|
+
lookback_window: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.LookbackWindowProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
228013
228512
|
) -> None:
|
|
228014
228513
|
"""Type checking stubs"""
|
|
228015
228514
|
pass
|
|
@@ -228087,9 +228586,9 @@ def _typecheckingstub__0a293e2912f440646f6682b968c3dd42e6638d2854a474189be20da75
|
|
|
228087
228586
|
|
|
228088
228587
|
def _typecheckingstub__a459912c2016e678aba1d9960ab86b8b700c551da63e7414e8aa04fea6e0a95e(
|
|
228089
228588
|
*,
|
|
228090
|
-
column_name:
|
|
228091
|
-
size:
|
|
228092
|
-
size_unit:
|
|
228589
|
+
column_name: builtins.str,
|
|
228590
|
+
size: jsii.Number,
|
|
228591
|
+
size_unit: builtins.str,
|
|
228093
228592
|
) -> None:
|
|
228094
228593
|
"""Type checking stubs"""
|
|
228095
228594
|
pass
|
|
@@ -228141,7 +228640,7 @@ def _typecheckingstub__f8e4e442aa58a18179ff77f915ae9041c15500b9de7cc923ee465cc5b
|
|
|
228141
228640
|
|
|
228142
228641
|
def _typecheckingstub__4f5b07a3830c8168aac61eee81da7fe4ea32166016cf2c4406b473b412992eb3(
|
|
228143
228642
|
*,
|
|
228144
|
-
incremental_refresh: typing.
|
|
228643
|
+
incremental_refresh: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.IncrementalRefreshProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
228145
228644
|
) -> None:
|
|
228146
228645
|
"""Type checking stubs"""
|
|
228147
228646
|
pass
|
|
@@ -228246,6 +228745,15 @@ def _typecheckingstub__c858116d8ca183e35074dc7ac22d6e02615a61e79e9558dc2d96336d9
|
|
|
228246
228745
|
project_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.ProjectOperationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228247
228746
|
rename_column_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.RenameColumnOperationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228248
228747
|
tag_column_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.TagColumnOperationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228748
|
+
untag_column_operation: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSet.UntagColumnOperationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228749
|
+
) -> None:
|
|
228750
|
+
"""Type checking stubs"""
|
|
228751
|
+
pass
|
|
228752
|
+
|
|
228753
|
+
def _typecheckingstub__83a459067085ea2750b1f919da06faa9466a8a5800fae79848c372863ce7ab3b(
|
|
228754
|
+
*,
|
|
228755
|
+
column_name: builtins.str,
|
|
228756
|
+
tag_names: typing.Sequence[builtins.str],
|
|
228249
228757
|
) -> None:
|
|
228250
228758
|
"""Type checking stubs"""
|
|
228251
228759
|
pass
|
|
@@ -228288,17 +228796,17 @@ def _typecheckingstub__374b42679a82ae47079989dc56d79f0d0b7c439a3c9f7e6d2725ab4c7
|
|
|
228288
228796
|
scope: _constructs_77d1e7e8.Construct,
|
|
228289
228797
|
id: builtins.str,
|
|
228290
228798
|
*,
|
|
228799
|
+
name: builtins.str,
|
|
228800
|
+
type: builtins.str,
|
|
228291
228801
|
alternate_data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
228292
228802
|
aws_account_id: typing.Optional[builtins.str] = None,
|
|
228293
228803
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceCredentialsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228294
228804
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
228295
228805
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228296
228806
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceErrorInfoProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228297
|
-
name: typing.Optional[builtins.str] = None,
|
|
228298
228807
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
228299
228808
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.SslPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228300
228809
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228301
|
-
type: typing.Optional[builtins.str] = None,
|
|
228302
228810
|
vpc_connection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.VpcConnectionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228303
228811
|
) -> None:
|
|
228304
228812
|
"""Type checking stubs"""
|
|
@@ -228316,6 +228824,18 @@ def _typecheckingstub__f8eb54a2aed0a06bc64a0703fdcc2a5b9961317d6f25e712e1f9a6530
|
|
|
228316
228824
|
"""Type checking stubs"""
|
|
228317
228825
|
pass
|
|
228318
228826
|
|
|
228827
|
+
def _typecheckingstub__052425c353cfb69cd3d7b21804a17d34c4d718ab05be68ee000a42ec3d089d5e(
|
|
228828
|
+
value: builtins.str,
|
|
228829
|
+
) -> None:
|
|
228830
|
+
"""Type checking stubs"""
|
|
228831
|
+
pass
|
|
228832
|
+
|
|
228833
|
+
def _typecheckingstub__a9629e48048b57721b64306d8b9ec36a4da85373ef960e1d47fd336a6048d3e7(
|
|
228834
|
+
value: builtins.str,
|
|
228835
|
+
) -> None:
|
|
228836
|
+
"""Type checking stubs"""
|
|
228837
|
+
pass
|
|
228838
|
+
|
|
228319
228839
|
def _typecheckingstub__eb379c4375e37df7dc712f334701ec783760f5e486678e89408afeef7d9be1be(
|
|
228320
228840
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataSource.DataSourceParametersProperty]]]],
|
|
228321
228841
|
) -> None:
|
|
@@ -228352,12 +228872,6 @@ def _typecheckingstub__e8c906a2be130881812bea32c60ce64f9dd123ce92cb93ebef14967c3
|
|
|
228352
228872
|
"""Type checking stubs"""
|
|
228353
228873
|
pass
|
|
228354
228874
|
|
|
228355
|
-
def _typecheckingstub__052425c353cfb69cd3d7b21804a17d34c4d718ab05be68ee000a42ec3d089d5e(
|
|
228356
|
-
value: typing.Optional[builtins.str],
|
|
228357
|
-
) -> None:
|
|
228358
|
-
"""Type checking stubs"""
|
|
228359
|
-
pass
|
|
228360
|
-
|
|
228361
228875
|
def _typecheckingstub__67967cbb0c0393ec55fe203f29b3078095f17848804e7a81297e61fe75f5c3ce(
|
|
228362
228876
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDataSource.ResourcePermissionProperty]]]],
|
|
228363
228877
|
) -> None:
|
|
@@ -228376,12 +228890,6 @@ def _typecheckingstub__e0230d4ce77e973f3a7590b7ac180996f418a6d85fa113e78f28e1431
|
|
|
228376
228890
|
"""Type checking stubs"""
|
|
228377
228891
|
pass
|
|
228378
228892
|
|
|
228379
|
-
def _typecheckingstub__a9629e48048b57721b64306d8b9ec36a4da85373ef960e1d47fd336a6048d3e7(
|
|
228380
|
-
value: typing.Optional[builtins.str],
|
|
228381
|
-
) -> None:
|
|
228382
|
-
"""Type checking stubs"""
|
|
228383
|
-
pass
|
|
228384
|
-
|
|
228385
228893
|
def _typecheckingstub__c0f6342c628ea6be2cf1fb1d8a9ac0fcd7e1758472fe1379db22be3198f00bcd(
|
|
228386
228894
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDataSource.VpcConnectionPropertiesProperty]],
|
|
228387
228895
|
) -> None:
|
|
@@ -228489,6 +228997,13 @@ def _typecheckingstub__98e6719897c204ef53c2b23b648a88d9061d63939585326b00645a40d
|
|
|
228489
228997
|
"""Type checking stubs"""
|
|
228490
228998
|
pass
|
|
228491
228999
|
|
|
229000
|
+
def _typecheckingstub__b18cd1c8e3eadf23e534f1d98944b37ecbc88f56480eec1ba6d43514a137f70f(
|
|
229001
|
+
*,
|
|
229002
|
+
enable_identity_propagation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
229003
|
+
) -> None:
|
|
229004
|
+
"""Type checking stubs"""
|
|
229005
|
+
pass
|
|
229006
|
+
|
|
228492
229007
|
def _typecheckingstub__591da15ac3abdbcdfb930993f40dcd32733d6a857e43cec22d71f2596f387283(
|
|
228493
229008
|
*,
|
|
228494
229009
|
bucket: builtins.str,
|
|
@@ -228550,11 +229065,23 @@ def _typecheckingstub__a30b6f28dd8cca8fc2818f609862550035863c318c920a79331e1ac25
|
|
|
228550
229065
|
"""Type checking stubs"""
|
|
228551
229066
|
pass
|
|
228552
229067
|
|
|
229068
|
+
def _typecheckingstub__a47e902e1dae317863117d114ce018f6ffe9d496d2fb295542068d103d059ceb(
|
|
229069
|
+
*,
|
|
229070
|
+
role_arn: builtins.str,
|
|
229071
|
+
auto_create_database_user: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
229072
|
+
database_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
229073
|
+
database_user: typing.Optional[builtins.str] = None,
|
|
229074
|
+
) -> None:
|
|
229075
|
+
"""Type checking stubs"""
|
|
229076
|
+
pass
|
|
229077
|
+
|
|
228553
229078
|
def _typecheckingstub__3696c4fb0f434d94a61c7c2824c7fa2d13ab009450487f1d83d0a7116c573ce2(
|
|
228554
229079
|
*,
|
|
228555
229080
|
database: builtins.str,
|
|
228556
229081
|
cluster_id: typing.Optional[builtins.str] = None,
|
|
228557
229082
|
host: typing.Optional[builtins.str] = None,
|
|
229083
|
+
iam_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.RedshiftIAMParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
229084
|
+
identity_center_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.IdentityCenterConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228558
229085
|
port: typing.Optional[jsii.Number] = None,
|
|
228559
229086
|
) -> None:
|
|
228560
229087
|
"""Type checking stubs"""
|
|
@@ -228564,6 +229091,7 @@ def _typecheckingstub__1a0d9b8b7745b89b7ad28ec581b2f119c802dde16a26174f65e9d15a4
|
|
|
228564
229091
|
*,
|
|
228565
229092
|
actions: typing.Sequence[builtins.str],
|
|
228566
229093
|
principal: builtins.str,
|
|
229094
|
+
resource: typing.Optional[builtins.str] = None,
|
|
228567
229095
|
) -> None:
|
|
228568
229096
|
"""Type checking stubs"""
|
|
228569
229097
|
pass
|
|
@@ -228646,17 +229174,17 @@ def _typecheckingstub__595650930405b9b965c7b84dd2e513079a1e79f8b32e4a0f00eb530db
|
|
|
228646
229174
|
|
|
228647
229175
|
def _typecheckingstub__9b7c8e8d2c1cd22ebd57a1044126743d7661d34244f6d106bdbdbab5f407abce(
|
|
228648
229176
|
*,
|
|
229177
|
+
name: builtins.str,
|
|
229178
|
+
type: builtins.str,
|
|
228649
229179
|
alternate_data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
228650
229180
|
aws_account_id: typing.Optional[builtins.str] = None,
|
|
228651
229181
|
credentials: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceCredentialsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228652
229182
|
data_source_id: typing.Optional[builtins.str] = None,
|
|
228653
229183
|
data_source_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228654
229184
|
error_info: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.DataSourceErrorInfoProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228655
|
-
name: typing.Optional[builtins.str] = None,
|
|
228656
229185
|
permissions: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ResourcePermissionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
228657
229186
|
ssl_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.SslPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228658
229187
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228659
|
-
type: typing.Optional[builtins.str] = None,
|
|
228660
229188
|
vpc_connection_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.VpcConnectionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
228661
229189
|
) -> None:
|
|
228662
229190
|
"""Type checking stubs"""
|