aws-cdk-lib 2.211.0__py3-none-any.whl → 2.213.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +398 -43
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.211.0.jsii.tgz → aws-cdk-lib@2.213.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1798 -74
- aws_cdk/aws_appintegrations/__init__.py +395 -0
- aws_cdk/aws_arcregionswitch/__init__.py +118 -0
- aws_cdk/aws_batch/__init__.py +4 -4
- aws_cdk/aws_bedrock/__init__.py +18 -0
- aws_cdk/aws_billingconductor/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +19 -0
- aws_cdk/aws_codebuild/__init__.py +122 -0
- aws_cdk/aws_codepipeline/__init__.py +51 -50
- aws_cdk/aws_connect/__init__.py +40 -15
- aws_cdk/aws_deadline/__init__.py +16 -5
- aws_cdk/aws_dynamodb/__init__.py +477 -56
- aws_cdk/aws_ec2/__init__.py +266 -55
- aws_cdk/aws_ecs/__init__.py +7 -9
- aws_cdk/aws_eks/__init__.py +6 -4
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
- aws_cdk/aws_gameliftstreams/__init__.py +7 -6
- aws_cdk/aws_glue/__init__.py +18 -9
- aws_cdk/aws_guardduty/__init__.py +1233 -113
- aws_cdk/aws_iam/__init__.py +21 -6
- aws_cdk/aws_imagebuilder/__init__.py +34 -20
- aws_cdk/aws_inspectorv2/__init__.py +1516 -0
- aws_cdk/aws_ivs/__init__.py +1 -1
- aws_cdk/aws_lakeformation/__init__.py +1 -1
- aws_cdk/aws_lambda/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +128 -0
- aws_cdk/aws_pcs/__init__.py +16 -8
- aws_cdk/aws_quicksight/__init__.py +81 -83
- aws_cdk/aws_rds/__init__.py +31 -163
- aws_cdk/aws_s3express/__init__.py +7 -3
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_sagemaker/__init__.py +62 -20
- aws_cdk/aws_sqs/__init__.py +4 -3
- aws_cdk/aws_stepfunctions_tasks/__init__.py +16 -9
- aws_cdk/aws_synthetics/__init__.py +116 -0
- aws_cdk/cx_api/__init__.py +22 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/METADATA +329 -9
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.211.0.dist-info → aws_cdk_lib-2.213.0.dist-info}/top_level.txt +0 -0
|
@@ -142184,10 +142184,10 @@ class CfnDataSet(
|
|
|
142184
142184
|
# the properties below are optional
|
|
142185
142185
|
data_transforms=[quicksight.CfnDataSet.TransformOperationProperty(
|
|
142186
142186
|
cast_column_type_operation=quicksight.CfnDataSet.CastColumnTypeOperationProperty(
|
|
142187
|
-
column_name="columnName",
|
|
142188
142187
|
new_column_type="newColumnType",
|
|
142189
142188
|
|
|
142190
142189
|
# the properties below are optional
|
|
142190
|
+
column_name="columnName",
|
|
142191
142191
|
format="format",
|
|
142192
142192
|
sub_type="subType"
|
|
142193
142193
|
),
|
|
@@ -142218,8 +142218,6 @@ class CfnDataSet(
|
|
|
142218
142218
|
),
|
|
142219
142219
|
rename_column_operation=quicksight.CfnDataSet.RenameColumnOperationProperty(
|
|
142220
142220
|
column_name="columnName",
|
|
142221
|
-
|
|
142222
|
-
# the properties below are optional
|
|
142223
142221
|
new_column_name="newColumnName"
|
|
142224
142222
|
),
|
|
142225
142223
|
tag_column_operation=quicksight.CfnDataSet.TagColumnOperationProperty(
|
|
@@ -142329,10 +142327,10 @@ class CfnDataSet(
|
|
|
142329
142327
|
),
|
|
142330
142328
|
row_level_permission_tag_configuration=quicksight.CfnDataSet.RowLevelPermissionTagConfigurationProperty(
|
|
142331
142329
|
tag_rules=[quicksight.CfnDataSet.RowLevelPermissionTagRuleProperty(
|
|
142332
|
-
column_name="columnName",
|
|
142333
142330
|
tag_key="tagKey",
|
|
142334
142331
|
|
|
142335
142332
|
# the properties below are optional
|
|
142333
|
+
column_name="columnName",
|
|
142336
142334
|
match_all_value="matchAllValue",
|
|
142337
142335
|
tag_multi_value_delimiter="tagMultiValueDelimiter"
|
|
142338
142336
|
)],
|
|
@@ -142938,8 +142936,8 @@ class CfnDataSet(
|
|
|
142938
142936
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSet.CastColumnTypeOperationProperty",
|
|
142939
142937
|
jsii_struct_bases=[],
|
|
142940
142938
|
name_mapping={
|
|
142941
|
-
"column_name": "columnName",
|
|
142942
142939
|
"new_column_type": "newColumnType",
|
|
142940
|
+
"column_name": "columnName",
|
|
142943
142941
|
"format": "format",
|
|
142944
142942
|
"sub_type": "subType",
|
|
142945
142943
|
},
|
|
@@ -142948,15 +142946,15 @@ class CfnDataSet(
|
|
|
142948
142946
|
def __init__(
|
|
142949
142947
|
self,
|
|
142950
142948
|
*,
|
|
142951
|
-
column_name: builtins.str,
|
|
142952
142949
|
new_column_type: builtins.str,
|
|
142950
|
+
column_name: typing.Optional[builtins.str] = None,
|
|
142953
142951
|
format: typing.Optional[builtins.str] = None,
|
|
142954
142952
|
sub_type: typing.Optional[builtins.str] = None,
|
|
142955
142953
|
) -> None:
|
|
142956
142954
|
'''A transform operation that casts a column to a different type.
|
|
142957
142955
|
|
|
142958
|
-
:param column_name: Column name.
|
|
142959
142956
|
:param new_column_type: New column data type.
|
|
142957
|
+
:param column_name: Column name.
|
|
142960
142958
|
:param format: When casting a column from string to datetime type, you can supply a string in a format supported by Amazon QuickSight to denote the source data format.
|
|
142961
142959
|
:param sub_type: The sub data type of the new column. Sub types are only available for decimal columns that are part of a SPICE dataset.
|
|
142962
142960
|
|
|
@@ -142970,39 +142968,30 @@ class CfnDataSet(
|
|
|
142970
142968
|
from aws_cdk import aws_quicksight as quicksight
|
|
142971
142969
|
|
|
142972
142970
|
cast_column_type_operation_property = quicksight.CfnDataSet.CastColumnTypeOperationProperty(
|
|
142973
|
-
column_name="columnName",
|
|
142974
142971
|
new_column_type="newColumnType",
|
|
142975
142972
|
|
|
142976
142973
|
# the properties below are optional
|
|
142974
|
+
column_name="columnName",
|
|
142977
142975
|
format="format",
|
|
142978
142976
|
sub_type="subType"
|
|
142979
142977
|
)
|
|
142980
142978
|
'''
|
|
142981
142979
|
if __debug__:
|
|
142982
142980
|
type_hints = typing.get_type_hints(_typecheckingstub__e2fded724bbc6640c2fbe9fe33aee3a869a672cc8cfd40186128cdc1c929ffb6)
|
|
142983
|
-
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
142984
142981
|
check_type(argname="argument new_column_type", value=new_column_type, expected_type=type_hints["new_column_type"])
|
|
142982
|
+
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
142985
142983
|
check_type(argname="argument format", value=format, expected_type=type_hints["format"])
|
|
142986
142984
|
check_type(argname="argument sub_type", value=sub_type, expected_type=type_hints["sub_type"])
|
|
142987
142985
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
142988
|
-
"column_name": column_name,
|
|
142989
142986
|
"new_column_type": new_column_type,
|
|
142990
142987
|
}
|
|
142988
|
+
if column_name is not None:
|
|
142989
|
+
self._values["column_name"] = column_name
|
|
142991
142990
|
if format is not None:
|
|
142992
142991
|
self._values["format"] = format
|
|
142993
142992
|
if sub_type is not None:
|
|
142994
142993
|
self._values["sub_type"] = sub_type
|
|
142995
142994
|
|
|
142996
|
-
@builtins.property
|
|
142997
|
-
def column_name(self) -> builtins.str:
|
|
142998
|
-
'''Column name.
|
|
142999
|
-
|
|
143000
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-castcolumntypeoperation.html#cfn-quicksight-dataset-castcolumntypeoperation-columnname
|
|
143001
|
-
'''
|
|
143002
|
-
result = self._values.get("column_name")
|
|
143003
|
-
assert result is not None, "Required property 'column_name' is missing"
|
|
143004
|
-
return typing.cast(builtins.str, result)
|
|
143005
|
-
|
|
143006
142995
|
@builtins.property
|
|
143007
142996
|
def new_column_type(self) -> builtins.str:
|
|
143008
142997
|
'''New column data type.
|
|
@@ -143013,6 +143002,15 @@ class CfnDataSet(
|
|
|
143013
143002
|
assert result is not None, "Required property 'new_column_type' is missing"
|
|
143014
143003
|
return typing.cast(builtins.str, result)
|
|
143015
143004
|
|
|
143005
|
+
@builtins.property
|
|
143006
|
+
def column_name(self) -> typing.Optional[builtins.str]:
|
|
143007
|
+
'''Column name.
|
|
143008
|
+
|
|
143009
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-castcolumntypeoperation.html#cfn-quicksight-dataset-castcolumntypeoperation-columnname
|
|
143010
|
+
'''
|
|
143011
|
+
result = self._values.get("column_name")
|
|
143012
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
143013
|
+
|
|
143016
143014
|
@builtins.property
|
|
143017
143015
|
def format(self) -> typing.Optional[builtins.str]:
|
|
143018
143016
|
'''When casting a column from string to datetime type, you can supply a string in a format supported by Amazon QuickSight to denote the source data format.
|
|
@@ -144249,7 +144247,11 @@ class CfnDataSet(
|
|
|
144249
144247
|
name_mapping={"condition_expression": "conditionExpression"},
|
|
144250
144248
|
)
|
|
144251
144249
|
class FilterOperationProperty:
|
|
144252
|
-
def __init__(
|
|
144250
|
+
def __init__(
|
|
144251
|
+
self,
|
|
144252
|
+
*,
|
|
144253
|
+
condition_expression: typing.Optional[builtins.str] = None,
|
|
144254
|
+
) -> None:
|
|
144253
144255
|
'''A transform operation that filters rows based on a condition.
|
|
144254
144256
|
|
|
144255
144257
|
:param condition_expression: An expression that must evaluate to a Boolean value. Rows for which the expression evaluates to true are kept in the dataset.
|
|
@@ -144270,12 +144272,12 @@ class CfnDataSet(
|
|
|
144270
144272
|
if __debug__:
|
|
144271
144273
|
type_hints = typing.get_type_hints(_typecheckingstub__0c6b79c4b080379d4b3ed9c423474bdb63328a6739ddab0e95e9149b59558c0a)
|
|
144272
144274
|
check_type(argname="argument condition_expression", value=condition_expression, expected_type=type_hints["condition_expression"])
|
|
144273
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
144274
|
-
|
|
144275
|
-
|
|
144275
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
144276
|
+
if condition_expression is not None:
|
|
144277
|
+
self._values["condition_expression"] = condition_expression
|
|
144276
144278
|
|
|
144277
144279
|
@builtins.property
|
|
144278
|
-
def condition_expression(self) -> builtins.str:
|
|
144280
|
+
def condition_expression(self) -> typing.Optional[builtins.str]:
|
|
144279
144281
|
'''An expression that must evaluate to a Boolean value.
|
|
144280
144282
|
|
|
144281
144283
|
Rows for which the expression evaluates to true are kept in the dataset.
|
|
@@ -144283,8 +144285,7 @@ class CfnDataSet(
|
|
|
144283
144285
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-filteroperation.html#cfn-quicksight-dataset-filteroperation-conditionexpression
|
|
144284
144286
|
'''
|
|
144285
144287
|
result = self._values.get("condition_expression")
|
|
144286
|
-
|
|
144287
|
-
return typing.cast(builtins.str, result)
|
|
144288
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
144288
144289
|
|
|
144289
144290
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
144290
144291
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -145048,10 +145049,10 @@ class CfnDataSet(
|
|
|
145048
145049
|
# the properties below are optional
|
|
145049
145050
|
data_transforms=[quicksight.CfnDataSet.TransformOperationProperty(
|
|
145050
145051
|
cast_column_type_operation=quicksight.CfnDataSet.CastColumnTypeOperationProperty(
|
|
145051
|
-
column_name="columnName",
|
|
145052
145052
|
new_column_type="newColumnType",
|
|
145053
145053
|
|
|
145054
145054
|
# the properties below are optional
|
|
145055
|
+
column_name="columnName",
|
|
145055
145056
|
format="format",
|
|
145056
145057
|
sub_type="subType"
|
|
145057
145058
|
),
|
|
@@ -145082,8 +145083,6 @@ class CfnDataSet(
|
|
|
145082
145083
|
),
|
|
145083
145084
|
rename_column_operation=quicksight.CfnDataSet.RenameColumnOperationProperty(
|
|
145084
145085
|
column_name="columnName",
|
|
145085
|
-
|
|
145086
|
-
# the properties below are optional
|
|
145087
145086
|
new_column_name="newColumnName"
|
|
145088
145087
|
),
|
|
145089
145088
|
tag_column_operation=quicksight.CfnDataSet.TagColumnOperationProperty(
|
|
@@ -145898,7 +145897,11 @@ class CfnDataSet(
|
|
|
145898
145897
|
name_mapping={"projected_columns": "projectedColumns"},
|
|
145899
145898
|
)
|
|
145900
145899
|
class ProjectOperationProperty:
|
|
145901
|
-
def __init__(
|
|
145900
|
+
def __init__(
|
|
145901
|
+
self,
|
|
145902
|
+
*,
|
|
145903
|
+
projected_columns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
145904
|
+
) -> None:
|
|
145902
145905
|
'''A transform operation that projects columns.
|
|
145903
145906
|
|
|
145904
145907
|
Operations that come after a projection can only refer to projected columns.
|
|
@@ -145921,19 +145924,18 @@ class CfnDataSet(
|
|
|
145921
145924
|
if __debug__:
|
|
145922
145925
|
type_hints = typing.get_type_hints(_typecheckingstub__f8e4e442aa58a18179ff77f915ae9041c15500b9de7cc923ee465cc5be9a021b)
|
|
145923
145926
|
check_type(argname="argument projected_columns", value=projected_columns, expected_type=type_hints["projected_columns"])
|
|
145924
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
145925
|
-
|
|
145926
|
-
|
|
145927
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
145928
|
+
if projected_columns is not None:
|
|
145929
|
+
self._values["projected_columns"] = projected_columns
|
|
145927
145930
|
|
|
145928
145931
|
@builtins.property
|
|
145929
|
-
def projected_columns(self) -> typing.List[builtins.str]:
|
|
145932
|
+
def projected_columns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
145930
145933
|
'''Projected columns.
|
|
145931
145934
|
|
|
145932
145935
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-projectoperation.html#cfn-quicksight-dataset-projectoperation-projectedcolumns
|
|
145933
145936
|
'''
|
|
145934
145937
|
result = self._values.get("projected_columns")
|
|
145935
|
-
|
|
145936
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
145938
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
145937
145939
|
|
|
145938
145940
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
145939
145941
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -146267,7 +146269,7 @@ class CfnDataSet(
|
|
|
146267
146269
|
def __init__(
|
|
146268
146270
|
self,
|
|
146269
146271
|
*,
|
|
146270
|
-
column_name: builtins.str,
|
|
146272
|
+
column_name: typing.Optional[builtins.str] = None,
|
|
146271
146273
|
new_column_name: typing.Optional[builtins.str] = None,
|
|
146272
146274
|
) -> None:
|
|
146273
146275
|
'''A transform operation that renames a column.
|
|
@@ -146286,8 +146288,6 @@ class CfnDataSet(
|
|
|
146286
146288
|
|
|
146287
146289
|
rename_column_operation_property = quicksight.CfnDataSet.RenameColumnOperationProperty(
|
|
146288
146290
|
column_name="columnName",
|
|
146289
|
-
|
|
146290
|
-
# the properties below are optional
|
|
146291
146291
|
new_column_name="newColumnName"
|
|
146292
146292
|
)
|
|
146293
146293
|
'''
|
|
@@ -146295,21 +146295,20 @@ class CfnDataSet(
|
|
|
146295
146295
|
type_hints = typing.get_type_hints(_typecheckingstub__d5b477884d5da5b0f50ad9bab47f315489aa821b4b6099b0c110eaa21199d621)
|
|
146296
146296
|
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
146297
146297
|
check_type(argname="argument new_column_name", value=new_column_name, expected_type=type_hints["new_column_name"])
|
|
146298
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
146299
|
-
|
|
146300
|
-
|
|
146298
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
146299
|
+
if column_name is not None:
|
|
146300
|
+
self._values["column_name"] = column_name
|
|
146301
146301
|
if new_column_name is not None:
|
|
146302
146302
|
self._values["new_column_name"] = new_column_name
|
|
146303
146303
|
|
|
146304
146304
|
@builtins.property
|
|
146305
|
-
def column_name(self) -> builtins.str:
|
|
146305
|
+
def column_name(self) -> typing.Optional[builtins.str]:
|
|
146306
146306
|
'''The name of the column to be renamed.
|
|
146307
146307
|
|
|
146308
146308
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-renamecolumnoperation.html#cfn-quicksight-dataset-renamecolumnoperation-columnname
|
|
146309
146309
|
'''
|
|
146310
146310
|
result = self._values.get("column_name")
|
|
146311
|
-
|
|
146312
|
-
return typing.cast(builtins.str, result)
|
|
146311
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
146313
146312
|
|
|
146314
146313
|
@builtins.property
|
|
146315
146314
|
def new_column_name(self) -> typing.Optional[builtins.str]:
|
|
@@ -146576,10 +146575,10 @@ class CfnDataSet(
|
|
|
146576
146575
|
|
|
146577
146576
|
row_level_permission_tag_configuration_property = quicksight.CfnDataSet.RowLevelPermissionTagConfigurationProperty(
|
|
146578
146577
|
tag_rules=[quicksight.CfnDataSet.RowLevelPermissionTagRuleProperty(
|
|
146579
|
-
column_name="columnName",
|
|
146580
146578
|
tag_key="tagKey",
|
|
146581
146579
|
|
|
146582
146580
|
# the properties below are optional
|
|
146581
|
+
column_name="columnName",
|
|
146583
146582
|
match_all_value="matchAllValue",
|
|
146584
146583
|
tag_multi_value_delimiter="tagMultiValueDelimiter"
|
|
146585
146584
|
)],
|
|
@@ -146649,8 +146648,8 @@ class CfnDataSet(
|
|
|
146649
146648
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDataSet.RowLevelPermissionTagRuleProperty",
|
|
146650
146649
|
jsii_struct_bases=[],
|
|
146651
146650
|
name_mapping={
|
|
146652
|
-
"column_name": "columnName",
|
|
146653
146651
|
"tag_key": "tagKey",
|
|
146652
|
+
"column_name": "columnName",
|
|
146654
146653
|
"match_all_value": "matchAllValue",
|
|
146655
146654
|
"tag_multi_value_delimiter": "tagMultiValueDelimiter",
|
|
146656
146655
|
},
|
|
@@ -146659,15 +146658,15 @@ class CfnDataSet(
|
|
|
146659
146658
|
def __init__(
|
|
146660
146659
|
self,
|
|
146661
146660
|
*,
|
|
146662
|
-
column_name: builtins.str,
|
|
146663
146661
|
tag_key: builtins.str,
|
|
146662
|
+
column_name: typing.Optional[builtins.str] = None,
|
|
146664
146663
|
match_all_value: typing.Optional[builtins.str] = None,
|
|
146665
146664
|
tag_multi_value_delimiter: typing.Optional[builtins.str] = None,
|
|
146666
146665
|
) -> None:
|
|
146667
146666
|
'''A set of rules associated with a tag.
|
|
146668
146667
|
|
|
146669
|
-
:param column_name: The column name that a tag key is assigned to.
|
|
146670
146668
|
:param tag_key: The unique key for a tag.
|
|
146669
|
+
:param column_name: The column name that a tag key is assigned to.
|
|
146671
146670
|
: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.
|
|
146672
146671
|
: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.
|
|
146673
146672
|
|
|
@@ -146681,39 +146680,30 @@ class CfnDataSet(
|
|
|
146681
146680
|
from aws_cdk import aws_quicksight as quicksight
|
|
146682
146681
|
|
|
146683
146682
|
row_level_permission_tag_rule_property = quicksight.CfnDataSet.RowLevelPermissionTagRuleProperty(
|
|
146684
|
-
column_name="columnName",
|
|
146685
146683
|
tag_key="tagKey",
|
|
146686
146684
|
|
|
146687
146685
|
# the properties below are optional
|
|
146686
|
+
column_name="columnName",
|
|
146688
146687
|
match_all_value="matchAllValue",
|
|
146689
146688
|
tag_multi_value_delimiter="tagMultiValueDelimiter"
|
|
146690
146689
|
)
|
|
146691
146690
|
'''
|
|
146692
146691
|
if __debug__:
|
|
146693
146692
|
type_hints = typing.get_type_hints(_typecheckingstub__81cfe18daaf7f1cce3330a7282c27dcdf7db3dfda4816cbbf0d13de8875a33f4)
|
|
146694
|
-
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
146695
146693
|
check_type(argname="argument tag_key", value=tag_key, expected_type=type_hints["tag_key"])
|
|
146694
|
+
check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
|
|
146696
146695
|
check_type(argname="argument match_all_value", value=match_all_value, expected_type=type_hints["match_all_value"])
|
|
146697
146696
|
check_type(argname="argument tag_multi_value_delimiter", value=tag_multi_value_delimiter, expected_type=type_hints["tag_multi_value_delimiter"])
|
|
146698
146697
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
146699
|
-
"column_name": column_name,
|
|
146700
146698
|
"tag_key": tag_key,
|
|
146701
146699
|
}
|
|
146700
|
+
if column_name is not None:
|
|
146701
|
+
self._values["column_name"] = column_name
|
|
146702
146702
|
if match_all_value is not None:
|
|
146703
146703
|
self._values["match_all_value"] = match_all_value
|
|
146704
146704
|
if tag_multi_value_delimiter is not None:
|
|
146705
146705
|
self._values["tag_multi_value_delimiter"] = tag_multi_value_delimiter
|
|
146706
146706
|
|
|
146707
|
-
@builtins.property
|
|
146708
|
-
def column_name(self) -> builtins.str:
|
|
146709
|
-
'''The column name that a tag key is assigned to.
|
|
146710
|
-
|
|
146711
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html#cfn-quicksight-dataset-rowlevelpermissiontagrule-columnname
|
|
146712
|
-
'''
|
|
146713
|
-
result = self._values.get("column_name")
|
|
146714
|
-
assert result is not None, "Required property 'column_name' is missing"
|
|
146715
|
-
return typing.cast(builtins.str, result)
|
|
146716
|
-
|
|
146717
146707
|
@builtins.property
|
|
146718
146708
|
def tag_key(self) -> builtins.str:
|
|
146719
146709
|
'''The unique key for a tag.
|
|
@@ -146724,6 +146714,15 @@ class CfnDataSet(
|
|
|
146724
146714
|
assert result is not None, "Required property 'tag_key' is missing"
|
|
146725
146715
|
return typing.cast(builtins.str, result)
|
|
146726
146716
|
|
|
146717
|
+
@builtins.property
|
|
146718
|
+
def column_name(self) -> typing.Optional[builtins.str]:
|
|
146719
|
+
'''The column name that a tag key is assigned to.
|
|
146720
|
+
|
|
146721
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-rowlevelpermissiontagrule.html#cfn-quicksight-dataset-rowlevelpermissiontagrule-columnname
|
|
146722
|
+
'''
|
|
146723
|
+
result = self._values.get("column_name")
|
|
146724
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
146725
|
+
|
|
146727
146726
|
@builtins.property
|
|
146728
146727
|
def match_all_value(self) -> typing.Optional[builtins.str]:
|
|
146729
146728
|
'''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.
|
|
@@ -147173,10 +147172,10 @@ class CfnDataSet(
|
|
|
147173
147172
|
|
|
147174
147173
|
transform_operation_property = quicksight.CfnDataSet.TransformOperationProperty(
|
|
147175
147174
|
cast_column_type_operation=quicksight.CfnDataSet.CastColumnTypeOperationProperty(
|
|
147176
|
-
column_name="columnName",
|
|
147177
147175
|
new_column_type="newColumnType",
|
|
147178
147176
|
|
|
147179
147177
|
# the properties below are optional
|
|
147178
|
+
column_name="columnName",
|
|
147180
147179
|
format="format",
|
|
147181
147180
|
sub_type="subType"
|
|
147182
147181
|
),
|
|
@@ -147207,8 +147206,6 @@ class CfnDataSet(
|
|
|
147207
147206
|
),
|
|
147208
147207
|
rename_column_operation=quicksight.CfnDataSet.RenameColumnOperationProperty(
|
|
147209
147208
|
column_name="columnName",
|
|
147210
|
-
|
|
147211
|
-
# the properties below are optional
|
|
147212
147209
|
new_column_name="newColumnName"
|
|
147213
147210
|
),
|
|
147214
147211
|
tag_column_operation=quicksight.CfnDataSet.TagColumnOperationProperty(
|
|
@@ -147362,7 +147359,11 @@ class CfnDataSet(
|
|
|
147362
147359
|
name_mapping={"column_names": "columnNames"},
|
|
147363
147360
|
)
|
|
147364
147361
|
class UniqueKeyProperty:
|
|
147365
|
-
def __init__(
|
|
147362
|
+
def __init__(
|
|
147363
|
+
self,
|
|
147364
|
+
*,
|
|
147365
|
+
column_names: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
147366
|
+
) -> None:
|
|
147366
147367
|
'''
|
|
147367
147368
|
:param column_names:
|
|
147368
147369
|
|
|
@@ -147382,18 +147383,17 @@ class CfnDataSet(
|
|
|
147382
147383
|
if __debug__:
|
|
147383
147384
|
type_hints = typing.get_type_hints(_typecheckingstub__2fef9ec4a7495e90a4ed0d21d0bed4e2e1bd7a15c86bc423e61bdf03d33e59bc)
|
|
147384
147385
|
check_type(argname="argument column_names", value=column_names, expected_type=type_hints["column_names"])
|
|
147385
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
147386
|
-
|
|
147387
|
-
|
|
147386
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
147387
|
+
if column_names is not None:
|
|
147388
|
+
self._values["column_names"] = column_names
|
|
147388
147389
|
|
|
147389
147390
|
@builtins.property
|
|
147390
|
-
def column_names(self) -> typing.List[builtins.str]:
|
|
147391
|
+
def column_names(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
147391
147392
|
'''
|
|
147392
147393
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uniquekey.html#cfn-quicksight-dataset-uniquekey-columnnames
|
|
147393
147394
|
'''
|
|
147394
147395
|
result = self._values.get("column_names")
|
|
147395
|
-
|
|
147396
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
147396
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
147397
147397
|
|
|
147398
147398
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
147399
147399
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -147784,10 +147784,10 @@ class CfnDataSetProps:
|
|
|
147784
147784
|
# the properties below are optional
|
|
147785
147785
|
data_transforms=[quicksight.CfnDataSet.TransformOperationProperty(
|
|
147786
147786
|
cast_column_type_operation=quicksight.CfnDataSet.CastColumnTypeOperationProperty(
|
|
147787
|
-
column_name="columnName",
|
|
147788
147787
|
new_column_type="newColumnType",
|
|
147789
147788
|
|
|
147790
147789
|
# the properties below are optional
|
|
147790
|
+
column_name="columnName",
|
|
147791
147791
|
format="format",
|
|
147792
147792
|
sub_type="subType"
|
|
147793
147793
|
),
|
|
@@ -147818,8 +147818,6 @@ class CfnDataSetProps:
|
|
|
147818
147818
|
),
|
|
147819
147819
|
rename_column_operation=quicksight.CfnDataSet.RenameColumnOperationProperty(
|
|
147820
147820
|
column_name="columnName",
|
|
147821
|
-
|
|
147822
|
-
# the properties below are optional
|
|
147823
147821
|
new_column_name="newColumnName"
|
|
147824
147822
|
),
|
|
147825
147823
|
tag_column_operation=quicksight.CfnDataSet.TagColumnOperationProperty(
|
|
@@ -147929,10 +147927,10 @@ class CfnDataSetProps:
|
|
|
147929
147927
|
),
|
|
147930
147928
|
row_level_permission_tag_configuration=quicksight.CfnDataSet.RowLevelPermissionTagConfigurationProperty(
|
|
147931
147929
|
tag_rules=[quicksight.CfnDataSet.RowLevelPermissionTagRuleProperty(
|
|
147932
|
-
column_name="columnName",
|
|
147933
147930
|
tag_key="tagKey",
|
|
147934
147931
|
|
|
147935
147932
|
# the properties below are optional
|
|
147933
|
+
column_name="columnName",
|
|
147936
147934
|
match_all_value="matchAllValue",
|
|
147937
147935
|
tag_multi_value_delimiter="tagMultiValueDelimiter"
|
|
147938
147936
|
)],
|
|
@@ -238713,8 +238711,8 @@ def _typecheckingstub__c1231ad01a76710b79ae378de78ccc76bb05c75d0f0df4211be06aa6a
|
|
|
238713
238711
|
|
|
238714
238712
|
def _typecheckingstub__e2fded724bbc6640c2fbe9fe33aee3a869a672cc8cfd40186128cdc1c929ffb6(
|
|
238715
238713
|
*,
|
|
238716
|
-
column_name: builtins.str,
|
|
238717
238714
|
new_column_type: builtins.str,
|
|
238715
|
+
column_name: typing.Optional[builtins.str] = None,
|
|
238718
238716
|
format: typing.Optional[builtins.str] = None,
|
|
238719
238717
|
sub_type: typing.Optional[builtins.str] = None,
|
|
238720
238718
|
) -> None:
|
|
@@ -238839,7 +238837,7 @@ def _typecheckingstub__97cb8c9f7dc46795d3b83cc33aee13ecdc65adbbd69b727121697bc46
|
|
|
238839
238837
|
|
|
238840
238838
|
def _typecheckingstub__0c6b79c4b080379d4b3ed9c423474bdb63328a6739ddab0e95e9149b59558c0a(
|
|
238841
238839
|
*,
|
|
238842
|
-
condition_expression: builtins.str,
|
|
238840
|
+
condition_expression: typing.Optional[builtins.str] = None,
|
|
238843
238841
|
) -> None:
|
|
238844
238842
|
"""Type checking stubs"""
|
|
238845
238843
|
pass
|
|
@@ -238987,7 +238985,7 @@ def _typecheckingstub__7f588cf2770fa7b702b2e4f637de59610c15f0ce583be4cd711a33839
|
|
|
238987
238985
|
|
|
238988
238986
|
def _typecheckingstub__f8e4e442aa58a18179ff77f915ae9041c15500b9de7cc923ee465cc5be9a021b(
|
|
238989
238987
|
*,
|
|
238990
|
-
projected_columns: typing.Sequence[builtins.str],
|
|
238988
|
+
projected_columns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
238991
238989
|
) -> None:
|
|
238992
238990
|
"""Type checking stubs"""
|
|
238993
238991
|
pass
|
|
@@ -239026,7 +239024,7 @@ def _typecheckingstub__bc43d1be088dad877549378a89c5cca422c52436d49d6b5d4f473a737
|
|
|
239026
239024
|
|
|
239027
239025
|
def _typecheckingstub__d5b477884d5da5b0f50ad9bab47f315489aa821b4b6099b0c110eaa21199d621(
|
|
239028
239026
|
*,
|
|
239029
|
-
column_name: builtins.str,
|
|
239027
|
+
column_name: typing.Optional[builtins.str] = None,
|
|
239030
239028
|
new_column_name: typing.Optional[builtins.str] = None,
|
|
239031
239029
|
) -> None:
|
|
239032
239030
|
"""Type checking stubs"""
|
|
@@ -239062,8 +239060,8 @@ def _typecheckingstub__ece2bf00916836eda450eb8cfff561ba36b89c9d49d36929ccf01d12e
|
|
|
239062
239060
|
|
|
239063
239061
|
def _typecheckingstub__81cfe18daaf7f1cce3330a7282c27dcdf7db3dfda4816cbbf0d13de8875a33f4(
|
|
239064
239062
|
*,
|
|
239065
|
-
column_name: builtins.str,
|
|
239066
239063
|
tag_key: builtins.str,
|
|
239064
|
+
column_name: typing.Optional[builtins.str] = None,
|
|
239067
239065
|
match_all_value: typing.Optional[builtins.str] = None,
|
|
239068
239066
|
tag_multi_value_delimiter: typing.Optional[builtins.str] = None,
|
|
239069
239067
|
) -> None:
|
|
@@ -239120,7 +239118,7 @@ def _typecheckingstub__c858116d8ca183e35074dc7ac22d6e02615a61e79e9558dc2d96336d9
|
|
|
239120
239118
|
|
|
239121
239119
|
def _typecheckingstub__2fef9ec4a7495e90a4ed0d21d0bed4e2e1bd7a15c86bc423e61bdf03d33e59bc(
|
|
239122
239120
|
*,
|
|
239123
|
-
column_names: typing.Sequence[builtins.str],
|
|
239121
|
+
column_names: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
239124
239122
|
) -> None:
|
|
239125
239123
|
"""Type checking stubs"""
|
|
239126
239124
|
pass
|