aws-cdk-lib 2.96.2__py3-none-any.whl → 2.97.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +246 -62
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.96.2.jsii.tgz → aws-cdk-lib@2.97.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1 -1
- aws_cdk/aws_appflow/__init__.py +205 -7
- aws_cdk/aws_appstream/__init__.py +33 -28
- aws_cdk/aws_appsync/__init__.py +555 -71
- aws_cdk/aws_autoscaling/__init__.py +5 -11
- aws_cdk/aws_billingconductor/__init__.py +145 -1
- aws_cdk/aws_cleanrooms/__init__.py +1198 -86
- aws_cdk/aws_cloudformation/__init__.py +221 -55
- aws_cdk/aws_cloudwatch/__init__.py +325 -2
- aws_cdk/aws_cognito/__init__.py +9 -13
- aws_cdk/aws_config/__init__.py +68 -73
- aws_cdk/aws_connect/__init__.py +909 -164
- aws_cdk/aws_customerprofiles/__init__.py +44 -0
- aws_cdk/aws_dms/__init__.py +198 -0
- aws_cdk/aws_ec2/__init__.py +593 -73
- aws_cdk/aws_ecr/__init__.py +7 -2
- aws_cdk/aws_ecs/__init__.py +2 -2
- aws_cdk/aws_efs/__init__.py +237 -0
- aws_cdk/aws_emr/__init__.py +232 -0
- aws_cdk/aws_entityresolution/__init__.py +1702 -0
- aws_cdk/aws_events/__init__.py +13 -18
- aws_cdk/aws_fms/__init__.py +3 -3
- aws_cdk/aws_gamelift/__init__.py +10 -15
- aws_cdk/aws_grafana/__init__.py +9 -5
- aws_cdk/aws_guardduty/__init__.py +272 -205
- aws_cdk/aws_iam/__init__.py +20 -18
- aws_cdk/aws_iotwireless/__init__.py +38 -54
- aws_cdk/aws_lakeformation/__init__.py +18 -6
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_lightsail/__init__.py +225 -0
- aws_cdk/aws_lookoutequipment/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +5 -3
- aws_cdk/aws_mediapackagev2/__init__.py +3227 -0
- aws_cdk/aws_pcaconnectorad/__init__.py +6785 -0
- aws_cdk/aws_quicksight/__init__.py +189 -116
- aws_cdk/aws_rds/__init__.py +316 -9
- aws_cdk/aws_resiliencehub/__init__.py +38 -21
- aws_cdk/aws_route53resolver/__init__.py +429 -0
- aws_cdk/aws_sagemaker/__init__.py +34 -34
- aws_cdk/aws_stepfunctions/__init__.py +111 -14
- aws_cdk/aws_transfer/__init__.py +2 -2
- aws_cdk/aws_vpclattice/__init__.py +128 -120
- aws_cdk/aws_workspacesweb/__init__.py +3790 -0
- aws_cdk/region_info/__init__.py +49 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/RECORD +53 -49
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/top_level.txt +0 -0
|
@@ -126594,8 +126594,9 @@ class CfnDataSet(
|
|
|
126594
126594
|
*,
|
|
126595
126595
|
refresh_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.RefreshConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
126596
126596
|
) -> None:
|
|
126597
|
-
'''
|
|
126598
|
-
|
|
126597
|
+
'''The refresh properties of a dataset.
|
|
126598
|
+
|
|
126599
|
+
:param refresh_configuration: The refresh configuration for a dataset.
|
|
126599
126600
|
|
|
126600
126601
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetrefreshproperties.html
|
|
126601
126602
|
:exampleMetadata: fixture=_generated
|
|
@@ -126629,7 +126630,8 @@ class CfnDataSet(
|
|
|
126629
126630
|
def refresh_configuration(
|
|
126630
126631
|
self,
|
|
126631
126632
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.RefreshConfigurationProperty"]]:
|
|
126632
|
-
'''
|
|
126633
|
+
'''The refresh configuration for a dataset.
|
|
126634
|
+
|
|
126633
126635
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetrefreshproperties.html#cfn-quicksight-dataset-datasetrefreshproperties-refreshconfiguration
|
|
126634
126636
|
'''
|
|
126635
126637
|
result = self._values.get("refresh_configuration")
|
|
@@ -126742,11 +126744,12 @@ class CfnDataSet(
|
|
|
126742
126744
|
integer_dataset_parameter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.IntegerDatasetParameterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
126743
126745
|
string_dataset_parameter: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.StringDatasetParameterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
126744
126746
|
) -> None:
|
|
126745
|
-
'''
|
|
126746
|
-
|
|
126747
|
-
:param
|
|
126748
|
-
:param
|
|
126749
|
-
:param
|
|
126747
|
+
'''The parameter declarations of the dataset.
|
|
126748
|
+
|
|
126749
|
+
:param date_time_dataset_parameter: A date time parameter that is created in the dataset.
|
|
126750
|
+
:param decimal_dataset_parameter: A decimal parameter that is created in the dataset.
|
|
126751
|
+
:param integer_dataset_parameter: An integer parameter that is created in the dataset.
|
|
126752
|
+
:param string_dataset_parameter: A string parameter that is created in the dataset.
|
|
126750
126753
|
|
|
126751
126754
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetparameter.html
|
|
126752
126755
|
:exampleMetadata: fixture=_generated
|
|
@@ -126821,7 +126824,8 @@ class CfnDataSet(
|
|
|
126821
126824
|
def date_time_dataset_parameter(
|
|
126822
126825
|
self,
|
|
126823
126826
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.DateTimeDatasetParameterProperty"]]:
|
|
126824
|
-
'''
|
|
126827
|
+
'''A date time parameter that is created in the dataset.
|
|
126828
|
+
|
|
126825
126829
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetparameter.html#cfn-quicksight-dataset-datasetparameter-datetimedatasetparameter
|
|
126826
126830
|
'''
|
|
126827
126831
|
result = self._values.get("date_time_dataset_parameter")
|
|
@@ -126831,7 +126835,8 @@ class CfnDataSet(
|
|
|
126831
126835
|
def decimal_dataset_parameter(
|
|
126832
126836
|
self,
|
|
126833
126837
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.DecimalDatasetParameterProperty"]]:
|
|
126834
|
-
'''
|
|
126838
|
+
'''A decimal parameter that is created in the dataset.
|
|
126839
|
+
|
|
126835
126840
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetparameter.html#cfn-quicksight-dataset-datasetparameter-decimaldatasetparameter
|
|
126836
126841
|
'''
|
|
126837
126842
|
result = self._values.get("decimal_dataset_parameter")
|
|
@@ -126841,7 +126846,8 @@ class CfnDataSet(
|
|
|
126841
126846
|
def integer_dataset_parameter(
|
|
126842
126847
|
self,
|
|
126843
126848
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.IntegerDatasetParameterProperty"]]:
|
|
126844
|
-
'''
|
|
126849
|
+
'''An integer parameter that is created in the dataset.
|
|
126850
|
+
|
|
126845
126851
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetparameter.html#cfn-quicksight-dataset-datasetparameter-integerdatasetparameter
|
|
126846
126852
|
'''
|
|
126847
126853
|
result = self._values.get("integer_dataset_parameter")
|
|
@@ -126851,7 +126857,8 @@ class CfnDataSet(
|
|
|
126851
126857
|
def string_dataset_parameter(
|
|
126852
126858
|
self,
|
|
126853
126859
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.StringDatasetParameterProperty"]]:
|
|
126854
|
-
'''
|
|
126860
|
+
'''A string parameter that is created in the dataset.
|
|
126861
|
+
|
|
126855
126862
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetparameter.html#cfn-quicksight-dataset-datasetparameter-stringdatasetparameter
|
|
126856
126863
|
'''
|
|
126857
126864
|
result = self._values.get("string_dataset_parameter")
|
|
@@ -126882,7 +126889,7 @@ class CfnDataSet(
|
|
|
126882
126889
|
'''
|
|
126883
126890
|
Currently only static values are supported.
|
|
126884
126891
|
|
|
126885
|
-
:param static_values:
|
|
126892
|
+
: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’`` .
|
|
126886
126893
|
|
|
126887
126894
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameterdefaultvalues.html
|
|
126888
126895
|
:exampleMetadata: fixture=_generated
|
|
@@ -126906,7 +126913,10 @@ class CfnDataSet(
|
|
|
126906
126913
|
|
|
126907
126914
|
@builtins.property
|
|
126908
126915
|
def static_values(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
126909
|
-
'''
|
|
126916
|
+
'''A list of static default values for a given date time parameter.
|
|
126917
|
+
|
|
126918
|
+
The valid format for this property is ``yyyy-MM-dd’T’HH:mm:ss’Z’`` .
|
|
126919
|
+
|
|
126910
126920
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameterdefaultvalues.html#cfn-quicksight-dataset-datetimedatasetparameterdefaultvalues-staticvalues
|
|
126911
126921
|
'''
|
|
126912
126922
|
result = self._values.get("static_values")
|
|
@@ -126944,12 +126954,13 @@ class CfnDataSet(
|
|
|
126944
126954
|
default_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.DateTimeDatasetParameterDefaultValuesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
126945
126955
|
time_granularity: typing.Optional[builtins.str] = None,
|
|
126946
126956
|
) -> None:
|
|
126947
|
-
'''
|
|
126948
|
-
|
|
126949
|
-
:param
|
|
126950
|
-
:param
|
|
126951
|
-
:param
|
|
126952
|
-
:param
|
|
126957
|
+
'''A date time parameter that is created in the dataset.
|
|
126958
|
+
|
|
126959
|
+
:param id: An identifier for the parameter that is created in the dataset.
|
|
126960
|
+
:param name: The name of the date time parameter that is created in the dataset.
|
|
126961
|
+
:param value_type: The value type of the dataset parameter. Valid values are ``single value`` or ``multi value`` .
|
|
126962
|
+
:param default_values: A list of default values for a given date time parameter. This structure only accepts static values.
|
|
126963
|
+
:param time_granularity: The time granularity of the date time parameter.
|
|
126953
126964
|
|
|
126954
126965
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameter.html
|
|
126955
126966
|
:exampleMetadata: fixture=_generated
|
|
@@ -126991,7 +127002,8 @@ class CfnDataSet(
|
|
|
126991
127002
|
|
|
126992
127003
|
@builtins.property
|
|
126993
127004
|
def id(self) -> builtins.str:
|
|
126994
|
-
'''
|
|
127005
|
+
'''An identifier for the parameter that is created in the dataset.
|
|
127006
|
+
|
|
126995
127007
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameter.html#cfn-quicksight-dataset-datetimedatasetparameter-id
|
|
126996
127008
|
'''
|
|
126997
127009
|
result = self._values.get("id")
|
|
@@ -127000,7 +127012,8 @@ class CfnDataSet(
|
|
|
127000
127012
|
|
|
127001
127013
|
@builtins.property
|
|
127002
127014
|
def name(self) -> builtins.str:
|
|
127003
|
-
'''
|
|
127015
|
+
'''The name of the date time parameter that is created in the dataset.
|
|
127016
|
+
|
|
127004
127017
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameter.html#cfn-quicksight-dataset-datetimedatasetparameter-name
|
|
127005
127018
|
'''
|
|
127006
127019
|
result = self._values.get("name")
|
|
@@ -127009,7 +127022,10 @@ class CfnDataSet(
|
|
|
127009
127022
|
|
|
127010
127023
|
@builtins.property
|
|
127011
127024
|
def value_type(self) -> builtins.str:
|
|
127012
|
-
'''
|
|
127025
|
+
'''The value type of the dataset parameter.
|
|
127026
|
+
|
|
127027
|
+
Valid values are ``single value`` or ``multi value`` .
|
|
127028
|
+
|
|
127013
127029
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameter.html#cfn-quicksight-dataset-datetimedatasetparameter-valuetype
|
|
127014
127030
|
'''
|
|
127015
127031
|
result = self._values.get("value_type")
|
|
@@ -127020,8 +127036,9 @@ class CfnDataSet(
|
|
|
127020
127036
|
def default_values(
|
|
127021
127037
|
self,
|
|
127022
127038
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.DateTimeDatasetParameterDefaultValuesProperty"]]:
|
|
127023
|
-
'''
|
|
127024
|
-
|
|
127039
|
+
'''A list of default values for a given date time parameter.
|
|
127040
|
+
|
|
127041
|
+
This structure only accepts static values.
|
|
127025
127042
|
|
|
127026
127043
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameter.html#cfn-quicksight-dataset-datetimedatasetparameter-defaultvalues
|
|
127027
127044
|
'''
|
|
@@ -127030,7 +127047,8 @@ class CfnDataSet(
|
|
|
127030
127047
|
|
|
127031
127048
|
@builtins.property
|
|
127032
127049
|
def time_granularity(self) -> typing.Optional[builtins.str]:
|
|
127033
|
-
'''
|
|
127050
|
+
'''The time granularity of the date time parameter.
|
|
127051
|
+
|
|
127034
127052
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datetimedatasetparameter.html#cfn-quicksight-dataset-datetimedatasetparameter-timegranularity
|
|
127035
127053
|
'''
|
|
127036
127054
|
result = self._values.get("time_granularity")
|
|
@@ -127058,10 +127076,11 @@ class CfnDataSet(
|
|
|
127058
127076
|
*,
|
|
127059
127077
|
static_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[jsii.Number]]] = None,
|
|
127060
127078
|
) -> None:
|
|
127061
|
-
'''
|
|
127062
|
-
Currently only static values are supported.
|
|
127079
|
+
'''A list of default values for a given decimal parameter.
|
|
127063
127080
|
|
|
127064
|
-
|
|
127081
|
+
This structure only accepts static values.
|
|
127082
|
+
|
|
127083
|
+
:param static_values: A list of static default values for a given decimal parameter.
|
|
127065
127084
|
|
|
127066
127085
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameterdefaultvalues.html
|
|
127067
127086
|
:exampleMetadata: fixture=_generated
|
|
@@ -127087,7 +127106,8 @@ class CfnDataSet(
|
|
|
127087
127106
|
def static_values(
|
|
127088
127107
|
self,
|
|
127089
127108
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[jsii.Number]]]:
|
|
127090
|
-
'''
|
|
127109
|
+
'''A list of static default values for a given decimal parameter.
|
|
127110
|
+
|
|
127091
127111
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameterdefaultvalues.html#cfn-quicksight-dataset-decimaldatasetparameterdefaultvalues-staticvalues
|
|
127092
127112
|
'''
|
|
127093
127113
|
result = self._values.get("static_values")
|
|
@@ -127123,11 +127143,12 @@ class CfnDataSet(
|
|
|
127123
127143
|
value_type: builtins.str,
|
|
127124
127144
|
default_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.DecimalDatasetParameterDefaultValuesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
127125
127145
|
) -> None:
|
|
127126
|
-
'''
|
|
127127
|
-
|
|
127128
|
-
:param
|
|
127129
|
-
:param
|
|
127130
|
-
:param
|
|
127146
|
+
'''A decimal parameter that is created in the dataset.
|
|
127147
|
+
|
|
127148
|
+
:param id: An identifier for the decimal parameter created in the dataset.
|
|
127149
|
+
:param name: The name of the decimal parameter that is created in the dataset.
|
|
127150
|
+
:param value_type: The value type of the dataset parameter. Valid values are ``single value`` or ``multi value`` .
|
|
127151
|
+
:param default_values: A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
127131
127152
|
|
|
127132
127153
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html
|
|
127133
127154
|
:exampleMetadata: fixture=_generated
|
|
@@ -127165,7 +127186,8 @@ class CfnDataSet(
|
|
|
127165
127186
|
|
|
127166
127187
|
@builtins.property
|
|
127167
127188
|
def id(self) -> builtins.str:
|
|
127168
|
-
'''
|
|
127189
|
+
'''An identifier for the decimal parameter created in the dataset.
|
|
127190
|
+
|
|
127169
127191
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-id
|
|
127170
127192
|
'''
|
|
127171
127193
|
result = self._values.get("id")
|
|
@@ -127174,7 +127196,8 @@ class CfnDataSet(
|
|
|
127174
127196
|
|
|
127175
127197
|
@builtins.property
|
|
127176
127198
|
def name(self) -> builtins.str:
|
|
127177
|
-
'''
|
|
127199
|
+
'''The name of the decimal parameter that is created in the dataset.
|
|
127200
|
+
|
|
127178
127201
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-name
|
|
127179
127202
|
'''
|
|
127180
127203
|
result = self._values.get("name")
|
|
@@ -127183,7 +127206,10 @@ class CfnDataSet(
|
|
|
127183
127206
|
|
|
127184
127207
|
@builtins.property
|
|
127185
127208
|
def value_type(self) -> builtins.str:
|
|
127186
|
-
'''
|
|
127209
|
+
'''The value type of the dataset parameter.
|
|
127210
|
+
|
|
127211
|
+
Valid values are ``single value`` or ``multi value`` .
|
|
127212
|
+
|
|
127187
127213
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-valuetype
|
|
127188
127214
|
'''
|
|
127189
127215
|
result = self._values.get("value_type")
|
|
@@ -127194,8 +127220,9 @@ class CfnDataSet(
|
|
|
127194
127220
|
def default_values(
|
|
127195
127221
|
self,
|
|
127196
127222
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.DecimalDatasetParameterDefaultValuesProperty"]]:
|
|
127197
|
-
'''
|
|
127198
|
-
|
|
127223
|
+
'''A list of default values for a given decimal parameter.
|
|
127224
|
+
|
|
127225
|
+
This structure only accepts static values.
|
|
127199
127226
|
|
|
127200
127227
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-defaultvalues
|
|
127201
127228
|
'''
|
|
@@ -127442,8 +127469,9 @@ class CfnDataSet(
|
|
|
127442
127469
|
*,
|
|
127443
127470
|
lookback_window: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.LookbackWindowProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
127444
127471
|
) -> None:
|
|
127445
|
-
'''
|
|
127446
|
-
|
|
127472
|
+
'''The incremental refresh configuration for a dataset.
|
|
127473
|
+
|
|
127474
|
+
:param lookback_window: The lookback window setup for an incremental refresh configuration.
|
|
127447
127475
|
|
|
127448
127476
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-incrementalrefresh.html
|
|
127449
127477
|
:exampleMetadata: fixture=_generated
|
|
@@ -127473,7 +127501,8 @@ class CfnDataSet(
|
|
|
127473
127501
|
def lookback_window(
|
|
127474
127502
|
self,
|
|
127475
127503
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.LookbackWindowProperty"]]:
|
|
127476
|
-
'''
|
|
127504
|
+
'''The lookback window setup for an incremental refresh configuration.
|
|
127505
|
+
|
|
127477
127506
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-incrementalrefresh.html#cfn-quicksight-dataset-incrementalrefresh-lookbackwindow
|
|
127478
127507
|
'''
|
|
127479
127508
|
result = self._values.get("lookback_window")
|
|
@@ -127652,10 +127681,11 @@ class CfnDataSet(
|
|
|
127652
127681
|
*,
|
|
127653
127682
|
static_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[jsii.Number]]] = None,
|
|
127654
127683
|
) -> None:
|
|
127655
|
-
'''
|
|
127656
|
-
|
|
127684
|
+
'''A list of default values for a given integer parameter.
|
|
127685
|
+
|
|
127686
|
+
This structure only accepts static values.
|
|
127657
127687
|
|
|
127658
|
-
:param static_values:
|
|
127688
|
+
:param static_values: A list of static default values for a given integer parameter.
|
|
127659
127689
|
|
|
127660
127690
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameterdefaultvalues.html
|
|
127661
127691
|
:exampleMetadata: fixture=_generated
|
|
@@ -127681,7 +127711,8 @@ class CfnDataSet(
|
|
|
127681
127711
|
def static_values(
|
|
127682
127712
|
self,
|
|
127683
127713
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[jsii.Number]]]:
|
|
127684
|
-
'''
|
|
127714
|
+
'''A list of static default values for a given integer parameter.
|
|
127715
|
+
|
|
127685
127716
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameterdefaultvalues.html#cfn-quicksight-dataset-integerdatasetparameterdefaultvalues-staticvalues
|
|
127686
127717
|
'''
|
|
127687
127718
|
result = self._values.get("static_values")
|
|
@@ -127717,11 +127748,12 @@ class CfnDataSet(
|
|
|
127717
127748
|
value_type: builtins.str,
|
|
127718
127749
|
default_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.IntegerDatasetParameterDefaultValuesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
127719
127750
|
) -> None:
|
|
127720
|
-
'''
|
|
127721
|
-
|
|
127722
|
-
:param
|
|
127723
|
-
:param
|
|
127724
|
-
:param
|
|
127751
|
+
'''An integer parameter that is created in the dataset.
|
|
127752
|
+
|
|
127753
|
+
:param id: An identifier for the integer parameter created in the dataset.
|
|
127754
|
+
:param name: The name of the integer parameter that is created in the dataset.
|
|
127755
|
+
:param value_type: The value type of the dataset parameter. Valid values are ``single value`` or ``multi value`` .
|
|
127756
|
+
:param default_values: A list of default values for a given integer parameter. This structure only accepts static values.
|
|
127725
127757
|
|
|
127726
127758
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html
|
|
127727
127759
|
:exampleMetadata: fixture=_generated
|
|
@@ -127759,7 +127791,8 @@ class CfnDataSet(
|
|
|
127759
127791
|
|
|
127760
127792
|
@builtins.property
|
|
127761
127793
|
def id(self) -> builtins.str:
|
|
127762
|
-
'''
|
|
127794
|
+
'''An identifier for the integer parameter created in the dataset.
|
|
127795
|
+
|
|
127763
127796
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-id
|
|
127764
127797
|
'''
|
|
127765
127798
|
result = self._values.get("id")
|
|
@@ -127768,7 +127801,8 @@ class CfnDataSet(
|
|
|
127768
127801
|
|
|
127769
127802
|
@builtins.property
|
|
127770
127803
|
def name(self) -> builtins.str:
|
|
127771
|
-
'''
|
|
127804
|
+
'''The name of the integer parameter that is created in the dataset.
|
|
127805
|
+
|
|
127772
127806
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-name
|
|
127773
127807
|
'''
|
|
127774
127808
|
result = self._values.get("name")
|
|
@@ -127777,7 +127811,10 @@ class CfnDataSet(
|
|
|
127777
127811
|
|
|
127778
127812
|
@builtins.property
|
|
127779
127813
|
def value_type(self) -> builtins.str:
|
|
127780
|
-
'''
|
|
127814
|
+
'''The value type of the dataset parameter.
|
|
127815
|
+
|
|
127816
|
+
Valid values are ``single value`` or ``multi value`` .
|
|
127817
|
+
|
|
127781
127818
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-valuetype
|
|
127782
127819
|
'''
|
|
127783
127820
|
result = self._values.get("value_type")
|
|
@@ -127788,8 +127825,9 @@ class CfnDataSet(
|
|
|
127788
127825
|
def default_values(
|
|
127789
127826
|
self,
|
|
127790
127827
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.IntegerDatasetParameterDefaultValuesProperty"]]:
|
|
127791
|
-
'''
|
|
127792
|
-
|
|
127828
|
+
'''A list of default values for a given integer parameter.
|
|
127829
|
+
|
|
127830
|
+
This structure only accepts static values.
|
|
127793
127831
|
|
|
127794
127832
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-defaultvalues
|
|
127795
127833
|
'''
|
|
@@ -128300,10 +128338,11 @@ class CfnDataSet(
|
|
|
128300
128338
|
size: typing.Optional[jsii.Number] = None,
|
|
128301
128339
|
size_unit: typing.Optional[builtins.str] = None,
|
|
128302
128340
|
) -> None:
|
|
128303
|
-
'''
|
|
128304
|
-
|
|
128305
|
-
:param
|
|
128306
|
-
:param
|
|
128341
|
+
'''The lookback window setup of an incremental refresh configuration.
|
|
128342
|
+
|
|
128343
|
+
:param column_name: The name of the lookback window column.
|
|
128344
|
+
:param size: The lookback window column size.
|
|
128345
|
+
:param size_unit: The size unit that is used for the lookback window column. Valid values for this structure are ``HOUR`` , ``DAY`` , and ``WEEK`` .
|
|
128307
128346
|
|
|
128308
128347
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html
|
|
128309
128348
|
:exampleMetadata: fixture=_generated
|
|
@@ -128335,7 +128374,8 @@ class CfnDataSet(
|
|
|
128335
128374
|
|
|
128336
128375
|
@builtins.property
|
|
128337
128376
|
def column_name(self) -> typing.Optional[builtins.str]:
|
|
128338
|
-
'''
|
|
128377
|
+
'''The name of the lookback window column.
|
|
128378
|
+
|
|
128339
128379
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html#cfn-quicksight-dataset-lookbackwindow-columnname
|
|
128340
128380
|
'''
|
|
128341
128381
|
result = self._values.get("column_name")
|
|
@@ -128343,7 +128383,8 @@ class CfnDataSet(
|
|
|
128343
128383
|
|
|
128344
128384
|
@builtins.property
|
|
128345
128385
|
def size(self) -> typing.Optional[jsii.Number]:
|
|
128346
|
-
'''
|
|
128386
|
+
'''The lookback window column size.
|
|
128387
|
+
|
|
128347
128388
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html#cfn-quicksight-dataset-lookbackwindow-size
|
|
128348
128389
|
'''
|
|
128349
128390
|
result = self._values.get("size")
|
|
@@ -128351,7 +128392,10 @@ class CfnDataSet(
|
|
|
128351
128392
|
|
|
128352
128393
|
@builtins.property
|
|
128353
128394
|
def size_unit(self) -> typing.Optional[builtins.str]:
|
|
128354
|
-
'''
|
|
128395
|
+
'''The size unit that is used for the lookback window column.
|
|
128396
|
+
|
|
128397
|
+
Valid values for this structure are ``HOUR`` , ``DAY`` , and ``WEEK`` .
|
|
128398
|
+
|
|
128355
128399
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-lookbackwindow.html#cfn-quicksight-dataset-lookbackwindow-sizeunit
|
|
128356
128400
|
'''
|
|
128357
128401
|
result = self._values.get("size_unit")
|
|
@@ -128387,11 +128431,12 @@ class CfnDataSet(
|
|
|
128387
128431
|
integer_static_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[jsii.Number]]] = None,
|
|
128388
128432
|
string_static_values: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
128389
128433
|
) -> None:
|
|
128390
|
-
'''
|
|
128391
|
-
|
|
128392
|
-
:param
|
|
128393
|
-
:param
|
|
128394
|
-
:param
|
|
128434
|
+
'''The new default values for the parameter.
|
|
128435
|
+
|
|
128436
|
+
:param date_time_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’`` .
|
|
128437
|
+
:param decimal_static_values: A list of static default values for a given decimal parameter.
|
|
128438
|
+
:param integer_static_values: A list of static default values for a given integer parameter.
|
|
128439
|
+
:param string_static_values: A list of static default values for a given string parameter.
|
|
128395
128440
|
|
|
128396
128441
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html
|
|
128397
128442
|
:exampleMetadata: fixture=_generated
|
|
@@ -128427,7 +128472,10 @@ class CfnDataSet(
|
|
|
128427
128472
|
|
|
128428
128473
|
@builtins.property
|
|
128429
128474
|
def date_time_static_values(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
128430
|
-
'''
|
|
128475
|
+
'''A list of static default values for a given date time parameter.
|
|
128476
|
+
|
|
128477
|
+
The valid format for this property is ``yyyy-MM-dd’T’HH:mm:ss’Z’`` .
|
|
128478
|
+
|
|
128431
128479
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-datetimestaticvalues
|
|
128432
128480
|
'''
|
|
128433
128481
|
result = self._values.get("date_time_static_values")
|
|
@@ -128437,7 +128485,8 @@ class CfnDataSet(
|
|
|
128437
128485
|
def decimal_static_values(
|
|
128438
128486
|
self,
|
|
128439
128487
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[jsii.Number]]]:
|
|
128440
|
-
'''
|
|
128488
|
+
'''A list of static default values for a given decimal parameter.
|
|
128489
|
+
|
|
128441
128490
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-decimalstaticvalues
|
|
128442
128491
|
'''
|
|
128443
128492
|
result = self._values.get("decimal_static_values")
|
|
@@ -128447,7 +128496,8 @@ class CfnDataSet(
|
|
|
128447
128496
|
def integer_static_values(
|
|
128448
128497
|
self,
|
|
128449
128498
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[jsii.Number]]]:
|
|
128450
|
-
'''
|
|
128499
|
+
'''A list of static default values for a given integer parameter.
|
|
128500
|
+
|
|
128451
128501
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-integerstaticvalues
|
|
128452
128502
|
'''
|
|
128453
128503
|
result = self._values.get("integer_static_values")
|
|
@@ -128455,7 +128505,8 @@ class CfnDataSet(
|
|
|
128455
128505
|
|
|
128456
128506
|
@builtins.property
|
|
128457
128507
|
def string_static_values(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
128458
|
-
'''
|
|
128508
|
+
'''A list of static default values for a given string parameter.
|
|
128509
|
+
|
|
128459
128510
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-stringstaticvalues
|
|
128460
128511
|
'''
|
|
128461
128512
|
result = self._values.get("string_static_values")
|
|
@@ -128574,10 +128625,11 @@ class CfnDataSet(
|
|
|
128574
128625
|
new_default_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.NewDefaultValuesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
128575
128626
|
new_parameter_name: typing.Optional[builtins.str] = None,
|
|
128576
128627
|
) -> None:
|
|
128577
|
-
'''
|
|
128628
|
+
'''A transform operation that overrides the dataset parameter values that are defined in another dataset.
|
|
128629
|
+
|
|
128578
128630
|
:param parameter_name:
|
|
128579
|
-
:param new_default_values:
|
|
128580
|
-
:param new_parameter_name:
|
|
128631
|
+
:param new_default_values: The new default values for the parameter.
|
|
128632
|
+
:param new_parameter_name: The new name for the parameter.
|
|
128581
128633
|
|
|
128582
128634
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-overridedatasetparameteroperation.html
|
|
128583
128635
|
:exampleMetadata: fixture=_generated
|
|
@@ -128627,7 +128679,8 @@ class CfnDataSet(
|
|
|
128627
128679
|
def new_default_values(
|
|
128628
128680
|
self,
|
|
128629
128681
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.NewDefaultValuesProperty"]]:
|
|
128630
|
-
'''
|
|
128682
|
+
'''The new default values for the parameter.
|
|
128683
|
+
|
|
128631
128684
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-overridedatasetparameteroperation.html#cfn-quicksight-dataset-overridedatasetparameteroperation-newdefaultvalues
|
|
128632
128685
|
'''
|
|
128633
128686
|
result = self._values.get("new_default_values")
|
|
@@ -128635,7 +128688,8 @@ class CfnDataSet(
|
|
|
128635
128688
|
|
|
128636
128689
|
@builtins.property
|
|
128637
128690
|
def new_parameter_name(self) -> typing.Optional[builtins.str]:
|
|
128638
|
-
'''
|
|
128691
|
+
'''The new name for the parameter.
|
|
128692
|
+
|
|
128639
128693
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-overridedatasetparameteroperation.html#cfn-quicksight-dataset-overridedatasetparameteroperation-newparametername
|
|
128640
128694
|
'''
|
|
128641
128695
|
result = self._values.get("new_parameter_name")
|
|
@@ -128848,8 +128902,9 @@ class CfnDataSet(
|
|
|
128848
128902
|
*,
|
|
128849
128903
|
incremental_refresh: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.IncrementalRefreshProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
128850
128904
|
) -> None:
|
|
128851
|
-
'''
|
|
128852
|
-
|
|
128905
|
+
'''The refresh configuration of a dataset.
|
|
128906
|
+
|
|
128907
|
+
:param incremental_refresh: The incremental refresh for the dataset.
|
|
128853
128908
|
|
|
128854
128909
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshconfiguration.html
|
|
128855
128910
|
:exampleMetadata: fixture=_generated
|
|
@@ -128881,7 +128936,8 @@ class CfnDataSet(
|
|
|
128881
128936
|
def incremental_refresh(
|
|
128882
128937
|
self,
|
|
128883
128938
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.IncrementalRefreshProperty"]]:
|
|
128884
|
-
'''
|
|
128939
|
+
'''The incremental refresh for the dataset.
|
|
128940
|
+
|
|
128885
128941
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshconfiguration.html#cfn-quicksight-dataset-refreshconfiguration-incrementalrefresh
|
|
128886
128942
|
'''
|
|
128887
128943
|
result = self._values.get("incremental_refresh")
|
|
@@ -129325,10 +129381,11 @@ class CfnDataSet(
|
|
|
129325
129381
|
status: typing.Optional[builtins.str] = None,
|
|
129326
129382
|
tag_rule_configurations: typing.Any = None,
|
|
129327
129383
|
) -> None:
|
|
129328
|
-
'''
|
|
129329
|
-
|
|
129330
|
-
:param
|
|
129331
|
-
:param
|
|
129384
|
+
'''The element you can use to define tags for row-level security.
|
|
129385
|
+
|
|
129386
|
+
:param tag_rules: A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.
|
|
129387
|
+
:param status: The status of row-level security tags. If enabled, the status is ``ENABLED`` . If disabled, the status is ``DISABLED`` .
|
|
129388
|
+
:param tag_rule_configurations: The configuration of tags on a dataset to set row-level security.
|
|
129332
129389
|
|
|
129333
129390
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html
|
|
129334
129391
|
:exampleMetadata: fixture=_generated
|
|
@@ -129373,7 +129430,8 @@ class CfnDataSet(
|
|
|
129373
129430
|
def tag_rules(
|
|
129374
129431
|
self,
|
|
129375
129432
|
) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDataSet.RowLevelPermissionTagRuleProperty"]]]:
|
|
129376
|
-
'''
|
|
129433
|
+
'''A set of rules associated with row-level security, such as the tag names and columns that they are assigned to.
|
|
129434
|
+
|
|
129377
129435
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html#cfn-quicksight-dataset-rowlevelpermissiontagconfiguration-tagrules
|
|
129378
129436
|
'''
|
|
129379
129437
|
result = self._values.get("tag_rules")
|
|
@@ -129382,7 +129440,10 @@ class CfnDataSet(
|
|
|
129382
129440
|
|
|
129383
129441
|
@builtins.property
|
|
129384
129442
|
def status(self) -> typing.Optional[builtins.str]:
|
|
129385
|
-
'''
|
|
129443
|
+
'''The status of row-level security tags.
|
|
129444
|
+
|
|
129445
|
+
If enabled, the status is ``ENABLED`` . If disabled, the status is ``DISABLED`` .
|
|
129446
|
+
|
|
129386
129447
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html#cfn-quicksight-dataset-rowlevelpermissiontagconfiguration-status
|
|
129387
129448
|
'''
|
|
129388
129449
|
result = self._values.get("status")
|
|
@@ -129390,8 +129451,7 @@ class CfnDataSet(
|
|
|
129390
129451
|
|
|
129391
129452
|
@builtins.property
|
|
129392
129453
|
def tag_rule_configurations(self) -> typing.Any:
|
|
129393
|
-
'''
|
|
129394
|
-
All tag configurations have the OR condition. Tags within each tile will be joined (AND). At least one rule in this structure must have all tag values assigned to it to apply Row-level security (RLS) to the dataset.
|
|
129454
|
+
'''The configuration of tags on a dataset to set row-level security.
|
|
129395
129455
|
|
|
129396
129456
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagconfiguration.html#cfn-quicksight-dataset-rowlevelpermissiontagconfiguration-tagruleconfigurations
|
|
129397
129457
|
'''
|
|
@@ -129428,11 +129488,12 @@ class CfnDataSet(
|
|
|
129428
129488
|
match_all_value: typing.Optional[builtins.str] = None,
|
|
129429
129489
|
tag_multi_value_delimiter: typing.Optional[builtins.str] = None,
|
|
129430
129490
|
) -> None:
|
|
129431
|
-
'''
|
|
129432
|
-
|
|
129433
|
-
:param
|
|
129434
|
-
:param
|
|
129435
|
-
:param
|
|
129491
|
+
'''A set of rules associated with a tag.
|
|
129492
|
+
|
|
129493
|
+
:param column_name: The column name that a tag key is assigned to.
|
|
129494
|
+
:param tag_key: The unique key for a tag.
|
|
129495
|
+
:param match_all_value: A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.
|
|
129496
|
+
:param tag_multi_value_delimiter: A string that you want to use to delimit the values when you pass the values at run time. For example, you can delimit the values with a comma.
|
|
129436
129497
|
|
|
129437
129498
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html
|
|
129438
129499
|
:exampleMetadata: fixture=_generated
|
|
@@ -129469,7 +129530,8 @@ class CfnDataSet(
|
|
|
129469
129530
|
|
|
129470
129531
|
@builtins.property
|
|
129471
129532
|
def column_name(self) -> builtins.str:
|
|
129472
|
-
'''
|
|
129533
|
+
'''The column name that a tag key is assigned to.
|
|
129534
|
+
|
|
129473
129535
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html#cfn-quicksight-dataset-rowlevelpermissiontagrule-columnname
|
|
129474
129536
|
'''
|
|
129475
129537
|
result = self._values.get("column_name")
|
|
@@ -129478,7 +129540,8 @@ class CfnDataSet(
|
|
|
129478
129540
|
|
|
129479
129541
|
@builtins.property
|
|
129480
129542
|
def tag_key(self) -> builtins.str:
|
|
129481
|
-
'''
|
|
129543
|
+
'''The unique key for a tag.
|
|
129544
|
+
|
|
129482
129545
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html#cfn-quicksight-dataset-rowlevelpermissiontagrule-tagkey
|
|
129483
129546
|
'''
|
|
129484
129547
|
result = self._values.get("tag_key")
|
|
@@ -129487,7 +129550,8 @@ class CfnDataSet(
|
|
|
129487
129550
|
|
|
129488
129551
|
@builtins.property
|
|
129489
129552
|
def match_all_value(self) -> typing.Optional[builtins.str]:
|
|
129490
|
-
'''
|
|
129553
|
+
'''A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one.
|
|
129554
|
+
|
|
129491
129555
|
For example, you can use an asterisk as your match all value.
|
|
129492
129556
|
|
|
129493
129557
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html#cfn-quicksight-dataset-rowlevelpermissiontagrule-matchallvalue
|
|
@@ -129497,7 +129561,8 @@ class CfnDataSet(
|
|
|
129497
129561
|
|
|
129498
129562
|
@builtins.property
|
|
129499
129563
|
def tag_multi_value_delimiter(self) -> typing.Optional[builtins.str]:
|
|
129500
|
-
'''
|
|
129564
|
+
'''A string that you want to use to delimit the values when you pass the values at run time.
|
|
129565
|
+
|
|
129501
129566
|
For example, you can delimit the values with a comma.
|
|
129502
129567
|
|
|
129503
129568
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html#cfn-quicksight-dataset-rowlevelpermissiontagrule-tagmultivaluedelimiter
|
|
@@ -129636,10 +129701,11 @@ class CfnDataSet(
|
|
|
129636
129701
|
*,
|
|
129637
129702
|
static_values: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
129638
129703
|
) -> None:
|
|
129639
|
-
'''
|
|
129640
|
-
Currently only static values are supported.
|
|
129704
|
+
'''A list of default values for a given string dataset parameter type.
|
|
129641
129705
|
|
|
129642
|
-
|
|
129706
|
+
This structure only accepts static values.
|
|
129707
|
+
|
|
129708
|
+
:param static_values: A list of static default values for a given string parameter.
|
|
129643
129709
|
|
|
129644
129710
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameterdefaultvalues.html
|
|
129645
129711
|
:exampleMetadata: fixture=_generated
|
|
@@ -129663,7 +129729,8 @@ class CfnDataSet(
|
|
|
129663
129729
|
|
|
129664
129730
|
@builtins.property
|
|
129665
129731
|
def static_values(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
129666
|
-
'''
|
|
129732
|
+
'''A list of static default values for a given string parameter.
|
|
129733
|
+
|
|
129667
129734
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameterdefaultvalues.html#cfn-quicksight-dataset-stringdatasetparameterdefaultvalues-staticvalues
|
|
129668
129735
|
'''
|
|
129669
129736
|
result = self._values.get("static_values")
|
|
@@ -129699,11 +129766,12 @@ class CfnDataSet(
|
|
|
129699
129766
|
value_type: builtins.str,
|
|
129700
129767
|
default_values: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.StringDatasetParameterDefaultValuesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
129701
129768
|
) -> None:
|
|
129702
|
-
'''
|
|
129703
|
-
|
|
129704
|
-
:param
|
|
129705
|
-
:param
|
|
129706
|
-
:param
|
|
129769
|
+
'''A string parameter that is created in the dataset.
|
|
129770
|
+
|
|
129771
|
+
:param id: An identifier for the string parameter that is created in the dataset.
|
|
129772
|
+
:param name: The name of the string parameter that is created in the dataset.
|
|
129773
|
+
:param value_type: The value type of the dataset parameter. Valid values are ``single value`` or ``multi value`` .
|
|
129774
|
+
:param default_values: A list of default values for a given string dataset parameter type. This structure only accepts static values.
|
|
129707
129775
|
|
|
129708
129776
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameter.html
|
|
129709
129777
|
:exampleMetadata: fixture=_generated
|
|
@@ -129741,7 +129809,8 @@ class CfnDataSet(
|
|
|
129741
129809
|
|
|
129742
129810
|
@builtins.property
|
|
129743
129811
|
def id(self) -> builtins.str:
|
|
129744
|
-
'''
|
|
129812
|
+
'''An identifier for the string parameter that is created in the dataset.
|
|
129813
|
+
|
|
129745
129814
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-id
|
|
129746
129815
|
'''
|
|
129747
129816
|
result = self._values.get("id")
|
|
@@ -129750,7 +129819,8 @@ class CfnDataSet(
|
|
|
129750
129819
|
|
|
129751
129820
|
@builtins.property
|
|
129752
129821
|
def name(self) -> builtins.str:
|
|
129753
|
-
'''
|
|
129822
|
+
'''The name of the string parameter that is created in the dataset.
|
|
129823
|
+
|
|
129754
129824
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-name
|
|
129755
129825
|
'''
|
|
129756
129826
|
result = self._values.get("name")
|
|
@@ -129759,7 +129829,10 @@ class CfnDataSet(
|
|
|
129759
129829
|
|
|
129760
129830
|
@builtins.property
|
|
129761
129831
|
def value_type(self) -> builtins.str:
|
|
129762
|
-
'''
|
|
129832
|
+
'''The value type of the dataset parameter.
|
|
129833
|
+
|
|
129834
|
+
Valid values are ``single value`` or ``multi value`` .
|
|
129835
|
+
|
|
129763
129836
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-valuetype
|
|
129764
129837
|
'''
|
|
129765
129838
|
result = self._values.get("value_type")
|
|
@@ -129770,8 +129843,9 @@ class CfnDataSet(
|
|
|
129770
129843
|
def default_values(
|
|
129771
129844
|
self,
|
|
129772
129845
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.StringDatasetParameterDefaultValuesProperty"]]:
|
|
129773
|
-
'''
|
|
129774
|
-
|
|
129846
|
+
'''A list of default values for a given string dataset parameter type.
|
|
129847
|
+
|
|
129848
|
+
This structure only accepts static values.
|
|
129775
129849
|
|
|
129776
129850
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-defaultvalues
|
|
129777
129851
|
'''
|
|
@@ -133518,7 +133592,7 @@ class CfnDataSource(
|
|
|
133518
133592
|
'''The parameters for S3.
|
|
133519
133593
|
|
|
133520
133594
|
:param manifest_file_location: Location of the Amazon S3 manifest file. This is NULL if the manifest file was uploaded into Amazon QuickSight.
|
|
133521
|
-
:param role_arn:
|
|
133595
|
+
:param role_arn: For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use RoleArn to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.
|
|
133522
133596
|
|
|
133523
133597
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-s3parameters.html
|
|
133524
133598
|
:exampleMetadata: fixture=_generated
|
|
@@ -133565,9 +133639,8 @@ class CfnDataSource(
|
|
|
133565
133639
|
|
|
133566
133640
|
@builtins.property
|
|
133567
133641
|
def role_arn(self) -> typing.Optional[builtins.str]:
|
|
133568
|
-
'''
|
|
133569
|
-
|
|
133570
|
-
For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use ``RoleArn`` to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.
|
|
133642
|
+
'''
|
|
133643
|
+
For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use RoleArn to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.
|
|
133571
133644
|
|
|
133572
133645
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-s3parameters.html#cfn-quicksight-datasource-s3parameters-rolearn
|
|
133573
133646
|
'''
|