aws-cdk-lib 2.100.0__py3-none-any.whl → 2.101.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.100.0.jsii.tgz → aws-cdk-lib@2.101.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +0 -8
- aws_cdk/aws_appconfig/__init__.py +101 -18
- aws_cdk/aws_apprunner/__init__.py +5 -2
- aws_cdk/aws_appstream/__init__.py +18 -26
- aws_cdk/aws_cloudfront/__init__.py +251 -3
- aws_cdk/aws_cloudtrail/__init__.py +47 -3
- aws_cdk/aws_cognito/__init__.py +414 -8
- aws_cdk/aws_dlm/__init__.py +10 -9
- aws_cdk/aws_ec2/__init__.py +308 -179
- aws_cdk/aws_events/__init__.py +62 -86
- aws_cdk/aws_fms/__init__.py +3 -3
- aws_cdk/aws_grafana/__init__.py +4 -4
- aws_cdk/aws_greengrassv2/__init__.py +1 -8
- aws_cdk/aws_iot/__init__.py +714 -0
- aws_cdk/aws_iotsitewise/__init__.py +3 -3
- aws_cdk/aws_kinesisanalytics/__init__.py +15 -15
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +15 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +87 -40
- aws_cdk/aws_lambda/__init__.py +34 -4
- aws_cdk/aws_lightsail/__init__.py +3 -1
- aws_cdk/aws_mediatailor/__init__.py +24 -1
- aws_cdk/aws_quicksight/__init__.py +2508 -55
- aws_cdk/aws_rds/__init__.py +121 -51
- aws_cdk/aws_sagemaker/__init__.py +5 -3
- aws_cdk/aws_sns/__init__.py +42 -5
- aws_cdk/aws_ssm/__init__.py +0 -8
- aws_cdk/aws_stepfunctions/__init__.py +233 -16
- aws_cdk/aws_stepfunctions_tasks/__init__.py +926 -27
- aws_cdk/aws_transfer/__init__.py +4 -4
- aws_cdk/aws_workspacesweb/__init__.py +3 -3
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/RECORD +38 -38
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/top_level.txt +0 -0
|
@@ -29766,20 +29766,249 @@ class CfnAnalysis(
|
|
|
29766
29766
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
29767
29767
|
)
|
|
29768
29768
|
|
|
29769
|
+
@jsii.data_type(
|
|
29770
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPIActualValueConditionalFormattingProperty",
|
|
29771
|
+
jsii_struct_bases=[],
|
|
29772
|
+
name_mapping={"icon": "icon", "text_color": "textColor"},
|
|
29773
|
+
)
|
|
29774
|
+
class KPIActualValueConditionalFormattingProperty:
|
|
29775
|
+
def __init__(
|
|
29776
|
+
self,
|
|
29777
|
+
*,
|
|
29778
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ConditionalFormattingIconProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29779
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ConditionalFormattingColorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29780
|
+
) -> None:
|
|
29781
|
+
'''
|
|
29782
|
+
:param icon:
|
|
29783
|
+
:param text_color:
|
|
29784
|
+
|
|
29785
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpiactualvalueconditionalformatting.html
|
|
29786
|
+
:exampleMetadata: fixture=_generated
|
|
29787
|
+
|
|
29788
|
+
Example::
|
|
29789
|
+
|
|
29790
|
+
# The code below shows an example of how to instantiate this type.
|
|
29791
|
+
# The values are placeholders you should change.
|
|
29792
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
29793
|
+
|
|
29794
|
+
k_pIActual_value_conditional_formatting_property = quicksight.CfnAnalysis.KPIActualValueConditionalFormattingProperty(
|
|
29795
|
+
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
29796
|
+
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
29797
|
+
expression="expression",
|
|
29798
|
+
icon_options=quicksight.CfnAnalysis.ConditionalFormattingCustomIconOptionsProperty(
|
|
29799
|
+
icon="icon",
|
|
29800
|
+
unicode_icon="unicodeIcon"
|
|
29801
|
+
),
|
|
29802
|
+
|
|
29803
|
+
# the properties below are optional
|
|
29804
|
+
color="color",
|
|
29805
|
+
display_configuration=quicksight.CfnAnalysis.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
29806
|
+
icon_display_option="iconDisplayOption"
|
|
29807
|
+
)
|
|
29808
|
+
),
|
|
29809
|
+
icon_set=quicksight.CfnAnalysis.ConditionalFormattingIconSetProperty(
|
|
29810
|
+
expression="expression",
|
|
29811
|
+
|
|
29812
|
+
# the properties below are optional
|
|
29813
|
+
icon_set_type="iconSetType"
|
|
29814
|
+
)
|
|
29815
|
+
),
|
|
29816
|
+
text_color=quicksight.CfnAnalysis.ConditionalFormattingColorProperty(
|
|
29817
|
+
gradient=quicksight.CfnAnalysis.ConditionalFormattingGradientColorProperty(
|
|
29818
|
+
color=quicksight.CfnAnalysis.GradientColorProperty(
|
|
29819
|
+
stops=[quicksight.CfnAnalysis.GradientStopProperty(
|
|
29820
|
+
gradient_offset=123,
|
|
29821
|
+
|
|
29822
|
+
# the properties below are optional
|
|
29823
|
+
color="color",
|
|
29824
|
+
data_value=123
|
|
29825
|
+
)]
|
|
29826
|
+
),
|
|
29827
|
+
expression="expression"
|
|
29828
|
+
),
|
|
29829
|
+
solid=quicksight.CfnAnalysis.ConditionalFormattingSolidColorProperty(
|
|
29830
|
+
expression="expression",
|
|
29831
|
+
|
|
29832
|
+
# the properties below are optional
|
|
29833
|
+
color="color"
|
|
29834
|
+
)
|
|
29835
|
+
)
|
|
29836
|
+
)
|
|
29837
|
+
'''
|
|
29838
|
+
if __debug__:
|
|
29839
|
+
type_hints = typing.get_type_hints(_typecheckingstub__62fd79d6d6b83de52fd9c66519b63f99afe25d2524c06723daaf72c4fcb8b997)
|
|
29840
|
+
check_type(argname="argument icon", value=icon, expected_type=type_hints["icon"])
|
|
29841
|
+
check_type(argname="argument text_color", value=text_color, expected_type=type_hints["text_color"])
|
|
29842
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
29843
|
+
if icon is not None:
|
|
29844
|
+
self._values["icon"] = icon
|
|
29845
|
+
if text_color is not None:
|
|
29846
|
+
self._values["text_color"] = text_color
|
|
29847
|
+
|
|
29848
|
+
@builtins.property
|
|
29849
|
+
def icon(
|
|
29850
|
+
self,
|
|
29851
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingIconProperty"]]:
|
|
29852
|
+
'''
|
|
29853
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpiactualvalueconditionalformatting.html#cfn-quicksight-analysis-kpiactualvalueconditionalformatting-icon
|
|
29854
|
+
'''
|
|
29855
|
+
result = self._values.get("icon")
|
|
29856
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingIconProperty"]], result)
|
|
29857
|
+
|
|
29858
|
+
@builtins.property
|
|
29859
|
+
def text_color(
|
|
29860
|
+
self,
|
|
29861
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingColorProperty"]]:
|
|
29862
|
+
'''
|
|
29863
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpiactualvalueconditionalformatting.html#cfn-quicksight-analysis-kpiactualvalueconditionalformatting-textcolor
|
|
29864
|
+
'''
|
|
29865
|
+
result = self._values.get("text_color")
|
|
29866
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingColorProperty"]], result)
|
|
29867
|
+
|
|
29868
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
29869
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
29870
|
+
|
|
29871
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
29872
|
+
return not (rhs == self)
|
|
29873
|
+
|
|
29874
|
+
def __repr__(self) -> str:
|
|
29875
|
+
return "KPIActualValueConditionalFormattingProperty(%s)" % ", ".join(
|
|
29876
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
29877
|
+
)
|
|
29878
|
+
|
|
29879
|
+
@jsii.data_type(
|
|
29880
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPIComparisonValueConditionalFormattingProperty",
|
|
29881
|
+
jsii_struct_bases=[],
|
|
29882
|
+
name_mapping={"icon": "icon", "text_color": "textColor"},
|
|
29883
|
+
)
|
|
29884
|
+
class KPIComparisonValueConditionalFormattingProperty:
|
|
29885
|
+
def __init__(
|
|
29886
|
+
self,
|
|
29887
|
+
*,
|
|
29888
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ConditionalFormattingIconProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29889
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ConditionalFormattingColorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29890
|
+
) -> None:
|
|
29891
|
+
'''
|
|
29892
|
+
:param icon:
|
|
29893
|
+
:param text_color:
|
|
29894
|
+
|
|
29895
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpicomparisonvalueconditionalformatting.html
|
|
29896
|
+
:exampleMetadata: fixture=_generated
|
|
29897
|
+
|
|
29898
|
+
Example::
|
|
29899
|
+
|
|
29900
|
+
# The code below shows an example of how to instantiate this type.
|
|
29901
|
+
# The values are placeholders you should change.
|
|
29902
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
29903
|
+
|
|
29904
|
+
k_pIComparison_value_conditional_formatting_property = quicksight.CfnAnalysis.KPIComparisonValueConditionalFormattingProperty(
|
|
29905
|
+
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
29906
|
+
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
29907
|
+
expression="expression",
|
|
29908
|
+
icon_options=quicksight.CfnAnalysis.ConditionalFormattingCustomIconOptionsProperty(
|
|
29909
|
+
icon="icon",
|
|
29910
|
+
unicode_icon="unicodeIcon"
|
|
29911
|
+
),
|
|
29912
|
+
|
|
29913
|
+
# the properties below are optional
|
|
29914
|
+
color="color",
|
|
29915
|
+
display_configuration=quicksight.CfnAnalysis.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
29916
|
+
icon_display_option="iconDisplayOption"
|
|
29917
|
+
)
|
|
29918
|
+
),
|
|
29919
|
+
icon_set=quicksight.CfnAnalysis.ConditionalFormattingIconSetProperty(
|
|
29920
|
+
expression="expression",
|
|
29921
|
+
|
|
29922
|
+
# the properties below are optional
|
|
29923
|
+
icon_set_type="iconSetType"
|
|
29924
|
+
)
|
|
29925
|
+
),
|
|
29926
|
+
text_color=quicksight.CfnAnalysis.ConditionalFormattingColorProperty(
|
|
29927
|
+
gradient=quicksight.CfnAnalysis.ConditionalFormattingGradientColorProperty(
|
|
29928
|
+
color=quicksight.CfnAnalysis.GradientColorProperty(
|
|
29929
|
+
stops=[quicksight.CfnAnalysis.GradientStopProperty(
|
|
29930
|
+
gradient_offset=123,
|
|
29931
|
+
|
|
29932
|
+
# the properties below are optional
|
|
29933
|
+
color="color",
|
|
29934
|
+
data_value=123
|
|
29935
|
+
)]
|
|
29936
|
+
),
|
|
29937
|
+
expression="expression"
|
|
29938
|
+
),
|
|
29939
|
+
solid=quicksight.CfnAnalysis.ConditionalFormattingSolidColorProperty(
|
|
29940
|
+
expression="expression",
|
|
29941
|
+
|
|
29942
|
+
# the properties below are optional
|
|
29943
|
+
color="color"
|
|
29944
|
+
)
|
|
29945
|
+
)
|
|
29946
|
+
)
|
|
29947
|
+
'''
|
|
29948
|
+
if __debug__:
|
|
29949
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fbd6a01397645828bcae2c115e1d8f217c81792121ff843ce7c7a98717d66bbd)
|
|
29950
|
+
check_type(argname="argument icon", value=icon, expected_type=type_hints["icon"])
|
|
29951
|
+
check_type(argname="argument text_color", value=text_color, expected_type=type_hints["text_color"])
|
|
29952
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
29953
|
+
if icon is not None:
|
|
29954
|
+
self._values["icon"] = icon
|
|
29955
|
+
if text_color is not None:
|
|
29956
|
+
self._values["text_color"] = text_color
|
|
29957
|
+
|
|
29958
|
+
@builtins.property
|
|
29959
|
+
def icon(
|
|
29960
|
+
self,
|
|
29961
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingIconProperty"]]:
|
|
29962
|
+
'''
|
|
29963
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpicomparisonvalueconditionalformatting.html#cfn-quicksight-analysis-kpicomparisonvalueconditionalformatting-icon
|
|
29964
|
+
'''
|
|
29965
|
+
result = self._values.get("icon")
|
|
29966
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingIconProperty"]], result)
|
|
29967
|
+
|
|
29968
|
+
@builtins.property
|
|
29969
|
+
def text_color(
|
|
29970
|
+
self,
|
|
29971
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingColorProperty"]]:
|
|
29972
|
+
'''
|
|
29973
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpicomparisonvalueconditionalformatting.html#cfn-quicksight-analysis-kpicomparisonvalueconditionalformatting-textcolor
|
|
29974
|
+
'''
|
|
29975
|
+
result = self._values.get("text_color")
|
|
29976
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.ConditionalFormattingColorProperty"]], result)
|
|
29977
|
+
|
|
29978
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
29979
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
29980
|
+
|
|
29981
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
29982
|
+
return not (rhs == self)
|
|
29983
|
+
|
|
29984
|
+
def __repr__(self) -> str:
|
|
29985
|
+
return "KPIComparisonValueConditionalFormattingProperty(%s)" % ", ".join(
|
|
29986
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
29987
|
+
)
|
|
29988
|
+
|
|
29769
29989
|
@jsii.data_type(
|
|
29770
29990
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPIConditionalFormattingOptionProperty",
|
|
29771
29991
|
jsii_struct_bases=[],
|
|
29772
|
-
name_mapping={
|
|
29992
|
+
name_mapping={
|
|
29993
|
+
"actual_value": "actualValue",
|
|
29994
|
+
"comparison_value": "comparisonValue",
|
|
29995
|
+
"primary_value": "primaryValue",
|
|
29996
|
+
"progress_bar": "progressBar",
|
|
29997
|
+
},
|
|
29773
29998
|
)
|
|
29774
29999
|
class KPIConditionalFormattingOptionProperty:
|
|
29775
30000
|
def __init__(
|
|
29776
30001
|
self,
|
|
29777
30002
|
*,
|
|
30003
|
+
actual_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPIActualValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30004
|
+
comparison_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPIComparisonValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29778
30005
|
primary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPIPrimaryValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29779
30006
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPIProgressBarConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29780
30007
|
) -> None:
|
|
29781
30008
|
'''The conditional formatting options of a KPI visual.
|
|
29782
30009
|
|
|
30010
|
+
:param actual_value:
|
|
30011
|
+
:param comparison_value:
|
|
29783
30012
|
:param primary_value: The conditional formatting for the primary value of a KPI visual.
|
|
29784
30013
|
:param progress_bar: The conditional formatting for the progress bar of a KPI visual.
|
|
29785
30014
|
|
|
@@ -29793,6 +30022,92 @@ class CfnAnalysis(
|
|
|
29793
30022
|
from aws_cdk import aws_quicksight as quicksight
|
|
29794
30023
|
|
|
29795
30024
|
k_pIConditional_formatting_option_property = quicksight.CfnAnalysis.KPIConditionalFormattingOptionProperty(
|
|
30025
|
+
actual_value=quicksight.CfnAnalysis.KPIActualValueConditionalFormattingProperty(
|
|
30026
|
+
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
30027
|
+
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
30028
|
+
expression="expression",
|
|
30029
|
+
icon_options=quicksight.CfnAnalysis.ConditionalFormattingCustomIconOptionsProperty(
|
|
30030
|
+
icon="icon",
|
|
30031
|
+
unicode_icon="unicodeIcon"
|
|
30032
|
+
),
|
|
30033
|
+
|
|
30034
|
+
# the properties below are optional
|
|
30035
|
+
color="color",
|
|
30036
|
+
display_configuration=quicksight.CfnAnalysis.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
30037
|
+
icon_display_option="iconDisplayOption"
|
|
30038
|
+
)
|
|
30039
|
+
),
|
|
30040
|
+
icon_set=quicksight.CfnAnalysis.ConditionalFormattingIconSetProperty(
|
|
30041
|
+
expression="expression",
|
|
30042
|
+
|
|
30043
|
+
# the properties below are optional
|
|
30044
|
+
icon_set_type="iconSetType"
|
|
30045
|
+
)
|
|
30046
|
+
),
|
|
30047
|
+
text_color=quicksight.CfnAnalysis.ConditionalFormattingColorProperty(
|
|
30048
|
+
gradient=quicksight.CfnAnalysis.ConditionalFormattingGradientColorProperty(
|
|
30049
|
+
color=quicksight.CfnAnalysis.GradientColorProperty(
|
|
30050
|
+
stops=[quicksight.CfnAnalysis.GradientStopProperty(
|
|
30051
|
+
gradient_offset=123,
|
|
30052
|
+
|
|
30053
|
+
# the properties below are optional
|
|
30054
|
+
color="color",
|
|
30055
|
+
data_value=123
|
|
30056
|
+
)]
|
|
30057
|
+
),
|
|
30058
|
+
expression="expression"
|
|
30059
|
+
),
|
|
30060
|
+
solid=quicksight.CfnAnalysis.ConditionalFormattingSolidColorProperty(
|
|
30061
|
+
expression="expression",
|
|
30062
|
+
|
|
30063
|
+
# the properties below are optional
|
|
30064
|
+
color="color"
|
|
30065
|
+
)
|
|
30066
|
+
)
|
|
30067
|
+
),
|
|
30068
|
+
comparison_value=quicksight.CfnAnalysis.KPIComparisonValueConditionalFormattingProperty(
|
|
30069
|
+
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
30070
|
+
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
30071
|
+
expression="expression",
|
|
30072
|
+
icon_options=quicksight.CfnAnalysis.ConditionalFormattingCustomIconOptionsProperty(
|
|
30073
|
+
icon="icon",
|
|
30074
|
+
unicode_icon="unicodeIcon"
|
|
30075
|
+
),
|
|
30076
|
+
|
|
30077
|
+
# the properties below are optional
|
|
30078
|
+
color="color",
|
|
30079
|
+
display_configuration=quicksight.CfnAnalysis.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
30080
|
+
icon_display_option="iconDisplayOption"
|
|
30081
|
+
)
|
|
30082
|
+
),
|
|
30083
|
+
icon_set=quicksight.CfnAnalysis.ConditionalFormattingIconSetProperty(
|
|
30084
|
+
expression="expression",
|
|
30085
|
+
|
|
30086
|
+
# the properties below are optional
|
|
30087
|
+
icon_set_type="iconSetType"
|
|
30088
|
+
)
|
|
30089
|
+
),
|
|
30090
|
+
text_color=quicksight.CfnAnalysis.ConditionalFormattingColorProperty(
|
|
30091
|
+
gradient=quicksight.CfnAnalysis.ConditionalFormattingGradientColorProperty(
|
|
30092
|
+
color=quicksight.CfnAnalysis.GradientColorProperty(
|
|
30093
|
+
stops=[quicksight.CfnAnalysis.GradientStopProperty(
|
|
30094
|
+
gradient_offset=123,
|
|
30095
|
+
|
|
30096
|
+
# the properties below are optional
|
|
30097
|
+
color="color",
|
|
30098
|
+
data_value=123
|
|
30099
|
+
)]
|
|
30100
|
+
),
|
|
30101
|
+
expression="expression"
|
|
30102
|
+
),
|
|
30103
|
+
solid=quicksight.CfnAnalysis.ConditionalFormattingSolidColorProperty(
|
|
30104
|
+
expression="expression",
|
|
30105
|
+
|
|
30106
|
+
# the properties below are optional
|
|
30107
|
+
color="color"
|
|
30108
|
+
)
|
|
30109
|
+
)
|
|
30110
|
+
),
|
|
29796
30111
|
primary_value=quicksight.CfnAnalysis.KPIPrimaryValueConditionalFormattingProperty(
|
|
29797
30112
|
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
29798
30113
|
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
@@ -29862,14 +30177,40 @@ class CfnAnalysis(
|
|
|
29862
30177
|
'''
|
|
29863
30178
|
if __debug__:
|
|
29864
30179
|
type_hints = typing.get_type_hints(_typecheckingstub__c47a8a963b224d51f9eebe235dee2686c303a35b7bb953424d4470373ae23c31)
|
|
30180
|
+
check_type(argname="argument actual_value", value=actual_value, expected_type=type_hints["actual_value"])
|
|
30181
|
+
check_type(argname="argument comparison_value", value=comparison_value, expected_type=type_hints["comparison_value"])
|
|
29865
30182
|
check_type(argname="argument primary_value", value=primary_value, expected_type=type_hints["primary_value"])
|
|
29866
30183
|
check_type(argname="argument progress_bar", value=progress_bar, expected_type=type_hints["progress_bar"])
|
|
29867
30184
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
30185
|
+
if actual_value is not None:
|
|
30186
|
+
self._values["actual_value"] = actual_value
|
|
30187
|
+
if comparison_value is not None:
|
|
30188
|
+
self._values["comparison_value"] = comparison_value
|
|
29868
30189
|
if primary_value is not None:
|
|
29869
30190
|
self._values["primary_value"] = primary_value
|
|
29870
30191
|
if progress_bar is not None:
|
|
29871
30192
|
self._values["progress_bar"] = progress_bar
|
|
29872
30193
|
|
|
30194
|
+
@builtins.property
|
|
30195
|
+
def actual_value(
|
|
30196
|
+
self,
|
|
30197
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIActualValueConditionalFormattingProperty"]]:
|
|
30198
|
+
'''
|
|
30199
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpiconditionalformattingoption.html#cfn-quicksight-analysis-kpiconditionalformattingoption-actualvalue
|
|
30200
|
+
'''
|
|
30201
|
+
result = self._values.get("actual_value")
|
|
30202
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIActualValueConditionalFormattingProperty"]], result)
|
|
30203
|
+
|
|
30204
|
+
@builtins.property
|
|
30205
|
+
def comparison_value(
|
|
30206
|
+
self,
|
|
30207
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIComparisonValueConditionalFormattingProperty"]]:
|
|
30208
|
+
'''
|
|
30209
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpiconditionalformattingoption.html#cfn-quicksight-analysis-kpiconditionalformattingoption-comparisonvalue
|
|
30210
|
+
'''
|
|
30211
|
+
result = self._values.get("comparison_value")
|
|
30212
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIComparisonValueConditionalFormattingProperty"]], result)
|
|
30213
|
+
|
|
29873
30214
|
@builtins.property
|
|
29874
30215
|
def primary_value(
|
|
29875
30216
|
self,
|
|
@@ -29931,6 +30272,92 @@ class CfnAnalysis(
|
|
|
29931
30272
|
|
|
29932
30273
|
k_pIConditional_formatting_property = quicksight.CfnAnalysis.KPIConditionalFormattingProperty(
|
|
29933
30274
|
conditional_formatting_options=[quicksight.CfnAnalysis.KPIConditionalFormattingOptionProperty(
|
|
30275
|
+
actual_value=quicksight.CfnAnalysis.KPIActualValueConditionalFormattingProperty(
|
|
30276
|
+
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
30277
|
+
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
30278
|
+
expression="expression",
|
|
30279
|
+
icon_options=quicksight.CfnAnalysis.ConditionalFormattingCustomIconOptionsProperty(
|
|
30280
|
+
icon="icon",
|
|
30281
|
+
unicode_icon="unicodeIcon"
|
|
30282
|
+
),
|
|
30283
|
+
|
|
30284
|
+
# the properties below are optional
|
|
30285
|
+
color="color",
|
|
30286
|
+
display_configuration=quicksight.CfnAnalysis.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
30287
|
+
icon_display_option="iconDisplayOption"
|
|
30288
|
+
)
|
|
30289
|
+
),
|
|
30290
|
+
icon_set=quicksight.CfnAnalysis.ConditionalFormattingIconSetProperty(
|
|
30291
|
+
expression="expression",
|
|
30292
|
+
|
|
30293
|
+
# the properties below are optional
|
|
30294
|
+
icon_set_type="iconSetType"
|
|
30295
|
+
)
|
|
30296
|
+
),
|
|
30297
|
+
text_color=quicksight.CfnAnalysis.ConditionalFormattingColorProperty(
|
|
30298
|
+
gradient=quicksight.CfnAnalysis.ConditionalFormattingGradientColorProperty(
|
|
30299
|
+
color=quicksight.CfnAnalysis.GradientColorProperty(
|
|
30300
|
+
stops=[quicksight.CfnAnalysis.GradientStopProperty(
|
|
30301
|
+
gradient_offset=123,
|
|
30302
|
+
|
|
30303
|
+
# the properties below are optional
|
|
30304
|
+
color="color",
|
|
30305
|
+
data_value=123
|
|
30306
|
+
)]
|
|
30307
|
+
),
|
|
30308
|
+
expression="expression"
|
|
30309
|
+
),
|
|
30310
|
+
solid=quicksight.CfnAnalysis.ConditionalFormattingSolidColorProperty(
|
|
30311
|
+
expression="expression",
|
|
30312
|
+
|
|
30313
|
+
# the properties below are optional
|
|
30314
|
+
color="color"
|
|
30315
|
+
)
|
|
30316
|
+
)
|
|
30317
|
+
),
|
|
30318
|
+
comparison_value=quicksight.CfnAnalysis.KPIComparisonValueConditionalFormattingProperty(
|
|
30319
|
+
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
30320
|
+
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
30321
|
+
expression="expression",
|
|
30322
|
+
icon_options=quicksight.CfnAnalysis.ConditionalFormattingCustomIconOptionsProperty(
|
|
30323
|
+
icon="icon",
|
|
30324
|
+
unicode_icon="unicodeIcon"
|
|
30325
|
+
),
|
|
30326
|
+
|
|
30327
|
+
# the properties below are optional
|
|
30328
|
+
color="color",
|
|
30329
|
+
display_configuration=quicksight.CfnAnalysis.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
30330
|
+
icon_display_option="iconDisplayOption"
|
|
30331
|
+
)
|
|
30332
|
+
),
|
|
30333
|
+
icon_set=quicksight.CfnAnalysis.ConditionalFormattingIconSetProperty(
|
|
30334
|
+
expression="expression",
|
|
30335
|
+
|
|
30336
|
+
# the properties below are optional
|
|
30337
|
+
icon_set_type="iconSetType"
|
|
30338
|
+
)
|
|
30339
|
+
),
|
|
30340
|
+
text_color=quicksight.CfnAnalysis.ConditionalFormattingColorProperty(
|
|
30341
|
+
gradient=quicksight.CfnAnalysis.ConditionalFormattingGradientColorProperty(
|
|
30342
|
+
color=quicksight.CfnAnalysis.GradientColorProperty(
|
|
30343
|
+
stops=[quicksight.CfnAnalysis.GradientStopProperty(
|
|
30344
|
+
gradient_offset=123,
|
|
30345
|
+
|
|
30346
|
+
# the properties below are optional
|
|
30347
|
+
color="color",
|
|
30348
|
+
data_value=123
|
|
30349
|
+
)]
|
|
30350
|
+
),
|
|
30351
|
+
expression="expression"
|
|
30352
|
+
),
|
|
30353
|
+
solid=quicksight.CfnAnalysis.ConditionalFormattingSolidColorProperty(
|
|
30354
|
+
expression="expression",
|
|
30355
|
+
|
|
30356
|
+
# the properties below are optional
|
|
30357
|
+
color="color"
|
|
30358
|
+
)
|
|
30359
|
+
)
|
|
30360
|
+
),
|
|
29934
30361
|
primary_value=quicksight.CfnAnalysis.KPIPrimaryValueConditionalFormattingProperty(
|
|
29935
30362
|
icon=quicksight.CfnAnalysis.ConditionalFormattingIconProperty(
|
|
29936
30363
|
custom_condition=quicksight.CfnAnalysis.ConditionalFormattingCustomIconConditionProperty(
|
|
@@ -30212,7 +30639,9 @@ class CfnAnalysis(
|
|
|
30212
30639
|
"progress_bar": "progressBar",
|
|
30213
30640
|
"secondary_value": "secondaryValue",
|
|
30214
30641
|
"secondary_value_font_configuration": "secondaryValueFontConfiguration",
|
|
30642
|
+
"sparkline": "sparkline",
|
|
30215
30643
|
"trend_arrows": "trendArrows",
|
|
30644
|
+
"visual_layout_options": "visualLayoutOptions",
|
|
30216
30645
|
},
|
|
30217
30646
|
)
|
|
30218
30647
|
class KPIOptionsProperty:
|
|
@@ -30225,7 +30654,9 @@ class CfnAnalysis(
|
|
|
30225
30654
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.ProgressBarOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30226
30655
|
secondary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.SecondaryValueOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30227
30656
|
secondary_value_font_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.FontConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30657
|
+
sparkline: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPISparklineOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30228
30658
|
trend_arrows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.TrendArrowOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30659
|
+
visual_layout_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPIVisualLayoutOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
30229
30660
|
) -> None:
|
|
30230
30661
|
'''The options that determine the presentation of a KPI visual.
|
|
30231
30662
|
|
|
@@ -30235,7 +30666,9 @@ class CfnAnalysis(
|
|
|
30235
30666
|
:param progress_bar: The options that determine the presentation of the progress bar of a KPI visual.
|
|
30236
30667
|
:param secondary_value: The options that determine the presentation of the secondary value of a KPI visual.
|
|
30237
30668
|
:param secondary_value_font_configuration: The options that determine the secondary value font configuration.
|
|
30669
|
+
:param sparkline:
|
|
30238
30670
|
:param trend_arrows: The options that determine the presentation of trend arrows in a KPI visual.
|
|
30671
|
+
:param visual_layout_options:
|
|
30239
30672
|
|
|
30240
30673
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpioptions.html
|
|
30241
30674
|
:exampleMetadata: fixture=_generated
|
|
@@ -30322,8 +30755,21 @@ class CfnAnalysis(
|
|
|
30322
30755
|
name="name"
|
|
30323
30756
|
)
|
|
30324
30757
|
),
|
|
30758
|
+
sparkline=quicksight.CfnAnalysis.KPISparklineOptionsProperty(
|
|
30759
|
+
type="type",
|
|
30760
|
+
|
|
30761
|
+
# the properties below are optional
|
|
30762
|
+
color="color",
|
|
30763
|
+
tooltip_visibility="tooltipVisibility",
|
|
30764
|
+
visibility="visibility"
|
|
30765
|
+
),
|
|
30325
30766
|
trend_arrows=quicksight.CfnAnalysis.TrendArrowOptionsProperty(
|
|
30326
30767
|
visibility="visibility"
|
|
30768
|
+
),
|
|
30769
|
+
visual_layout_options=quicksight.CfnAnalysis.KPIVisualLayoutOptionsProperty(
|
|
30770
|
+
standard_layout=quicksight.CfnAnalysis.KPIVisualStandardLayoutProperty(
|
|
30771
|
+
type="type"
|
|
30772
|
+
)
|
|
30327
30773
|
)
|
|
30328
30774
|
)
|
|
30329
30775
|
'''
|
|
@@ -30335,7 +30781,9 @@ class CfnAnalysis(
|
|
|
30335
30781
|
check_type(argname="argument progress_bar", value=progress_bar, expected_type=type_hints["progress_bar"])
|
|
30336
30782
|
check_type(argname="argument secondary_value", value=secondary_value, expected_type=type_hints["secondary_value"])
|
|
30337
30783
|
check_type(argname="argument secondary_value_font_configuration", value=secondary_value_font_configuration, expected_type=type_hints["secondary_value_font_configuration"])
|
|
30784
|
+
check_type(argname="argument sparkline", value=sparkline, expected_type=type_hints["sparkline"])
|
|
30338
30785
|
check_type(argname="argument trend_arrows", value=trend_arrows, expected_type=type_hints["trend_arrows"])
|
|
30786
|
+
check_type(argname="argument visual_layout_options", value=visual_layout_options, expected_type=type_hints["visual_layout_options"])
|
|
30339
30787
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
30340
30788
|
if comparison is not None:
|
|
30341
30789
|
self._values["comparison"] = comparison
|
|
@@ -30349,8 +30797,12 @@ class CfnAnalysis(
|
|
|
30349
30797
|
self._values["secondary_value"] = secondary_value
|
|
30350
30798
|
if secondary_value_font_configuration is not None:
|
|
30351
30799
|
self._values["secondary_value_font_configuration"] = secondary_value_font_configuration
|
|
30800
|
+
if sparkline is not None:
|
|
30801
|
+
self._values["sparkline"] = sparkline
|
|
30352
30802
|
if trend_arrows is not None:
|
|
30353
30803
|
self._values["trend_arrows"] = trend_arrows
|
|
30804
|
+
if visual_layout_options is not None:
|
|
30805
|
+
self._values["visual_layout_options"] = visual_layout_options
|
|
30354
30806
|
|
|
30355
30807
|
@builtins.property
|
|
30356
30808
|
def comparison(
|
|
@@ -30416,6 +30868,16 @@ class CfnAnalysis(
|
|
|
30416
30868
|
result = self._values.get("secondary_value_font_configuration")
|
|
30417
30869
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.FontConfigurationProperty"]], result)
|
|
30418
30870
|
|
|
30871
|
+
@builtins.property
|
|
30872
|
+
def sparkline(
|
|
30873
|
+
self,
|
|
30874
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPISparklineOptionsProperty"]]:
|
|
30875
|
+
'''
|
|
30876
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpioptions.html#cfn-quicksight-analysis-kpioptions-sparkline
|
|
30877
|
+
'''
|
|
30878
|
+
result = self._values.get("sparkline")
|
|
30879
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPISparklineOptionsProperty"]], result)
|
|
30880
|
+
|
|
30419
30881
|
@builtins.property
|
|
30420
30882
|
def trend_arrows(
|
|
30421
30883
|
self,
|
|
@@ -30427,6 +30889,16 @@ class CfnAnalysis(
|
|
|
30427
30889
|
result = self._values.get("trend_arrows")
|
|
30428
30890
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.TrendArrowOptionsProperty"]], result)
|
|
30429
30891
|
|
|
30892
|
+
@builtins.property
|
|
30893
|
+
def visual_layout_options(
|
|
30894
|
+
self,
|
|
30895
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIVisualLayoutOptionsProperty"]]:
|
|
30896
|
+
'''
|
|
30897
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpioptions.html#cfn-quicksight-analysis-kpioptions-visuallayoutoptions
|
|
30898
|
+
'''
|
|
30899
|
+
result = self._values.get("visual_layout_options")
|
|
30900
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIVisualLayoutOptionsProperty"]], result)
|
|
30901
|
+
|
|
30430
30902
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
30431
30903
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
30432
30904
|
|
|
@@ -30712,6 +31184,166 @@ class CfnAnalysis(
|
|
|
30712
31184
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
30713
31185
|
)
|
|
30714
31186
|
|
|
31187
|
+
@jsii.data_type(
|
|
31188
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPISparklineOptionsProperty",
|
|
31189
|
+
jsii_struct_bases=[],
|
|
31190
|
+
name_mapping={
|
|
31191
|
+
"type": "type",
|
|
31192
|
+
"color": "color",
|
|
31193
|
+
"tooltip_visibility": "tooltipVisibility",
|
|
31194
|
+
"visibility": "visibility",
|
|
31195
|
+
},
|
|
31196
|
+
)
|
|
31197
|
+
class KPISparklineOptionsProperty:
|
|
31198
|
+
def __init__(
|
|
31199
|
+
self,
|
|
31200
|
+
*,
|
|
31201
|
+
type: builtins.str,
|
|
31202
|
+
color: typing.Optional[builtins.str] = None,
|
|
31203
|
+
tooltip_visibility: typing.Optional[builtins.str] = None,
|
|
31204
|
+
visibility: typing.Optional[builtins.str] = None,
|
|
31205
|
+
) -> None:
|
|
31206
|
+
'''
|
|
31207
|
+
:param type:
|
|
31208
|
+
:param color:
|
|
31209
|
+
:param tooltip_visibility:
|
|
31210
|
+
:param visibility:
|
|
31211
|
+
|
|
31212
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpisparklineoptions.html
|
|
31213
|
+
:exampleMetadata: fixture=_generated
|
|
31214
|
+
|
|
31215
|
+
Example::
|
|
31216
|
+
|
|
31217
|
+
# The code below shows an example of how to instantiate this type.
|
|
31218
|
+
# The values are placeholders you should change.
|
|
31219
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
31220
|
+
|
|
31221
|
+
k_pISparkline_options_property = quicksight.CfnAnalysis.KPISparklineOptionsProperty(
|
|
31222
|
+
type="type",
|
|
31223
|
+
|
|
31224
|
+
# the properties below are optional
|
|
31225
|
+
color="color",
|
|
31226
|
+
tooltip_visibility="tooltipVisibility",
|
|
31227
|
+
visibility="visibility"
|
|
31228
|
+
)
|
|
31229
|
+
'''
|
|
31230
|
+
if __debug__:
|
|
31231
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3be4495469d6e19fe8ef384eec06f1df885d3447466904ecdffe0f7ac2355ebd)
|
|
31232
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
31233
|
+
check_type(argname="argument color", value=color, expected_type=type_hints["color"])
|
|
31234
|
+
check_type(argname="argument tooltip_visibility", value=tooltip_visibility, expected_type=type_hints["tooltip_visibility"])
|
|
31235
|
+
check_type(argname="argument visibility", value=visibility, expected_type=type_hints["visibility"])
|
|
31236
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
31237
|
+
"type": type,
|
|
31238
|
+
}
|
|
31239
|
+
if color is not None:
|
|
31240
|
+
self._values["color"] = color
|
|
31241
|
+
if tooltip_visibility is not None:
|
|
31242
|
+
self._values["tooltip_visibility"] = tooltip_visibility
|
|
31243
|
+
if visibility is not None:
|
|
31244
|
+
self._values["visibility"] = visibility
|
|
31245
|
+
|
|
31246
|
+
@builtins.property
|
|
31247
|
+
def type(self) -> builtins.str:
|
|
31248
|
+
'''
|
|
31249
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpisparklineoptions.html#cfn-quicksight-analysis-kpisparklineoptions-type
|
|
31250
|
+
'''
|
|
31251
|
+
result = self._values.get("type")
|
|
31252
|
+
assert result is not None, "Required property 'type' is missing"
|
|
31253
|
+
return typing.cast(builtins.str, result)
|
|
31254
|
+
|
|
31255
|
+
@builtins.property
|
|
31256
|
+
def color(self) -> typing.Optional[builtins.str]:
|
|
31257
|
+
'''
|
|
31258
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpisparklineoptions.html#cfn-quicksight-analysis-kpisparklineoptions-color
|
|
31259
|
+
'''
|
|
31260
|
+
result = self._values.get("color")
|
|
31261
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
31262
|
+
|
|
31263
|
+
@builtins.property
|
|
31264
|
+
def tooltip_visibility(self) -> typing.Optional[builtins.str]:
|
|
31265
|
+
'''
|
|
31266
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpisparklineoptions.html#cfn-quicksight-analysis-kpisparklineoptions-tooltipvisibility
|
|
31267
|
+
'''
|
|
31268
|
+
result = self._values.get("tooltip_visibility")
|
|
31269
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
31270
|
+
|
|
31271
|
+
@builtins.property
|
|
31272
|
+
def visibility(self) -> typing.Optional[builtins.str]:
|
|
31273
|
+
'''
|
|
31274
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpisparklineoptions.html#cfn-quicksight-analysis-kpisparklineoptions-visibility
|
|
31275
|
+
'''
|
|
31276
|
+
result = self._values.get("visibility")
|
|
31277
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
31278
|
+
|
|
31279
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
31280
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
31281
|
+
|
|
31282
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
31283
|
+
return not (rhs == self)
|
|
31284
|
+
|
|
31285
|
+
def __repr__(self) -> str:
|
|
31286
|
+
return "KPISparklineOptionsProperty(%s)" % ", ".join(
|
|
31287
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
31288
|
+
)
|
|
31289
|
+
|
|
31290
|
+
@jsii.data_type(
|
|
31291
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPIVisualLayoutOptionsProperty",
|
|
31292
|
+
jsii_struct_bases=[],
|
|
31293
|
+
name_mapping={"standard_layout": "standardLayout"},
|
|
31294
|
+
)
|
|
31295
|
+
class KPIVisualLayoutOptionsProperty:
|
|
31296
|
+
def __init__(
|
|
31297
|
+
self,
|
|
31298
|
+
*,
|
|
31299
|
+
standard_layout: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.KPIVisualStandardLayoutProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
31300
|
+
) -> None:
|
|
31301
|
+
'''
|
|
31302
|
+
:param standard_layout:
|
|
31303
|
+
|
|
31304
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpivisuallayoutoptions.html
|
|
31305
|
+
:exampleMetadata: fixture=_generated
|
|
31306
|
+
|
|
31307
|
+
Example::
|
|
31308
|
+
|
|
31309
|
+
# The code below shows an example of how to instantiate this type.
|
|
31310
|
+
# The values are placeholders you should change.
|
|
31311
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
31312
|
+
|
|
31313
|
+
k_pIVisual_layout_options_property = quicksight.CfnAnalysis.KPIVisualLayoutOptionsProperty(
|
|
31314
|
+
standard_layout=quicksight.CfnAnalysis.KPIVisualStandardLayoutProperty(
|
|
31315
|
+
type="type"
|
|
31316
|
+
)
|
|
31317
|
+
)
|
|
31318
|
+
'''
|
|
31319
|
+
if __debug__:
|
|
31320
|
+
type_hints = typing.get_type_hints(_typecheckingstub__48fbce62cfa096a37c10afd1546006b403110253ae89f9ad8d55fc91cd7f6f30)
|
|
31321
|
+
check_type(argname="argument standard_layout", value=standard_layout, expected_type=type_hints["standard_layout"])
|
|
31322
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
31323
|
+
if standard_layout is not None:
|
|
31324
|
+
self._values["standard_layout"] = standard_layout
|
|
31325
|
+
|
|
31326
|
+
@builtins.property
|
|
31327
|
+
def standard_layout(
|
|
31328
|
+
self,
|
|
31329
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIVisualStandardLayoutProperty"]]:
|
|
31330
|
+
'''
|
|
31331
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpivisuallayoutoptions.html#cfn-quicksight-analysis-kpivisuallayoutoptions-standardlayout
|
|
31332
|
+
'''
|
|
31333
|
+
result = self._values.get("standard_layout")
|
|
31334
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.KPIVisualStandardLayoutProperty"]], result)
|
|
31335
|
+
|
|
31336
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
31337
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
31338
|
+
|
|
31339
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
31340
|
+
return not (rhs == self)
|
|
31341
|
+
|
|
31342
|
+
def __repr__(self) -> str:
|
|
31343
|
+
return "KPIVisualLayoutOptionsProperty(%s)" % ", ".join(
|
|
31344
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
31345
|
+
)
|
|
31346
|
+
|
|
30715
31347
|
@jsii.data_type(
|
|
30716
31348
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPIVisualProperty",
|
|
30717
31349
|
jsii_struct_bases=[],
|
|
@@ -30870,6 +31502,56 @@ class CfnAnalysis(
|
|
|
30870
31502
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
30871
31503
|
)
|
|
30872
31504
|
|
|
31505
|
+
@jsii.data_type(
|
|
31506
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.KPIVisualStandardLayoutProperty",
|
|
31507
|
+
jsii_struct_bases=[],
|
|
31508
|
+
name_mapping={"type": "type"},
|
|
31509
|
+
)
|
|
31510
|
+
class KPIVisualStandardLayoutProperty:
|
|
31511
|
+
def __init__(self, *, type: builtins.str) -> None:
|
|
31512
|
+
'''
|
|
31513
|
+
:param type:
|
|
31514
|
+
|
|
31515
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpivisualstandardlayout.html
|
|
31516
|
+
:exampleMetadata: fixture=_generated
|
|
31517
|
+
|
|
31518
|
+
Example::
|
|
31519
|
+
|
|
31520
|
+
# The code below shows an example of how to instantiate this type.
|
|
31521
|
+
# The values are placeholders you should change.
|
|
31522
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
31523
|
+
|
|
31524
|
+
k_pIVisual_standard_layout_property = quicksight.CfnAnalysis.KPIVisualStandardLayoutProperty(
|
|
31525
|
+
type="type"
|
|
31526
|
+
)
|
|
31527
|
+
'''
|
|
31528
|
+
if __debug__:
|
|
31529
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d68e110b12f2158f2717a768c70570e746f7d8a26d6352fb02468e589306879b)
|
|
31530
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
31531
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
31532
|
+
"type": type,
|
|
31533
|
+
}
|
|
31534
|
+
|
|
31535
|
+
@builtins.property
|
|
31536
|
+
def type(self) -> builtins.str:
|
|
31537
|
+
'''
|
|
31538
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-kpivisualstandardlayout.html#cfn-quicksight-analysis-kpivisualstandardlayout-type
|
|
31539
|
+
'''
|
|
31540
|
+
result = self._values.get("type")
|
|
31541
|
+
assert result is not None, "Required property 'type' is missing"
|
|
31542
|
+
return typing.cast(builtins.str, result)
|
|
31543
|
+
|
|
31544
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
31545
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
31546
|
+
|
|
31547
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
31548
|
+
return not (rhs == self)
|
|
31549
|
+
|
|
31550
|
+
def __repr__(self) -> str:
|
|
31551
|
+
return "KPIVisualStandardLayoutProperty(%s)" % ", ".join(
|
|
31552
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
31553
|
+
)
|
|
31554
|
+
|
|
30873
31555
|
@jsii.data_type(
|
|
30874
31556
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.LabelOptionsProperty",
|
|
30875
31557
|
jsii_struct_bases=[],
|
|
@@ -53394,6 +54076,7 @@ class CfnAnalysis(
|
|
|
53394
54076
|
jsii_struct_bases=[],
|
|
53395
54077
|
name_mapping={
|
|
53396
54078
|
"order": "order",
|
|
54079
|
+
"pinned_field_options": "pinnedFieldOptions",
|
|
53397
54080
|
"selected_field_options": "selectedFieldOptions",
|
|
53398
54081
|
},
|
|
53399
54082
|
)
|
|
@@ -53402,11 +54085,13 @@ class CfnAnalysis(
|
|
|
53402
54085
|
self,
|
|
53403
54086
|
*,
|
|
53404
54087
|
order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
54088
|
+
pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.TablePinnedFieldOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
53405
54089
|
selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysis.TableFieldOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
53406
54090
|
) -> None:
|
|
53407
54091
|
'''The field options of a table visual.
|
|
53408
54092
|
|
|
53409
54093
|
:param order: The order of the field IDs that are configured as field options for a table visual.
|
|
54094
|
+
:param pinned_field_options:
|
|
53410
54095
|
:param selected_field_options: The field options to be configured to a table.
|
|
53411
54096
|
|
|
53412
54097
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablefieldoptions.html
|
|
@@ -53420,6 +54105,9 @@ class CfnAnalysis(
|
|
|
53420
54105
|
|
|
53421
54106
|
table_field_options_property = quicksight.CfnAnalysis.TableFieldOptionsProperty(
|
|
53422
54107
|
order=["order"],
|
|
54108
|
+
pinned_field_options=quicksight.CfnAnalysis.TablePinnedFieldOptionsProperty(
|
|
54109
|
+
pinned_left_fields=["pinnedLeftFields"]
|
|
54110
|
+
),
|
|
53423
54111
|
selected_field_options=[quicksight.CfnAnalysis.TableFieldOptionProperty(
|
|
53424
54112
|
field_id="fieldId",
|
|
53425
54113
|
|
|
@@ -53464,10 +54152,13 @@ class CfnAnalysis(
|
|
|
53464
54152
|
if __debug__:
|
|
53465
54153
|
type_hints = typing.get_type_hints(_typecheckingstub__4b1581ac01a2a6068fe7519e9017b2a7cf534ecaa479c68cb2a0e30864b41438)
|
|
53466
54154
|
check_type(argname="argument order", value=order, expected_type=type_hints["order"])
|
|
54155
|
+
check_type(argname="argument pinned_field_options", value=pinned_field_options, expected_type=type_hints["pinned_field_options"])
|
|
53467
54156
|
check_type(argname="argument selected_field_options", value=selected_field_options, expected_type=type_hints["selected_field_options"])
|
|
53468
54157
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
53469
54158
|
if order is not None:
|
|
53470
54159
|
self._values["order"] = order
|
|
54160
|
+
if pinned_field_options is not None:
|
|
54161
|
+
self._values["pinned_field_options"] = pinned_field_options
|
|
53471
54162
|
if selected_field_options is not None:
|
|
53472
54163
|
self._values["selected_field_options"] = selected_field_options
|
|
53473
54164
|
|
|
@@ -53480,6 +54171,16 @@ class CfnAnalysis(
|
|
|
53480
54171
|
result = self._values.get("order")
|
|
53481
54172
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
53482
54173
|
|
|
54174
|
+
@builtins.property
|
|
54175
|
+
def pinned_field_options(
|
|
54176
|
+
self,
|
|
54177
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.TablePinnedFieldOptionsProperty"]]:
|
|
54178
|
+
'''
|
|
54179
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablefieldoptions.html#cfn-quicksight-analysis-tablefieldoptions-pinnedfieldoptions
|
|
54180
|
+
'''
|
|
54181
|
+
result = self._values.get("pinned_field_options")
|
|
54182
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysis.TablePinnedFieldOptionsProperty"]], result)
|
|
54183
|
+
|
|
53483
54184
|
@builtins.property
|
|
53484
54185
|
def selected_field_options(
|
|
53485
54186
|
self,
|
|
@@ -54043,6 +54744,59 @@ class CfnAnalysis(
|
|
|
54043
54744
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
54044
54745
|
)
|
|
54045
54746
|
|
|
54747
|
+
@jsii.data_type(
|
|
54748
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.TablePinnedFieldOptionsProperty",
|
|
54749
|
+
jsii_struct_bases=[],
|
|
54750
|
+
name_mapping={"pinned_left_fields": "pinnedLeftFields"},
|
|
54751
|
+
)
|
|
54752
|
+
class TablePinnedFieldOptionsProperty:
|
|
54753
|
+
def __init__(
|
|
54754
|
+
self,
|
|
54755
|
+
*,
|
|
54756
|
+
pinned_left_fields: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
54757
|
+
) -> None:
|
|
54758
|
+
'''
|
|
54759
|
+
:param pinned_left_fields:
|
|
54760
|
+
|
|
54761
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablepinnedfieldoptions.html
|
|
54762
|
+
:exampleMetadata: fixture=_generated
|
|
54763
|
+
|
|
54764
|
+
Example::
|
|
54765
|
+
|
|
54766
|
+
# The code below shows an example of how to instantiate this type.
|
|
54767
|
+
# The values are placeholders you should change.
|
|
54768
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
54769
|
+
|
|
54770
|
+
table_pinned_field_options_property = quicksight.CfnAnalysis.TablePinnedFieldOptionsProperty(
|
|
54771
|
+
pinned_left_fields=["pinnedLeftFields"]
|
|
54772
|
+
)
|
|
54773
|
+
'''
|
|
54774
|
+
if __debug__:
|
|
54775
|
+
type_hints = typing.get_type_hints(_typecheckingstub__77c1903cf87e0cd86e49cbaf852606e51b0ebc014ef8e0eec7540fbab943946e)
|
|
54776
|
+
check_type(argname="argument pinned_left_fields", value=pinned_left_fields, expected_type=type_hints["pinned_left_fields"])
|
|
54777
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
54778
|
+
if pinned_left_fields is not None:
|
|
54779
|
+
self._values["pinned_left_fields"] = pinned_left_fields
|
|
54780
|
+
|
|
54781
|
+
@builtins.property
|
|
54782
|
+
def pinned_left_fields(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
54783
|
+
'''
|
|
54784
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tablepinnedfieldoptions.html#cfn-quicksight-analysis-tablepinnedfieldoptions-pinnedleftfields
|
|
54785
|
+
'''
|
|
54786
|
+
result = self._values.get("pinned_left_fields")
|
|
54787
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
54788
|
+
|
|
54789
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
54790
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
54791
|
+
|
|
54792
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
54793
|
+
return not (rhs == self)
|
|
54794
|
+
|
|
54795
|
+
def __repr__(self) -> str:
|
|
54796
|
+
return "TablePinnedFieldOptionsProperty(%s)" % ", ".join(
|
|
54797
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
54798
|
+
)
|
|
54799
|
+
|
|
54046
54800
|
@jsii.data_type(
|
|
54047
54801
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnAnalysis.TableRowConditionalFormattingProperty",
|
|
54048
54802
|
jsii_struct_bases=[],
|
|
@@ -76419,7 +77173,7 @@ class CfnDashboard(
|
|
|
76419
77173
|
'''The display options of a control.
|
|
76420
77174
|
|
|
76421
77175
|
:param date_time_format: Customize how dates are formatted in controls.
|
|
76422
|
-
:param info_icon_label_options:
|
|
77176
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
76423
77177
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
76424
77178
|
|
|
76425
77179
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimepickercontroldisplayoptions.html
|
|
@@ -76480,7 +77234,8 @@ class CfnDashboard(
|
|
|
76480
77234
|
def info_icon_label_options(
|
|
76481
77235
|
self,
|
|
76482
77236
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
76483
|
-
'''
|
|
77237
|
+
'''The configuration of info icon label options.
|
|
77238
|
+
|
|
76484
77239
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimepickercontroldisplayoptions.html#cfn-quicksight-dashboard-datetimepickercontroldisplayoptions-infoiconlabeloptions
|
|
76485
77240
|
'''
|
|
76486
77241
|
result = self._values.get("info_icon_label_options")
|
|
@@ -78274,7 +79029,7 @@ class CfnDashboard(
|
|
|
78274
79029
|
) -> None:
|
|
78275
79030
|
'''The display options of a control.
|
|
78276
79031
|
|
|
78277
|
-
:param info_icon_label_options:
|
|
79032
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
78278
79033
|
:param select_all_options: The configuration of the ``Select all`` options in a dropdown control.
|
|
78279
79034
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
78280
79035
|
|
|
@@ -78329,7 +79084,8 @@ class CfnDashboard(
|
|
|
78329
79084
|
def info_icon_label_options(
|
|
78330
79085
|
self,
|
|
78331
79086
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
78332
|
-
'''
|
|
79087
|
+
'''The configuration of info icon label options.
|
|
79088
|
+
|
|
78333
79089
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dropdowncontroldisplayoptions.html#cfn-quicksight-dashboard-dropdowncontroldisplayoptions-infoiconlabeloptions
|
|
78334
79090
|
'''
|
|
78335
79091
|
result = self._values.get("info_icon_label_options")
|
|
@@ -83498,7 +84254,7 @@ class CfnDashboard(
|
|
|
83498
84254
|
|
|
83499
84255
|
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
|
|
83500
84256
|
|
|
83501
|
-
:param all_sheets:
|
|
84257
|
+
:param all_sheets: The configuration for applying a filter to all sheets.
|
|
83502
84258
|
:param selected_sheets: The configuration for applying a filter to specific sheets.
|
|
83503
84259
|
|
|
83504
84260
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterscopeconfiguration.html
|
|
@@ -83537,7 +84293,8 @@ class CfnDashboard(
|
|
|
83537
84293
|
|
|
83538
84294
|
@builtins.property
|
|
83539
84295
|
def all_sheets(self) -> typing.Any:
|
|
83540
|
-
'''
|
|
84296
|
+
'''The configuration for applying a filter to all sheets.
|
|
84297
|
+
|
|
83541
84298
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterscopeconfiguration.html#cfn-quicksight-dashboard-filterscopeconfiguration-allsheets
|
|
83542
84299
|
'''
|
|
83543
84300
|
result = self._values.get("all_sheets")
|
|
@@ -93100,20 +93857,249 @@ class CfnDashboard(
|
|
|
93100
93857
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
93101
93858
|
)
|
|
93102
93859
|
|
|
93860
|
+
@jsii.data_type(
|
|
93861
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPIActualValueConditionalFormattingProperty",
|
|
93862
|
+
jsii_struct_bases=[],
|
|
93863
|
+
name_mapping={"icon": "icon", "text_color": "textColor"},
|
|
93864
|
+
)
|
|
93865
|
+
class KPIActualValueConditionalFormattingProperty:
|
|
93866
|
+
def __init__(
|
|
93867
|
+
self,
|
|
93868
|
+
*,
|
|
93869
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.ConditionalFormattingIconProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93870
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.ConditionalFormattingColorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93871
|
+
) -> None:
|
|
93872
|
+
'''
|
|
93873
|
+
:param icon:
|
|
93874
|
+
:param text_color:
|
|
93875
|
+
|
|
93876
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpiactualvalueconditionalformatting.html
|
|
93877
|
+
:exampleMetadata: fixture=_generated
|
|
93878
|
+
|
|
93879
|
+
Example::
|
|
93880
|
+
|
|
93881
|
+
# The code below shows an example of how to instantiate this type.
|
|
93882
|
+
# The values are placeholders you should change.
|
|
93883
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
93884
|
+
|
|
93885
|
+
k_pIActual_value_conditional_formatting_property = quicksight.CfnDashboard.KPIActualValueConditionalFormattingProperty(
|
|
93886
|
+
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
93887
|
+
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
93888
|
+
expression="expression",
|
|
93889
|
+
icon_options=quicksight.CfnDashboard.ConditionalFormattingCustomIconOptionsProperty(
|
|
93890
|
+
icon="icon",
|
|
93891
|
+
unicode_icon="unicodeIcon"
|
|
93892
|
+
),
|
|
93893
|
+
|
|
93894
|
+
# the properties below are optional
|
|
93895
|
+
color="color",
|
|
93896
|
+
display_configuration=quicksight.CfnDashboard.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
93897
|
+
icon_display_option="iconDisplayOption"
|
|
93898
|
+
)
|
|
93899
|
+
),
|
|
93900
|
+
icon_set=quicksight.CfnDashboard.ConditionalFormattingIconSetProperty(
|
|
93901
|
+
expression="expression",
|
|
93902
|
+
|
|
93903
|
+
# the properties below are optional
|
|
93904
|
+
icon_set_type="iconSetType"
|
|
93905
|
+
)
|
|
93906
|
+
),
|
|
93907
|
+
text_color=quicksight.CfnDashboard.ConditionalFormattingColorProperty(
|
|
93908
|
+
gradient=quicksight.CfnDashboard.ConditionalFormattingGradientColorProperty(
|
|
93909
|
+
color=quicksight.CfnDashboard.GradientColorProperty(
|
|
93910
|
+
stops=[quicksight.CfnDashboard.GradientStopProperty(
|
|
93911
|
+
gradient_offset=123,
|
|
93912
|
+
|
|
93913
|
+
# the properties below are optional
|
|
93914
|
+
color="color",
|
|
93915
|
+
data_value=123
|
|
93916
|
+
)]
|
|
93917
|
+
),
|
|
93918
|
+
expression="expression"
|
|
93919
|
+
),
|
|
93920
|
+
solid=quicksight.CfnDashboard.ConditionalFormattingSolidColorProperty(
|
|
93921
|
+
expression="expression",
|
|
93922
|
+
|
|
93923
|
+
# the properties below are optional
|
|
93924
|
+
color="color"
|
|
93925
|
+
)
|
|
93926
|
+
)
|
|
93927
|
+
)
|
|
93928
|
+
'''
|
|
93929
|
+
if __debug__:
|
|
93930
|
+
type_hints = typing.get_type_hints(_typecheckingstub__919a286d11388cef9537fdc99786898889b85fc6f3875b56f0e6305dfa083ae9)
|
|
93931
|
+
check_type(argname="argument icon", value=icon, expected_type=type_hints["icon"])
|
|
93932
|
+
check_type(argname="argument text_color", value=text_color, expected_type=type_hints["text_color"])
|
|
93933
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
93934
|
+
if icon is not None:
|
|
93935
|
+
self._values["icon"] = icon
|
|
93936
|
+
if text_color is not None:
|
|
93937
|
+
self._values["text_color"] = text_color
|
|
93938
|
+
|
|
93939
|
+
@builtins.property
|
|
93940
|
+
def icon(
|
|
93941
|
+
self,
|
|
93942
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingIconProperty"]]:
|
|
93943
|
+
'''
|
|
93944
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpiactualvalueconditionalformatting.html#cfn-quicksight-dashboard-kpiactualvalueconditionalformatting-icon
|
|
93945
|
+
'''
|
|
93946
|
+
result = self._values.get("icon")
|
|
93947
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingIconProperty"]], result)
|
|
93948
|
+
|
|
93949
|
+
@builtins.property
|
|
93950
|
+
def text_color(
|
|
93951
|
+
self,
|
|
93952
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingColorProperty"]]:
|
|
93953
|
+
'''
|
|
93954
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpiactualvalueconditionalformatting.html#cfn-quicksight-dashboard-kpiactualvalueconditionalformatting-textcolor
|
|
93955
|
+
'''
|
|
93956
|
+
result = self._values.get("text_color")
|
|
93957
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingColorProperty"]], result)
|
|
93958
|
+
|
|
93959
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
93960
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
93961
|
+
|
|
93962
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
93963
|
+
return not (rhs == self)
|
|
93964
|
+
|
|
93965
|
+
def __repr__(self) -> str:
|
|
93966
|
+
return "KPIActualValueConditionalFormattingProperty(%s)" % ", ".join(
|
|
93967
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
93968
|
+
)
|
|
93969
|
+
|
|
93970
|
+
@jsii.data_type(
|
|
93971
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPIComparisonValueConditionalFormattingProperty",
|
|
93972
|
+
jsii_struct_bases=[],
|
|
93973
|
+
name_mapping={"icon": "icon", "text_color": "textColor"},
|
|
93974
|
+
)
|
|
93975
|
+
class KPIComparisonValueConditionalFormattingProperty:
|
|
93976
|
+
def __init__(
|
|
93977
|
+
self,
|
|
93978
|
+
*,
|
|
93979
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.ConditionalFormattingIconProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93980
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.ConditionalFormattingColorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93981
|
+
) -> None:
|
|
93982
|
+
'''
|
|
93983
|
+
:param icon:
|
|
93984
|
+
:param text_color:
|
|
93985
|
+
|
|
93986
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpicomparisonvalueconditionalformatting.html
|
|
93987
|
+
:exampleMetadata: fixture=_generated
|
|
93988
|
+
|
|
93989
|
+
Example::
|
|
93990
|
+
|
|
93991
|
+
# The code below shows an example of how to instantiate this type.
|
|
93992
|
+
# The values are placeholders you should change.
|
|
93993
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
93994
|
+
|
|
93995
|
+
k_pIComparison_value_conditional_formatting_property = quicksight.CfnDashboard.KPIComparisonValueConditionalFormattingProperty(
|
|
93996
|
+
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
93997
|
+
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
93998
|
+
expression="expression",
|
|
93999
|
+
icon_options=quicksight.CfnDashboard.ConditionalFormattingCustomIconOptionsProperty(
|
|
94000
|
+
icon="icon",
|
|
94001
|
+
unicode_icon="unicodeIcon"
|
|
94002
|
+
),
|
|
94003
|
+
|
|
94004
|
+
# the properties below are optional
|
|
94005
|
+
color="color",
|
|
94006
|
+
display_configuration=quicksight.CfnDashboard.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
94007
|
+
icon_display_option="iconDisplayOption"
|
|
94008
|
+
)
|
|
94009
|
+
),
|
|
94010
|
+
icon_set=quicksight.CfnDashboard.ConditionalFormattingIconSetProperty(
|
|
94011
|
+
expression="expression",
|
|
94012
|
+
|
|
94013
|
+
# the properties below are optional
|
|
94014
|
+
icon_set_type="iconSetType"
|
|
94015
|
+
)
|
|
94016
|
+
),
|
|
94017
|
+
text_color=quicksight.CfnDashboard.ConditionalFormattingColorProperty(
|
|
94018
|
+
gradient=quicksight.CfnDashboard.ConditionalFormattingGradientColorProperty(
|
|
94019
|
+
color=quicksight.CfnDashboard.GradientColorProperty(
|
|
94020
|
+
stops=[quicksight.CfnDashboard.GradientStopProperty(
|
|
94021
|
+
gradient_offset=123,
|
|
94022
|
+
|
|
94023
|
+
# the properties below are optional
|
|
94024
|
+
color="color",
|
|
94025
|
+
data_value=123
|
|
94026
|
+
)]
|
|
94027
|
+
),
|
|
94028
|
+
expression="expression"
|
|
94029
|
+
),
|
|
94030
|
+
solid=quicksight.CfnDashboard.ConditionalFormattingSolidColorProperty(
|
|
94031
|
+
expression="expression",
|
|
94032
|
+
|
|
94033
|
+
# the properties below are optional
|
|
94034
|
+
color="color"
|
|
94035
|
+
)
|
|
94036
|
+
)
|
|
94037
|
+
)
|
|
94038
|
+
'''
|
|
94039
|
+
if __debug__:
|
|
94040
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3c10a5ebe510e02cb10399ecb639ce46b626d86fb5843157da57238e274fc67f)
|
|
94041
|
+
check_type(argname="argument icon", value=icon, expected_type=type_hints["icon"])
|
|
94042
|
+
check_type(argname="argument text_color", value=text_color, expected_type=type_hints["text_color"])
|
|
94043
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
94044
|
+
if icon is not None:
|
|
94045
|
+
self._values["icon"] = icon
|
|
94046
|
+
if text_color is not None:
|
|
94047
|
+
self._values["text_color"] = text_color
|
|
94048
|
+
|
|
94049
|
+
@builtins.property
|
|
94050
|
+
def icon(
|
|
94051
|
+
self,
|
|
94052
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingIconProperty"]]:
|
|
94053
|
+
'''
|
|
94054
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpicomparisonvalueconditionalformatting.html#cfn-quicksight-dashboard-kpicomparisonvalueconditionalformatting-icon
|
|
94055
|
+
'''
|
|
94056
|
+
result = self._values.get("icon")
|
|
94057
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingIconProperty"]], result)
|
|
94058
|
+
|
|
94059
|
+
@builtins.property
|
|
94060
|
+
def text_color(
|
|
94061
|
+
self,
|
|
94062
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingColorProperty"]]:
|
|
94063
|
+
'''
|
|
94064
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpicomparisonvalueconditionalformatting.html#cfn-quicksight-dashboard-kpicomparisonvalueconditionalformatting-textcolor
|
|
94065
|
+
'''
|
|
94066
|
+
result = self._values.get("text_color")
|
|
94067
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.ConditionalFormattingColorProperty"]], result)
|
|
94068
|
+
|
|
94069
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
94070
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
94071
|
+
|
|
94072
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
94073
|
+
return not (rhs == self)
|
|
94074
|
+
|
|
94075
|
+
def __repr__(self) -> str:
|
|
94076
|
+
return "KPIComparisonValueConditionalFormattingProperty(%s)" % ", ".join(
|
|
94077
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
94078
|
+
)
|
|
94079
|
+
|
|
93103
94080
|
@jsii.data_type(
|
|
93104
94081
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPIConditionalFormattingOptionProperty",
|
|
93105
94082
|
jsii_struct_bases=[],
|
|
93106
|
-
name_mapping={
|
|
94083
|
+
name_mapping={
|
|
94084
|
+
"actual_value": "actualValue",
|
|
94085
|
+
"comparison_value": "comparisonValue",
|
|
94086
|
+
"primary_value": "primaryValue",
|
|
94087
|
+
"progress_bar": "progressBar",
|
|
94088
|
+
},
|
|
93107
94089
|
)
|
|
93108
94090
|
class KPIConditionalFormattingOptionProperty:
|
|
93109
94091
|
def __init__(
|
|
93110
94092
|
self,
|
|
93111
94093
|
*,
|
|
94094
|
+
actual_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPIActualValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
94095
|
+
comparison_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPIComparisonValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93112
94096
|
primary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPIPrimaryValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93113
94097
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPIProgressBarConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93114
94098
|
) -> None:
|
|
93115
94099
|
'''The conditional formatting options of a KPI visual.
|
|
93116
94100
|
|
|
94101
|
+
:param actual_value:
|
|
94102
|
+
:param comparison_value:
|
|
93117
94103
|
:param primary_value: The conditional formatting for the primary value of a KPI visual.
|
|
93118
94104
|
:param progress_bar: The conditional formatting for the progress bar of a KPI visual.
|
|
93119
94105
|
|
|
@@ -93127,6 +94113,92 @@ class CfnDashboard(
|
|
|
93127
94113
|
from aws_cdk import aws_quicksight as quicksight
|
|
93128
94114
|
|
|
93129
94115
|
k_pIConditional_formatting_option_property = quicksight.CfnDashboard.KPIConditionalFormattingOptionProperty(
|
|
94116
|
+
actual_value=quicksight.CfnDashboard.KPIActualValueConditionalFormattingProperty(
|
|
94117
|
+
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
94118
|
+
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
94119
|
+
expression="expression",
|
|
94120
|
+
icon_options=quicksight.CfnDashboard.ConditionalFormattingCustomIconOptionsProperty(
|
|
94121
|
+
icon="icon",
|
|
94122
|
+
unicode_icon="unicodeIcon"
|
|
94123
|
+
),
|
|
94124
|
+
|
|
94125
|
+
# the properties below are optional
|
|
94126
|
+
color="color",
|
|
94127
|
+
display_configuration=quicksight.CfnDashboard.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
94128
|
+
icon_display_option="iconDisplayOption"
|
|
94129
|
+
)
|
|
94130
|
+
),
|
|
94131
|
+
icon_set=quicksight.CfnDashboard.ConditionalFormattingIconSetProperty(
|
|
94132
|
+
expression="expression",
|
|
94133
|
+
|
|
94134
|
+
# the properties below are optional
|
|
94135
|
+
icon_set_type="iconSetType"
|
|
94136
|
+
)
|
|
94137
|
+
),
|
|
94138
|
+
text_color=quicksight.CfnDashboard.ConditionalFormattingColorProperty(
|
|
94139
|
+
gradient=quicksight.CfnDashboard.ConditionalFormattingGradientColorProperty(
|
|
94140
|
+
color=quicksight.CfnDashboard.GradientColorProperty(
|
|
94141
|
+
stops=[quicksight.CfnDashboard.GradientStopProperty(
|
|
94142
|
+
gradient_offset=123,
|
|
94143
|
+
|
|
94144
|
+
# the properties below are optional
|
|
94145
|
+
color="color",
|
|
94146
|
+
data_value=123
|
|
94147
|
+
)]
|
|
94148
|
+
),
|
|
94149
|
+
expression="expression"
|
|
94150
|
+
),
|
|
94151
|
+
solid=quicksight.CfnDashboard.ConditionalFormattingSolidColorProperty(
|
|
94152
|
+
expression="expression",
|
|
94153
|
+
|
|
94154
|
+
# the properties below are optional
|
|
94155
|
+
color="color"
|
|
94156
|
+
)
|
|
94157
|
+
)
|
|
94158
|
+
),
|
|
94159
|
+
comparison_value=quicksight.CfnDashboard.KPIComparisonValueConditionalFormattingProperty(
|
|
94160
|
+
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
94161
|
+
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
94162
|
+
expression="expression",
|
|
94163
|
+
icon_options=quicksight.CfnDashboard.ConditionalFormattingCustomIconOptionsProperty(
|
|
94164
|
+
icon="icon",
|
|
94165
|
+
unicode_icon="unicodeIcon"
|
|
94166
|
+
),
|
|
94167
|
+
|
|
94168
|
+
# the properties below are optional
|
|
94169
|
+
color="color",
|
|
94170
|
+
display_configuration=quicksight.CfnDashboard.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
94171
|
+
icon_display_option="iconDisplayOption"
|
|
94172
|
+
)
|
|
94173
|
+
),
|
|
94174
|
+
icon_set=quicksight.CfnDashboard.ConditionalFormattingIconSetProperty(
|
|
94175
|
+
expression="expression",
|
|
94176
|
+
|
|
94177
|
+
# the properties below are optional
|
|
94178
|
+
icon_set_type="iconSetType"
|
|
94179
|
+
)
|
|
94180
|
+
),
|
|
94181
|
+
text_color=quicksight.CfnDashboard.ConditionalFormattingColorProperty(
|
|
94182
|
+
gradient=quicksight.CfnDashboard.ConditionalFormattingGradientColorProperty(
|
|
94183
|
+
color=quicksight.CfnDashboard.GradientColorProperty(
|
|
94184
|
+
stops=[quicksight.CfnDashboard.GradientStopProperty(
|
|
94185
|
+
gradient_offset=123,
|
|
94186
|
+
|
|
94187
|
+
# the properties below are optional
|
|
94188
|
+
color="color",
|
|
94189
|
+
data_value=123
|
|
94190
|
+
)]
|
|
94191
|
+
),
|
|
94192
|
+
expression="expression"
|
|
94193
|
+
),
|
|
94194
|
+
solid=quicksight.CfnDashboard.ConditionalFormattingSolidColorProperty(
|
|
94195
|
+
expression="expression",
|
|
94196
|
+
|
|
94197
|
+
# the properties below are optional
|
|
94198
|
+
color="color"
|
|
94199
|
+
)
|
|
94200
|
+
)
|
|
94201
|
+
),
|
|
93130
94202
|
primary_value=quicksight.CfnDashboard.KPIPrimaryValueConditionalFormattingProperty(
|
|
93131
94203
|
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
93132
94204
|
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
@@ -93196,14 +94268,40 @@ class CfnDashboard(
|
|
|
93196
94268
|
'''
|
|
93197
94269
|
if __debug__:
|
|
93198
94270
|
type_hints = typing.get_type_hints(_typecheckingstub__054ca1d8afce6838bbd147fe7ef428987b8990694493d50a2c27acfa33440267)
|
|
94271
|
+
check_type(argname="argument actual_value", value=actual_value, expected_type=type_hints["actual_value"])
|
|
94272
|
+
check_type(argname="argument comparison_value", value=comparison_value, expected_type=type_hints["comparison_value"])
|
|
93199
94273
|
check_type(argname="argument primary_value", value=primary_value, expected_type=type_hints["primary_value"])
|
|
93200
94274
|
check_type(argname="argument progress_bar", value=progress_bar, expected_type=type_hints["progress_bar"])
|
|
93201
94275
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
94276
|
+
if actual_value is not None:
|
|
94277
|
+
self._values["actual_value"] = actual_value
|
|
94278
|
+
if comparison_value is not None:
|
|
94279
|
+
self._values["comparison_value"] = comparison_value
|
|
93202
94280
|
if primary_value is not None:
|
|
93203
94281
|
self._values["primary_value"] = primary_value
|
|
93204
94282
|
if progress_bar is not None:
|
|
93205
94283
|
self._values["progress_bar"] = progress_bar
|
|
93206
94284
|
|
|
94285
|
+
@builtins.property
|
|
94286
|
+
def actual_value(
|
|
94287
|
+
self,
|
|
94288
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIActualValueConditionalFormattingProperty"]]:
|
|
94289
|
+
'''
|
|
94290
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpiconditionalformattingoption.html#cfn-quicksight-dashboard-kpiconditionalformattingoption-actualvalue
|
|
94291
|
+
'''
|
|
94292
|
+
result = self._values.get("actual_value")
|
|
94293
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIActualValueConditionalFormattingProperty"]], result)
|
|
94294
|
+
|
|
94295
|
+
@builtins.property
|
|
94296
|
+
def comparison_value(
|
|
94297
|
+
self,
|
|
94298
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIComparisonValueConditionalFormattingProperty"]]:
|
|
94299
|
+
'''
|
|
94300
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpiconditionalformattingoption.html#cfn-quicksight-dashboard-kpiconditionalformattingoption-comparisonvalue
|
|
94301
|
+
'''
|
|
94302
|
+
result = self._values.get("comparison_value")
|
|
94303
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIComparisonValueConditionalFormattingProperty"]], result)
|
|
94304
|
+
|
|
93207
94305
|
@builtins.property
|
|
93208
94306
|
def primary_value(
|
|
93209
94307
|
self,
|
|
@@ -93265,6 +94363,92 @@ class CfnDashboard(
|
|
|
93265
94363
|
|
|
93266
94364
|
k_pIConditional_formatting_property = quicksight.CfnDashboard.KPIConditionalFormattingProperty(
|
|
93267
94365
|
conditional_formatting_options=[quicksight.CfnDashboard.KPIConditionalFormattingOptionProperty(
|
|
94366
|
+
actual_value=quicksight.CfnDashboard.KPIActualValueConditionalFormattingProperty(
|
|
94367
|
+
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
94368
|
+
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
94369
|
+
expression="expression",
|
|
94370
|
+
icon_options=quicksight.CfnDashboard.ConditionalFormattingCustomIconOptionsProperty(
|
|
94371
|
+
icon="icon",
|
|
94372
|
+
unicode_icon="unicodeIcon"
|
|
94373
|
+
),
|
|
94374
|
+
|
|
94375
|
+
# the properties below are optional
|
|
94376
|
+
color="color",
|
|
94377
|
+
display_configuration=quicksight.CfnDashboard.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
94378
|
+
icon_display_option="iconDisplayOption"
|
|
94379
|
+
)
|
|
94380
|
+
),
|
|
94381
|
+
icon_set=quicksight.CfnDashboard.ConditionalFormattingIconSetProperty(
|
|
94382
|
+
expression="expression",
|
|
94383
|
+
|
|
94384
|
+
# the properties below are optional
|
|
94385
|
+
icon_set_type="iconSetType"
|
|
94386
|
+
)
|
|
94387
|
+
),
|
|
94388
|
+
text_color=quicksight.CfnDashboard.ConditionalFormattingColorProperty(
|
|
94389
|
+
gradient=quicksight.CfnDashboard.ConditionalFormattingGradientColorProperty(
|
|
94390
|
+
color=quicksight.CfnDashboard.GradientColorProperty(
|
|
94391
|
+
stops=[quicksight.CfnDashboard.GradientStopProperty(
|
|
94392
|
+
gradient_offset=123,
|
|
94393
|
+
|
|
94394
|
+
# the properties below are optional
|
|
94395
|
+
color="color",
|
|
94396
|
+
data_value=123
|
|
94397
|
+
)]
|
|
94398
|
+
),
|
|
94399
|
+
expression="expression"
|
|
94400
|
+
),
|
|
94401
|
+
solid=quicksight.CfnDashboard.ConditionalFormattingSolidColorProperty(
|
|
94402
|
+
expression="expression",
|
|
94403
|
+
|
|
94404
|
+
# the properties below are optional
|
|
94405
|
+
color="color"
|
|
94406
|
+
)
|
|
94407
|
+
)
|
|
94408
|
+
),
|
|
94409
|
+
comparison_value=quicksight.CfnDashboard.KPIComparisonValueConditionalFormattingProperty(
|
|
94410
|
+
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
94411
|
+
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
94412
|
+
expression="expression",
|
|
94413
|
+
icon_options=quicksight.CfnDashboard.ConditionalFormattingCustomIconOptionsProperty(
|
|
94414
|
+
icon="icon",
|
|
94415
|
+
unicode_icon="unicodeIcon"
|
|
94416
|
+
),
|
|
94417
|
+
|
|
94418
|
+
# the properties below are optional
|
|
94419
|
+
color="color",
|
|
94420
|
+
display_configuration=quicksight.CfnDashboard.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
94421
|
+
icon_display_option="iconDisplayOption"
|
|
94422
|
+
)
|
|
94423
|
+
),
|
|
94424
|
+
icon_set=quicksight.CfnDashboard.ConditionalFormattingIconSetProperty(
|
|
94425
|
+
expression="expression",
|
|
94426
|
+
|
|
94427
|
+
# the properties below are optional
|
|
94428
|
+
icon_set_type="iconSetType"
|
|
94429
|
+
)
|
|
94430
|
+
),
|
|
94431
|
+
text_color=quicksight.CfnDashboard.ConditionalFormattingColorProperty(
|
|
94432
|
+
gradient=quicksight.CfnDashboard.ConditionalFormattingGradientColorProperty(
|
|
94433
|
+
color=quicksight.CfnDashboard.GradientColorProperty(
|
|
94434
|
+
stops=[quicksight.CfnDashboard.GradientStopProperty(
|
|
94435
|
+
gradient_offset=123,
|
|
94436
|
+
|
|
94437
|
+
# the properties below are optional
|
|
94438
|
+
color="color",
|
|
94439
|
+
data_value=123
|
|
94440
|
+
)]
|
|
94441
|
+
),
|
|
94442
|
+
expression="expression"
|
|
94443
|
+
),
|
|
94444
|
+
solid=quicksight.CfnDashboard.ConditionalFormattingSolidColorProperty(
|
|
94445
|
+
expression="expression",
|
|
94446
|
+
|
|
94447
|
+
# the properties below are optional
|
|
94448
|
+
color="color"
|
|
94449
|
+
)
|
|
94450
|
+
)
|
|
94451
|
+
),
|
|
93268
94452
|
primary_value=quicksight.CfnDashboard.KPIPrimaryValueConditionalFormattingProperty(
|
|
93269
94453
|
icon=quicksight.CfnDashboard.ConditionalFormattingIconProperty(
|
|
93270
94454
|
custom_condition=quicksight.CfnDashboard.ConditionalFormattingCustomIconConditionProperty(
|
|
@@ -93546,7 +94730,9 @@ class CfnDashboard(
|
|
|
93546
94730
|
"progress_bar": "progressBar",
|
|
93547
94731
|
"secondary_value": "secondaryValue",
|
|
93548
94732
|
"secondary_value_font_configuration": "secondaryValueFontConfiguration",
|
|
94733
|
+
"sparkline": "sparkline",
|
|
93549
94734
|
"trend_arrows": "trendArrows",
|
|
94735
|
+
"visual_layout_options": "visualLayoutOptions",
|
|
93550
94736
|
},
|
|
93551
94737
|
)
|
|
93552
94738
|
class KPIOptionsProperty:
|
|
@@ -93559,7 +94745,9 @@ class CfnDashboard(
|
|
|
93559
94745
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.ProgressBarOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93560
94746
|
secondary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.SecondaryValueOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93561
94747
|
secondary_value_font_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.FontConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
94748
|
+
sparkline: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPISparklineOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93562
94749
|
trend_arrows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.TrendArrowOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
94750
|
+
visual_layout_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPIVisualLayoutOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
93563
94751
|
) -> None:
|
|
93564
94752
|
'''The options that determine the presentation of a KPI visual.
|
|
93565
94753
|
|
|
@@ -93569,7 +94757,9 @@ class CfnDashboard(
|
|
|
93569
94757
|
:param progress_bar: The options that determine the presentation of the progress bar of a KPI visual.
|
|
93570
94758
|
:param secondary_value: The options that determine the presentation of the secondary value of a KPI visual.
|
|
93571
94759
|
:param secondary_value_font_configuration: The options that determine the secondary value font configuration.
|
|
94760
|
+
:param sparkline:
|
|
93572
94761
|
:param trend_arrows: The options that determine the presentation of trend arrows in a KPI visual.
|
|
94762
|
+
:param visual_layout_options:
|
|
93573
94763
|
|
|
93574
94764
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpioptions.html
|
|
93575
94765
|
:exampleMetadata: fixture=_generated
|
|
@@ -93656,8 +94846,21 @@ class CfnDashboard(
|
|
|
93656
94846
|
name="name"
|
|
93657
94847
|
)
|
|
93658
94848
|
),
|
|
94849
|
+
sparkline=quicksight.CfnDashboard.KPISparklineOptionsProperty(
|
|
94850
|
+
type="type",
|
|
94851
|
+
|
|
94852
|
+
# the properties below are optional
|
|
94853
|
+
color="color",
|
|
94854
|
+
tooltip_visibility="tooltipVisibility",
|
|
94855
|
+
visibility="visibility"
|
|
94856
|
+
),
|
|
93659
94857
|
trend_arrows=quicksight.CfnDashboard.TrendArrowOptionsProperty(
|
|
93660
94858
|
visibility="visibility"
|
|
94859
|
+
),
|
|
94860
|
+
visual_layout_options=quicksight.CfnDashboard.KPIVisualLayoutOptionsProperty(
|
|
94861
|
+
standard_layout=quicksight.CfnDashboard.KPIVisualStandardLayoutProperty(
|
|
94862
|
+
type="type"
|
|
94863
|
+
)
|
|
93661
94864
|
)
|
|
93662
94865
|
)
|
|
93663
94866
|
'''
|
|
@@ -93669,7 +94872,9 @@ class CfnDashboard(
|
|
|
93669
94872
|
check_type(argname="argument progress_bar", value=progress_bar, expected_type=type_hints["progress_bar"])
|
|
93670
94873
|
check_type(argname="argument secondary_value", value=secondary_value, expected_type=type_hints["secondary_value"])
|
|
93671
94874
|
check_type(argname="argument secondary_value_font_configuration", value=secondary_value_font_configuration, expected_type=type_hints["secondary_value_font_configuration"])
|
|
94875
|
+
check_type(argname="argument sparkline", value=sparkline, expected_type=type_hints["sparkline"])
|
|
93672
94876
|
check_type(argname="argument trend_arrows", value=trend_arrows, expected_type=type_hints["trend_arrows"])
|
|
94877
|
+
check_type(argname="argument visual_layout_options", value=visual_layout_options, expected_type=type_hints["visual_layout_options"])
|
|
93673
94878
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
93674
94879
|
if comparison is not None:
|
|
93675
94880
|
self._values["comparison"] = comparison
|
|
@@ -93683,8 +94888,12 @@ class CfnDashboard(
|
|
|
93683
94888
|
self._values["secondary_value"] = secondary_value
|
|
93684
94889
|
if secondary_value_font_configuration is not None:
|
|
93685
94890
|
self._values["secondary_value_font_configuration"] = secondary_value_font_configuration
|
|
94891
|
+
if sparkline is not None:
|
|
94892
|
+
self._values["sparkline"] = sparkline
|
|
93686
94893
|
if trend_arrows is not None:
|
|
93687
94894
|
self._values["trend_arrows"] = trend_arrows
|
|
94895
|
+
if visual_layout_options is not None:
|
|
94896
|
+
self._values["visual_layout_options"] = visual_layout_options
|
|
93688
94897
|
|
|
93689
94898
|
@builtins.property
|
|
93690
94899
|
def comparison(
|
|
@@ -93750,6 +94959,16 @@ class CfnDashboard(
|
|
|
93750
94959
|
result = self._values.get("secondary_value_font_configuration")
|
|
93751
94960
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.FontConfigurationProperty"]], result)
|
|
93752
94961
|
|
|
94962
|
+
@builtins.property
|
|
94963
|
+
def sparkline(
|
|
94964
|
+
self,
|
|
94965
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPISparklineOptionsProperty"]]:
|
|
94966
|
+
'''
|
|
94967
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpioptions.html#cfn-quicksight-dashboard-kpioptions-sparkline
|
|
94968
|
+
'''
|
|
94969
|
+
result = self._values.get("sparkline")
|
|
94970
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPISparklineOptionsProperty"]], result)
|
|
94971
|
+
|
|
93753
94972
|
@builtins.property
|
|
93754
94973
|
def trend_arrows(
|
|
93755
94974
|
self,
|
|
@@ -93761,6 +94980,16 @@ class CfnDashboard(
|
|
|
93761
94980
|
result = self._values.get("trend_arrows")
|
|
93762
94981
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TrendArrowOptionsProperty"]], result)
|
|
93763
94982
|
|
|
94983
|
+
@builtins.property
|
|
94984
|
+
def visual_layout_options(
|
|
94985
|
+
self,
|
|
94986
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIVisualLayoutOptionsProperty"]]:
|
|
94987
|
+
'''
|
|
94988
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpioptions.html#cfn-quicksight-dashboard-kpioptions-visuallayoutoptions
|
|
94989
|
+
'''
|
|
94990
|
+
result = self._values.get("visual_layout_options")
|
|
94991
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIVisualLayoutOptionsProperty"]], result)
|
|
94992
|
+
|
|
93764
94993
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
93765
94994
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
93766
94995
|
|
|
@@ -94046,6 +95275,166 @@ class CfnDashboard(
|
|
|
94046
95275
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
94047
95276
|
)
|
|
94048
95277
|
|
|
95278
|
+
@jsii.data_type(
|
|
95279
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPISparklineOptionsProperty",
|
|
95280
|
+
jsii_struct_bases=[],
|
|
95281
|
+
name_mapping={
|
|
95282
|
+
"type": "type",
|
|
95283
|
+
"color": "color",
|
|
95284
|
+
"tooltip_visibility": "tooltipVisibility",
|
|
95285
|
+
"visibility": "visibility",
|
|
95286
|
+
},
|
|
95287
|
+
)
|
|
95288
|
+
class KPISparklineOptionsProperty:
|
|
95289
|
+
def __init__(
|
|
95290
|
+
self,
|
|
95291
|
+
*,
|
|
95292
|
+
type: builtins.str,
|
|
95293
|
+
color: typing.Optional[builtins.str] = None,
|
|
95294
|
+
tooltip_visibility: typing.Optional[builtins.str] = None,
|
|
95295
|
+
visibility: typing.Optional[builtins.str] = None,
|
|
95296
|
+
) -> None:
|
|
95297
|
+
'''
|
|
95298
|
+
:param type:
|
|
95299
|
+
:param color:
|
|
95300
|
+
:param tooltip_visibility:
|
|
95301
|
+
:param visibility:
|
|
95302
|
+
|
|
95303
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpisparklineoptions.html
|
|
95304
|
+
:exampleMetadata: fixture=_generated
|
|
95305
|
+
|
|
95306
|
+
Example::
|
|
95307
|
+
|
|
95308
|
+
# The code below shows an example of how to instantiate this type.
|
|
95309
|
+
# The values are placeholders you should change.
|
|
95310
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
95311
|
+
|
|
95312
|
+
k_pISparkline_options_property = quicksight.CfnDashboard.KPISparklineOptionsProperty(
|
|
95313
|
+
type="type",
|
|
95314
|
+
|
|
95315
|
+
# the properties below are optional
|
|
95316
|
+
color="color",
|
|
95317
|
+
tooltip_visibility="tooltipVisibility",
|
|
95318
|
+
visibility="visibility"
|
|
95319
|
+
)
|
|
95320
|
+
'''
|
|
95321
|
+
if __debug__:
|
|
95322
|
+
type_hints = typing.get_type_hints(_typecheckingstub__663aba93d0b6c71a0c5ce59ead14a6dc298172e3c9f326b0ffda40298b8980bf)
|
|
95323
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
95324
|
+
check_type(argname="argument color", value=color, expected_type=type_hints["color"])
|
|
95325
|
+
check_type(argname="argument tooltip_visibility", value=tooltip_visibility, expected_type=type_hints["tooltip_visibility"])
|
|
95326
|
+
check_type(argname="argument visibility", value=visibility, expected_type=type_hints["visibility"])
|
|
95327
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
95328
|
+
"type": type,
|
|
95329
|
+
}
|
|
95330
|
+
if color is not None:
|
|
95331
|
+
self._values["color"] = color
|
|
95332
|
+
if tooltip_visibility is not None:
|
|
95333
|
+
self._values["tooltip_visibility"] = tooltip_visibility
|
|
95334
|
+
if visibility is not None:
|
|
95335
|
+
self._values["visibility"] = visibility
|
|
95336
|
+
|
|
95337
|
+
@builtins.property
|
|
95338
|
+
def type(self) -> builtins.str:
|
|
95339
|
+
'''
|
|
95340
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpisparklineoptions.html#cfn-quicksight-dashboard-kpisparklineoptions-type
|
|
95341
|
+
'''
|
|
95342
|
+
result = self._values.get("type")
|
|
95343
|
+
assert result is not None, "Required property 'type' is missing"
|
|
95344
|
+
return typing.cast(builtins.str, result)
|
|
95345
|
+
|
|
95346
|
+
@builtins.property
|
|
95347
|
+
def color(self) -> typing.Optional[builtins.str]:
|
|
95348
|
+
'''
|
|
95349
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpisparklineoptions.html#cfn-quicksight-dashboard-kpisparklineoptions-color
|
|
95350
|
+
'''
|
|
95351
|
+
result = self._values.get("color")
|
|
95352
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
95353
|
+
|
|
95354
|
+
@builtins.property
|
|
95355
|
+
def tooltip_visibility(self) -> typing.Optional[builtins.str]:
|
|
95356
|
+
'''
|
|
95357
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpisparklineoptions.html#cfn-quicksight-dashboard-kpisparklineoptions-tooltipvisibility
|
|
95358
|
+
'''
|
|
95359
|
+
result = self._values.get("tooltip_visibility")
|
|
95360
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
95361
|
+
|
|
95362
|
+
@builtins.property
|
|
95363
|
+
def visibility(self) -> typing.Optional[builtins.str]:
|
|
95364
|
+
'''
|
|
95365
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpisparklineoptions.html#cfn-quicksight-dashboard-kpisparklineoptions-visibility
|
|
95366
|
+
'''
|
|
95367
|
+
result = self._values.get("visibility")
|
|
95368
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
95369
|
+
|
|
95370
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
95371
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
95372
|
+
|
|
95373
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
95374
|
+
return not (rhs == self)
|
|
95375
|
+
|
|
95376
|
+
def __repr__(self) -> str:
|
|
95377
|
+
return "KPISparklineOptionsProperty(%s)" % ", ".join(
|
|
95378
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
95379
|
+
)
|
|
95380
|
+
|
|
95381
|
+
@jsii.data_type(
|
|
95382
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPIVisualLayoutOptionsProperty",
|
|
95383
|
+
jsii_struct_bases=[],
|
|
95384
|
+
name_mapping={"standard_layout": "standardLayout"},
|
|
95385
|
+
)
|
|
95386
|
+
class KPIVisualLayoutOptionsProperty:
|
|
95387
|
+
def __init__(
|
|
95388
|
+
self,
|
|
95389
|
+
*,
|
|
95390
|
+
standard_layout: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.KPIVisualStandardLayoutProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
95391
|
+
) -> None:
|
|
95392
|
+
'''
|
|
95393
|
+
:param standard_layout:
|
|
95394
|
+
|
|
95395
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpivisuallayoutoptions.html
|
|
95396
|
+
:exampleMetadata: fixture=_generated
|
|
95397
|
+
|
|
95398
|
+
Example::
|
|
95399
|
+
|
|
95400
|
+
# The code below shows an example of how to instantiate this type.
|
|
95401
|
+
# The values are placeholders you should change.
|
|
95402
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
95403
|
+
|
|
95404
|
+
k_pIVisual_layout_options_property = quicksight.CfnDashboard.KPIVisualLayoutOptionsProperty(
|
|
95405
|
+
standard_layout=quicksight.CfnDashboard.KPIVisualStandardLayoutProperty(
|
|
95406
|
+
type="type"
|
|
95407
|
+
)
|
|
95408
|
+
)
|
|
95409
|
+
'''
|
|
95410
|
+
if __debug__:
|
|
95411
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b3863a82f0561bdb9b66f36a181b4bf3558c5e1d26ac7d046102aa3cf6a4b22a)
|
|
95412
|
+
check_type(argname="argument standard_layout", value=standard_layout, expected_type=type_hints["standard_layout"])
|
|
95413
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
95414
|
+
if standard_layout is not None:
|
|
95415
|
+
self._values["standard_layout"] = standard_layout
|
|
95416
|
+
|
|
95417
|
+
@builtins.property
|
|
95418
|
+
def standard_layout(
|
|
95419
|
+
self,
|
|
95420
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIVisualStandardLayoutProperty"]]:
|
|
95421
|
+
'''
|
|
95422
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpivisuallayoutoptions.html#cfn-quicksight-dashboard-kpivisuallayoutoptions-standardlayout
|
|
95423
|
+
'''
|
|
95424
|
+
result = self._values.get("standard_layout")
|
|
95425
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.KPIVisualStandardLayoutProperty"]], result)
|
|
95426
|
+
|
|
95427
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
95428
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
95429
|
+
|
|
95430
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
95431
|
+
return not (rhs == self)
|
|
95432
|
+
|
|
95433
|
+
def __repr__(self) -> str:
|
|
95434
|
+
return "KPIVisualLayoutOptionsProperty(%s)" % ", ".join(
|
|
95435
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
95436
|
+
)
|
|
95437
|
+
|
|
94049
95438
|
@jsii.data_type(
|
|
94050
95439
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPIVisualProperty",
|
|
94051
95440
|
jsii_struct_bases=[],
|
|
@@ -94204,6 +95593,56 @@ class CfnDashboard(
|
|
|
94204
95593
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
94205
95594
|
)
|
|
94206
95595
|
|
|
95596
|
+
@jsii.data_type(
|
|
95597
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.KPIVisualStandardLayoutProperty",
|
|
95598
|
+
jsii_struct_bases=[],
|
|
95599
|
+
name_mapping={"type": "type"},
|
|
95600
|
+
)
|
|
95601
|
+
class KPIVisualStandardLayoutProperty:
|
|
95602
|
+
def __init__(self, *, type: builtins.str) -> None:
|
|
95603
|
+
'''
|
|
95604
|
+
:param type:
|
|
95605
|
+
|
|
95606
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpivisualstandardlayout.html
|
|
95607
|
+
:exampleMetadata: fixture=_generated
|
|
95608
|
+
|
|
95609
|
+
Example::
|
|
95610
|
+
|
|
95611
|
+
# The code below shows an example of how to instantiate this type.
|
|
95612
|
+
# The values are placeholders you should change.
|
|
95613
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
95614
|
+
|
|
95615
|
+
k_pIVisual_standard_layout_property = quicksight.CfnDashboard.KPIVisualStandardLayoutProperty(
|
|
95616
|
+
type="type"
|
|
95617
|
+
)
|
|
95618
|
+
'''
|
|
95619
|
+
if __debug__:
|
|
95620
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f172711b23d093cf923c9ef61a740b893f564403053d124223b83bab08c6723f)
|
|
95621
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
95622
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
95623
|
+
"type": type,
|
|
95624
|
+
}
|
|
95625
|
+
|
|
95626
|
+
@builtins.property
|
|
95627
|
+
def type(self) -> builtins.str:
|
|
95628
|
+
'''
|
|
95629
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-kpivisualstandardlayout.html#cfn-quicksight-dashboard-kpivisualstandardlayout-type
|
|
95630
|
+
'''
|
|
95631
|
+
result = self._values.get("type")
|
|
95632
|
+
assert result is not None, "Required property 'type' is missing"
|
|
95633
|
+
return typing.cast(builtins.str, result)
|
|
95634
|
+
|
|
95635
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
95636
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
95637
|
+
|
|
95638
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
95639
|
+
return not (rhs == self)
|
|
95640
|
+
|
|
95641
|
+
def __repr__(self) -> str:
|
|
95642
|
+
return "KPIVisualStandardLayoutProperty(%s)" % ", ".join(
|
|
95643
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
95644
|
+
)
|
|
95645
|
+
|
|
94207
95646
|
@jsii.data_type(
|
|
94208
95647
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.LabelOptionsProperty",
|
|
94209
95648
|
jsii_struct_bases=[],
|
|
@@ -96505,7 +97944,7 @@ class CfnDashboard(
|
|
|
96505
97944
|
) -> None:
|
|
96506
97945
|
'''The display options of a control.
|
|
96507
97946
|
|
|
96508
|
-
:param info_icon_label_options:
|
|
97947
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
96509
97948
|
:param search_options: The configuration of the search options in a list control.
|
|
96510
97949
|
:param select_all_options: The configuration of the ``Select all`` options in a list control.
|
|
96511
97950
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
@@ -96567,7 +98006,8 @@ class CfnDashboard(
|
|
|
96567
98006
|
def info_icon_label_options(
|
|
96568
98007
|
self,
|
|
96569
98008
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
96570
|
-
'''
|
|
98009
|
+
'''The configuration of info icon label options.
|
|
98010
|
+
|
|
96571
98011
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-listcontroldisplayoptions.html#cfn-quicksight-dashboard-listcontroldisplayoptions-infoiconlabeloptions
|
|
96572
98012
|
'''
|
|
96573
98013
|
result = self._values.get("info_icon_label_options")
|
|
@@ -105799,13 +107239,13 @@ class CfnDashboard(
|
|
|
105799
107239
|
:param collapsed_row_dimensions_visibility: The visibility setting of a pivot table's collapsed row dimension fields. If the value of this structure is ``HIDDEN`` , all collapsed columns in a pivot table are automatically hidden. The default value is ``VISIBLE`` .
|
|
105800
107240
|
:param column_header_style: The table cell style of the column header.
|
|
105801
107241
|
:param column_names_visibility: The visibility of the column names.
|
|
105802
|
-
:param default_cell_width:
|
|
107242
|
+
:param default_cell_width: The default cell width of the pivot table.
|
|
105803
107243
|
:param metric_placement: The metric placement (row, column) options.
|
|
105804
107244
|
:param row_alternate_color_options: The row alternate color options (widget status, row alternate colors).
|
|
105805
107245
|
:param row_field_names_style: The table cell style of row field names.
|
|
105806
107246
|
:param row_header_style: The table cell style of the row headers.
|
|
105807
|
-
:param rows_label_options:
|
|
105808
|
-
:param rows_layout:
|
|
107247
|
+
:param rows_label_options: The options for the label that is located above the row headers. This option is only applicable when ``RowsLayout`` is set to ``HIERARCHY`` .
|
|
107248
|
+
:param rows_layout: The layout for the row dimension headers of a pivot table. Choose one of the following options. - ``TABULAR`` : (Default) Each row field is displayed in a separate column. - ``HIERARCHY`` : All row fields are displayed in a single column. Indentation is used to differentiate row headers of different fields.
|
|
105809
107249
|
:param single_metric_visibility: The visibility of the single metric options.
|
|
105810
107250
|
:param toggle_buttons_visibility: Determines the visibility of the pivot table.
|
|
105811
107251
|
|
|
@@ -106156,7 +107596,7 @@ class CfnDashboard(
|
|
|
106156
107596
|
|
|
106157
107597
|
@builtins.property
|
|
106158
107598
|
def default_cell_width(self) -> typing.Optional[builtins.str]:
|
|
106159
|
-
'''
|
|
107599
|
+
'''The default cell width of the pivot table.
|
|
106160
107600
|
|
|
106161
107601
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottableoptions.html#cfn-quicksight-dashboard-pivottableoptions-defaultcellwidth
|
|
106162
107602
|
'''
|
|
@@ -106209,7 +107649,10 @@ class CfnDashboard(
|
|
|
106209
107649
|
def rows_label_options(
|
|
106210
107650
|
self,
|
|
106211
107651
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.PivotTableRowsLabelOptionsProperty"]]:
|
|
106212
|
-
'''
|
|
107652
|
+
'''The options for the label that is located above the row headers.
|
|
107653
|
+
|
|
107654
|
+
This option is only applicable when ``RowsLayout`` is set to ``HIERARCHY`` .
|
|
107655
|
+
|
|
106213
107656
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottableoptions.html#cfn-quicksight-dashboard-pivottableoptions-rowslabeloptions
|
|
106214
107657
|
'''
|
|
106215
107658
|
result = self._values.get("rows_label_options")
|
|
@@ -106217,7 +107660,11 @@ class CfnDashboard(
|
|
|
106217
107660
|
|
|
106218
107661
|
@builtins.property
|
|
106219
107662
|
def rows_layout(self) -> typing.Optional[builtins.str]:
|
|
106220
|
-
'''
|
|
107663
|
+
'''The layout for the row dimension headers of a pivot table. Choose one of the following options.
|
|
107664
|
+
|
|
107665
|
+
- ``TABULAR`` : (Default) Each row field is displayed in a separate column.
|
|
107666
|
+
- ``HIERARCHY`` : All row fields are displayed in a single column. Indentation is used to differentiate row headers of different fields.
|
|
107667
|
+
|
|
106221
107668
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottableoptions.html#cfn-quicksight-dashboard-pivottableoptions-rowslayout
|
|
106222
107669
|
'''
|
|
106223
107670
|
result = self._values.get("rows_layout")
|
|
@@ -106337,9 +107784,12 @@ class CfnDashboard(
|
|
|
106337
107784
|
custom_label: typing.Optional[builtins.str] = None,
|
|
106338
107785
|
visibility: typing.Optional[builtins.str] = None,
|
|
106339
107786
|
) -> None:
|
|
106340
|
-
'''
|
|
106341
|
-
|
|
106342
|
-
|
|
107787
|
+
'''The options for the label thta is located above the row headers.
|
|
107788
|
+
|
|
107789
|
+
This option is only applicable when ``RowsLayout`` is set to ``HIERARCHY`` .
|
|
107790
|
+
|
|
107791
|
+
:param custom_label: The custom label string for the rows label.
|
|
107792
|
+
:param visibility: The visibility of the rows label.
|
|
106343
107793
|
|
|
106344
107794
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablerowslabeloptions.html
|
|
106345
107795
|
:exampleMetadata: fixture=_generated
|
|
@@ -106367,7 +107817,8 @@ class CfnDashboard(
|
|
|
106367
107817
|
|
|
106368
107818
|
@builtins.property
|
|
106369
107819
|
def custom_label(self) -> typing.Optional[builtins.str]:
|
|
106370
|
-
'''
|
|
107820
|
+
'''The custom label string for the rows label.
|
|
107821
|
+
|
|
106371
107822
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablerowslabeloptions.html#cfn-quicksight-dashboard-pivottablerowslabeloptions-customlabel
|
|
106372
107823
|
'''
|
|
106373
107824
|
result = self._values.get("custom_label")
|
|
@@ -106375,7 +107826,8 @@ class CfnDashboard(
|
|
|
106375
107826
|
|
|
106376
107827
|
@builtins.property
|
|
106377
107828
|
def visibility(self) -> typing.Optional[builtins.str]:
|
|
106378
|
-
'''
|
|
107829
|
+
'''The visibility of the rows label.
|
|
107830
|
+
|
|
106379
107831
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-pivottablerowslabeloptions.html#cfn-quicksight-dashboard-pivottablerowslabeloptions-visibility
|
|
106380
107832
|
'''
|
|
106381
107833
|
result = self._values.get("visibility")
|
|
@@ -109304,7 +110756,7 @@ class CfnDashboard(
|
|
|
109304
110756
|
'''The display options of a control.
|
|
109305
110757
|
|
|
109306
110758
|
:param date_time_format: Customize how dates are formatted in controls.
|
|
109307
|
-
:param info_icon_label_options:
|
|
110759
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
109308
110760
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
109309
110761
|
|
|
109310
110762
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-relativedatetimecontroldisplayoptions.html
|
|
@@ -109365,7 +110817,8 @@ class CfnDashboard(
|
|
|
109365
110817
|
def info_icon_label_options(
|
|
109366
110818
|
self,
|
|
109367
110819
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
109368
|
-
'''
|
|
110820
|
+
'''The configuration of info icon label options.
|
|
110821
|
+
|
|
109369
110822
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-relativedatetimecontroldisplayoptions.html#cfn-quicksight-dashboard-relativedatetimecontroldisplayoptions-infoiconlabeloptions
|
|
109370
110823
|
'''
|
|
109371
110824
|
result = self._values.get("info_icon_label_options")
|
|
@@ -109817,7 +111270,7 @@ class CfnDashboard(
|
|
|
109817
111270
|
|
|
109818
111271
|
:param row_alternate_colors: Determines the list of row alternate colors.
|
|
109819
111272
|
:param status: Determines the widget status.
|
|
109820
|
-
:param use_primary_background_color:
|
|
111273
|
+
:param use_primary_background_color: The primary background color options for alternate rows.
|
|
109821
111274
|
|
|
109822
111275
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-rowalternatecoloroptions.html
|
|
109823
111276
|
:exampleMetadata: fixture=_generated
|
|
@@ -109867,7 +111320,8 @@ class CfnDashboard(
|
|
|
109867
111320
|
|
|
109868
111321
|
@builtins.property
|
|
109869
111322
|
def use_primary_background_color(self) -> typing.Optional[builtins.str]:
|
|
109870
|
-
'''
|
|
111323
|
+
'''The primary background color options for alternate rows.
|
|
111324
|
+
|
|
109871
111325
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-rowalternatecoloroptions.html#cfn-quicksight-dashboard-rowalternatecoloroptions-useprimarybackgroundcolor
|
|
109872
111326
|
'''
|
|
109873
111327
|
result = self._values.get("use_primary_background_color")
|
|
@@ -112323,9 +113777,10 @@ class CfnDashboard(
|
|
|
112323
113777
|
info_icon_text: typing.Optional[builtins.str] = None,
|
|
112324
113778
|
visibility: typing.Optional[builtins.str] = None,
|
|
112325
113779
|
) -> None:
|
|
112326
|
-
'''
|
|
112327
|
-
|
|
112328
|
-
:param
|
|
113780
|
+
'''A control to display info icons for filters and parameters.
|
|
113781
|
+
|
|
113782
|
+
:param info_icon_text: The text content of info icon.
|
|
113783
|
+
:param visibility: The visibility configuration of info icon label options.
|
|
112329
113784
|
|
|
112330
113785
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetcontrolinfoiconlabeloptions.html
|
|
112331
113786
|
:exampleMetadata: fixture=_generated
|
|
@@ -112353,7 +113808,8 @@ class CfnDashboard(
|
|
|
112353
113808
|
|
|
112354
113809
|
@builtins.property
|
|
112355
113810
|
def info_icon_text(self) -> typing.Optional[builtins.str]:
|
|
112356
|
-
'''
|
|
113811
|
+
'''The text content of info icon.
|
|
113812
|
+
|
|
112357
113813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetcontrolinfoiconlabeloptions.html#cfn-quicksight-dashboard-sheetcontrolinfoiconlabeloptions-infoicontext
|
|
112358
113814
|
'''
|
|
112359
113815
|
result = self._values.get("info_icon_text")
|
|
@@ -112361,7 +113817,8 @@ class CfnDashboard(
|
|
|
112361
113817
|
|
|
112362
113818
|
@builtins.property
|
|
112363
113819
|
def visibility(self) -> typing.Optional[builtins.str]:
|
|
112364
|
-
'''
|
|
113820
|
+
'''The visibility configuration of info icon label options.
|
|
113821
|
+
|
|
112365
113822
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheetcontrolinfoiconlabeloptions.html#cfn-quicksight-dashboard-sheetcontrolinfoiconlabeloptions-visibility
|
|
112366
113823
|
'''
|
|
112367
113824
|
result = self._values.get("visibility")
|
|
@@ -113394,7 +114851,7 @@ class CfnDashboard(
|
|
|
113394
114851
|
) -> None:
|
|
113395
114852
|
'''The display options of a control.
|
|
113396
114853
|
|
|
113397
|
-
:param info_icon_label_options:
|
|
114854
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
113398
114855
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
113399
114856
|
|
|
113400
114857
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-slidercontroldisplayoptions.html
|
|
@@ -113442,7 +114899,8 @@ class CfnDashboard(
|
|
|
113442
114899
|
def info_icon_label_options(
|
|
113443
114900
|
self,
|
|
113444
114901
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
113445
|
-
'''
|
|
114902
|
+
'''The configuration of info icon label options.
|
|
114903
|
+
|
|
113446
114904
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-slidercontroldisplayoptions.html#cfn-quicksight-dashboard-slidercontroldisplayoptions-infoiconlabeloptions
|
|
113447
114905
|
'''
|
|
113448
114906
|
result = self._values.get("info_icon_label_options")
|
|
@@ -113482,9 +114940,10 @@ class CfnDashboard(
|
|
|
113482
114940
|
placement: typing.Optional[builtins.str] = None,
|
|
113483
114941
|
scale: typing.Optional[builtins.str] = None,
|
|
113484
114942
|
) -> None:
|
|
113485
|
-
'''
|
|
113486
|
-
|
|
113487
|
-
:param
|
|
114943
|
+
'''Configures the properties of a chart's axes that are used by small multiples panels.
|
|
114944
|
+
|
|
114945
|
+
:param placement: Defines the placement of the axis. By default, axes are rendered ``OUTSIDE`` of the panels. Axes with ``INDEPENDENT`` scale are rendered ``INSIDE`` the panels.
|
|
114946
|
+
:param scale: Determines whether scale of the axes are shared or independent. The default value is ``SHARED`` .
|
|
113488
114947
|
|
|
113489
114948
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-smallmultiplesaxisproperties.html
|
|
113490
114949
|
:exampleMetadata: fixture=_generated
|
|
@@ -113512,7 +114971,10 @@ class CfnDashboard(
|
|
|
113512
114971
|
|
|
113513
114972
|
@builtins.property
|
|
113514
114973
|
def placement(self) -> typing.Optional[builtins.str]:
|
|
113515
|
-
'''
|
|
114974
|
+
'''Defines the placement of the axis.
|
|
114975
|
+
|
|
114976
|
+
By default, axes are rendered ``OUTSIDE`` of the panels. Axes with ``INDEPENDENT`` scale are rendered ``INSIDE`` the panels.
|
|
114977
|
+
|
|
113516
114978
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-smallmultiplesaxisproperties.html#cfn-quicksight-dashboard-smallmultiplesaxisproperties-placement
|
|
113517
114979
|
'''
|
|
113518
114980
|
result = self._values.get("placement")
|
|
@@ -113520,7 +114982,10 @@ class CfnDashboard(
|
|
|
113520
114982
|
|
|
113521
114983
|
@builtins.property
|
|
113522
114984
|
def scale(self) -> typing.Optional[builtins.str]:
|
|
113523
|
-
'''
|
|
114985
|
+
'''Determines whether scale of the axes are shared or independent.
|
|
114986
|
+
|
|
114987
|
+
The default value is ``SHARED`` .
|
|
114988
|
+
|
|
113524
114989
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-smallmultiplesaxisproperties.html#cfn-quicksight-dashboard-smallmultiplesaxisproperties-scale
|
|
113525
114990
|
'''
|
|
113526
114991
|
result = self._values.get("scale")
|
|
@@ -113563,8 +115028,8 @@ class CfnDashboard(
|
|
|
113563
115028
|
:param max_visible_columns: Sets the maximum number of visible columns to display in the grid of small multiples panels. The default is ``Auto`` , which automatically adjusts the columns in the grid to fit the overall layout and size of the given chart.
|
|
113564
115029
|
:param max_visible_rows: Sets the maximum number of visible rows to display in the grid of small multiples panels. The default value is ``Auto`` , which automatically adjusts the rows in the grid to fit the overall layout and size of the given chart.
|
|
113565
115030
|
:param panel_configuration: Configures the display options for each small multiples panel.
|
|
113566
|
-
:param x_axis:
|
|
113567
|
-
:param y_axis:
|
|
115031
|
+
:param x_axis: The properties of a small multiples X axis.
|
|
115032
|
+
:param y_axis: The properties of a small multiples Y axis.
|
|
113568
115033
|
|
|
113569
115034
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-smallmultiplesoptions.html
|
|
113570
115035
|
:exampleMetadata: fixture=_generated
|
|
@@ -113669,7 +115134,8 @@ class CfnDashboard(
|
|
|
113669
115134
|
def x_axis(
|
|
113670
115135
|
self,
|
|
113671
115136
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SmallMultiplesAxisPropertiesProperty"]]:
|
|
113672
|
-
'''
|
|
115137
|
+
'''The properties of a small multiples X axis.
|
|
115138
|
+
|
|
113673
115139
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-smallmultiplesoptions.html#cfn-quicksight-dashboard-smallmultiplesoptions-xaxis
|
|
113674
115140
|
'''
|
|
113675
115141
|
result = self._values.get("x_axis")
|
|
@@ -113679,7 +115145,8 @@ class CfnDashboard(
|
|
|
113679
115145
|
def y_axis(
|
|
113680
115146
|
self,
|
|
113681
115147
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SmallMultiplesAxisPropertiesProperty"]]:
|
|
113682
|
-
'''
|
|
115148
|
+
'''The properties of a small multiples Y axis.
|
|
115149
|
+
|
|
113683
115150
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-smallmultiplesoptions.html#cfn-quicksight-dashboard-smallmultiplesoptions-yaxis
|
|
113684
115151
|
'''
|
|
113685
115152
|
result = self._values.get("y_axis")
|
|
@@ -114371,7 +115838,7 @@ class CfnDashboard(
|
|
|
114371
115838
|
:param field_level: The field level (all, custom, last) for the subtotal cells.
|
|
114372
115839
|
:param field_level_options: The optional configuration of subtotal cells.
|
|
114373
115840
|
:param metric_header_cell_style: The cell styling options for the subtotals of header cells.
|
|
114374
|
-
:param style_targets:
|
|
115841
|
+
:param style_targets: The style targets options for subtotals.
|
|
114375
115842
|
:param total_cell_style: The cell styling options for the subtotal cells.
|
|
114376
115843
|
:param totals_visibility: The visibility configuration for the subtotal cells.
|
|
114377
115844
|
:param value_cell_style: The cell styling options for the subtotals of value cells.
|
|
@@ -114643,7 +116110,8 @@ class CfnDashboard(
|
|
|
114643
116110
|
def style_targets(
|
|
114644
116111
|
self,
|
|
114645
116112
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TableStyleTargetProperty"]]]]:
|
|
114646
|
-
'''
|
|
116113
|
+
'''The style targets options for subtotals.
|
|
116114
|
+
|
|
114647
116115
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-subtotaloptions.html#cfn-quicksight-dashboard-subtotaloptions-styletargets
|
|
114648
116116
|
'''
|
|
114649
116117
|
result = self._values.get("style_targets")
|
|
@@ -116809,6 +118277,7 @@ class CfnDashboard(
|
|
|
116809
118277
|
jsii_struct_bases=[],
|
|
116810
118278
|
name_mapping={
|
|
116811
118279
|
"order": "order",
|
|
118280
|
+
"pinned_field_options": "pinnedFieldOptions",
|
|
116812
118281
|
"selected_field_options": "selectedFieldOptions",
|
|
116813
118282
|
},
|
|
116814
118283
|
)
|
|
@@ -116817,11 +118286,13 @@ class CfnDashboard(
|
|
|
116817
118286
|
self,
|
|
116818
118287
|
*,
|
|
116819
118288
|
order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
118289
|
+
pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.TablePinnedFieldOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
116820
118290
|
selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDashboard.TableFieldOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
116821
118291
|
) -> None:
|
|
116822
118292
|
'''The field options of a table visual.
|
|
116823
118293
|
|
|
116824
118294
|
:param order: The order of the field IDs that are configured as field options for a table visual.
|
|
118295
|
+
:param pinned_field_options:
|
|
116825
118296
|
:param selected_field_options: The field options to be configured to a table.
|
|
116826
118297
|
|
|
116827
118298
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldoptions.html
|
|
@@ -116835,6 +118306,9 @@ class CfnDashboard(
|
|
|
116835
118306
|
|
|
116836
118307
|
table_field_options_property = quicksight.CfnDashboard.TableFieldOptionsProperty(
|
|
116837
118308
|
order=["order"],
|
|
118309
|
+
pinned_field_options=quicksight.CfnDashboard.TablePinnedFieldOptionsProperty(
|
|
118310
|
+
pinned_left_fields=["pinnedLeftFields"]
|
|
118311
|
+
),
|
|
116838
118312
|
selected_field_options=[quicksight.CfnDashboard.TableFieldOptionProperty(
|
|
116839
118313
|
field_id="fieldId",
|
|
116840
118314
|
|
|
@@ -116879,10 +118353,13 @@ class CfnDashboard(
|
|
|
116879
118353
|
if __debug__:
|
|
116880
118354
|
type_hints = typing.get_type_hints(_typecheckingstub__72ee146032d78abdf24c9225b55a85b01c617371b25550f6b22f15a263905c19)
|
|
116881
118355
|
check_type(argname="argument order", value=order, expected_type=type_hints["order"])
|
|
118356
|
+
check_type(argname="argument pinned_field_options", value=pinned_field_options, expected_type=type_hints["pinned_field_options"])
|
|
116882
118357
|
check_type(argname="argument selected_field_options", value=selected_field_options, expected_type=type_hints["selected_field_options"])
|
|
116883
118358
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
116884
118359
|
if order is not None:
|
|
116885
118360
|
self._values["order"] = order
|
|
118361
|
+
if pinned_field_options is not None:
|
|
118362
|
+
self._values["pinned_field_options"] = pinned_field_options
|
|
116886
118363
|
if selected_field_options is not None:
|
|
116887
118364
|
self._values["selected_field_options"] = selected_field_options
|
|
116888
118365
|
|
|
@@ -116895,6 +118372,16 @@ class CfnDashboard(
|
|
|
116895
118372
|
result = self._values.get("order")
|
|
116896
118373
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
116897
118374
|
|
|
118375
|
+
@builtins.property
|
|
118376
|
+
def pinned_field_options(
|
|
118377
|
+
self,
|
|
118378
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TablePinnedFieldOptionsProperty"]]:
|
|
118379
|
+
'''
|
|
118380
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldoptions.html#cfn-quicksight-dashboard-tablefieldoptions-pinnedfieldoptions
|
|
118381
|
+
'''
|
|
118382
|
+
result = self._values.get("pinned_field_options")
|
|
118383
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.TablePinnedFieldOptionsProperty"]], result)
|
|
118384
|
+
|
|
116898
118385
|
@builtins.property
|
|
116899
118386
|
def selected_field_options(
|
|
116900
118387
|
self,
|
|
@@ -117458,6 +118945,59 @@ class CfnDashboard(
|
|
|
117458
118945
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
117459
118946
|
)
|
|
117460
118947
|
|
|
118948
|
+
@jsii.data_type(
|
|
118949
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.TablePinnedFieldOptionsProperty",
|
|
118950
|
+
jsii_struct_bases=[],
|
|
118951
|
+
name_mapping={"pinned_left_fields": "pinnedLeftFields"},
|
|
118952
|
+
)
|
|
118953
|
+
class TablePinnedFieldOptionsProperty:
|
|
118954
|
+
def __init__(
|
|
118955
|
+
self,
|
|
118956
|
+
*,
|
|
118957
|
+
pinned_left_fields: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
118958
|
+
) -> None:
|
|
118959
|
+
'''
|
|
118960
|
+
:param pinned_left_fields:
|
|
118961
|
+
|
|
118962
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablepinnedfieldoptions.html
|
|
118963
|
+
:exampleMetadata: fixture=_generated
|
|
118964
|
+
|
|
118965
|
+
Example::
|
|
118966
|
+
|
|
118967
|
+
# The code below shows an example of how to instantiate this type.
|
|
118968
|
+
# The values are placeholders you should change.
|
|
118969
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
118970
|
+
|
|
118971
|
+
table_pinned_field_options_property = quicksight.CfnDashboard.TablePinnedFieldOptionsProperty(
|
|
118972
|
+
pinned_left_fields=["pinnedLeftFields"]
|
|
118973
|
+
)
|
|
118974
|
+
'''
|
|
118975
|
+
if __debug__:
|
|
118976
|
+
type_hints = typing.get_type_hints(_typecheckingstub__33457a3c8423dbaa75e524d9d1499fa98efa3094dce4e543d7e40e78a1dd9165)
|
|
118977
|
+
check_type(argname="argument pinned_left_fields", value=pinned_left_fields, expected_type=type_hints["pinned_left_fields"])
|
|
118978
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
118979
|
+
if pinned_left_fields is not None:
|
|
118980
|
+
self._values["pinned_left_fields"] = pinned_left_fields
|
|
118981
|
+
|
|
118982
|
+
@builtins.property
|
|
118983
|
+
def pinned_left_fields(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
118984
|
+
'''
|
|
118985
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablepinnedfieldoptions.html#cfn-quicksight-dashboard-tablepinnedfieldoptions-pinnedleftfields
|
|
118986
|
+
'''
|
|
118987
|
+
result = self._values.get("pinned_left_fields")
|
|
118988
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
118989
|
+
|
|
118990
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
118991
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
118992
|
+
|
|
118993
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
118994
|
+
return not (rhs == self)
|
|
118995
|
+
|
|
118996
|
+
def __repr__(self) -> str:
|
|
118997
|
+
return "TablePinnedFieldOptionsProperty(%s)" % ", ".join(
|
|
118998
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
118999
|
+
)
|
|
119000
|
+
|
|
117461
119001
|
@jsii.data_type(
|
|
117462
119002
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnDashboard.TableRowConditionalFormattingProperty",
|
|
117463
119003
|
jsii_struct_bases=[],
|
|
@@ -117861,8 +119401,9 @@ class CfnDashboard(
|
|
|
117861
119401
|
)
|
|
117862
119402
|
class TableStyleTargetProperty:
|
|
117863
119403
|
def __init__(self, *, cell_type: builtins.str) -> None:
|
|
117864
|
-
'''
|
|
117865
|
-
|
|
119404
|
+
'''The table style target.
|
|
119405
|
+
|
|
119406
|
+
:param cell_type: The cell type of the table style target.
|
|
117866
119407
|
|
|
117867
119408
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablestyletarget.html
|
|
117868
119409
|
:exampleMetadata: fixture=_generated
|
|
@@ -117886,7 +119427,8 @@ class CfnDashboard(
|
|
|
117886
119427
|
|
|
117887
119428
|
@builtins.property
|
|
117888
119429
|
def cell_type(self) -> builtins.str:
|
|
117889
|
-
'''
|
|
119430
|
+
'''The cell type of the table style target.
|
|
119431
|
+
|
|
117890
119432
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablestyletarget.html#cfn-quicksight-dashboard-tablestyletarget-celltype
|
|
117891
119433
|
'''
|
|
117892
119434
|
result = self._values.get("cell_type")
|
|
@@ -118341,7 +119883,7 @@ class CfnDashboard(
|
|
|
118341
119883
|
) -> None:
|
|
118342
119884
|
'''The display options of a control.
|
|
118343
119885
|
|
|
118344
|
-
:param info_icon_label_options:
|
|
119886
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
118345
119887
|
:param placeholder_options: The configuration of the placeholder options in a text area control.
|
|
118346
119888
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
118347
119889
|
|
|
@@ -118396,7 +119938,8 @@ class CfnDashboard(
|
|
|
118396
119938
|
def info_icon_label_options(
|
|
118397
119939
|
self,
|
|
118398
119940
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
118399
|
-
'''
|
|
119941
|
+
'''The configuration of info icon label options.
|
|
119942
|
+
|
|
118400
119943
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-textareacontroldisplayoptions.html#cfn-quicksight-dashboard-textareacontroldisplayoptions-infoiconlabeloptions
|
|
118401
119944
|
'''
|
|
118402
119945
|
result = self._values.get("info_icon_label_options")
|
|
@@ -118658,7 +120201,7 @@ class CfnDashboard(
|
|
|
118658
120201
|
) -> None:
|
|
118659
120202
|
'''The display options of a control.
|
|
118660
120203
|
|
|
118661
|
-
:param info_icon_label_options:
|
|
120204
|
+
:param info_icon_label_options: The configuration of info icon label options.
|
|
118662
120205
|
:param placeholder_options: The configuration of the placeholder options in a text field control.
|
|
118663
120206
|
:param title_options: The options to configure the title visibility, name, and font size.
|
|
118664
120207
|
|
|
@@ -118713,7 +120256,8 @@ class CfnDashboard(
|
|
|
118713
120256
|
def info_icon_label_options(
|
|
118714
120257
|
self,
|
|
118715
120258
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDashboard.SheetControlInfoIconLabelOptionsProperty"]]:
|
|
118716
|
-
'''
|
|
120259
|
+
'''The configuration of info icon label options.
|
|
120260
|
+
|
|
118717
120261
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-textfieldcontroldisplayoptions.html#cfn-quicksight-dashboard-textfieldcontroldisplayoptions-infoiconlabeloptions
|
|
118718
120262
|
'''
|
|
118719
120263
|
result = self._values.get("info_icon_label_options")
|
|
@@ -132253,7 +133797,7 @@ class CfnDataSource(
|
|
|
132253
133797
|
) -> None:
|
|
132254
133798
|
'''Parameters for Amazon Athena.
|
|
132255
133799
|
|
|
132256
|
-
:param role_arn:
|
|
133800
|
+
:param role_arn: For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use RoleArn to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.
|
|
132257
133801
|
:param work_group: The workgroup that Amazon Athena uses.
|
|
132258
133802
|
|
|
132259
133803
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-athenaparameters.html
|
|
@@ -132282,9 +133826,8 @@ class CfnDataSource(
|
|
|
132282
133826
|
|
|
132283
133827
|
@builtins.property
|
|
132284
133828
|
def role_arn(self) -> typing.Optional[builtins.str]:
|
|
132285
|
-
'''
|
|
132286
|
-
|
|
132287
|
-
For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use ``RoleArn`` to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.
|
|
133829
|
+
'''
|
|
133830
|
+
For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use RoleArn to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.
|
|
132288
133831
|
|
|
132289
133832
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-athenaparameters.html#cfn-quicksight-datasource-athenaparameters-rolearn
|
|
132290
133833
|
'''
|
|
@@ -165303,20 +166846,249 @@ class CfnTemplate(
|
|
|
165303
166846
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
165304
166847
|
)
|
|
165305
166848
|
|
|
166849
|
+
@jsii.data_type(
|
|
166850
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPIActualValueConditionalFormattingProperty",
|
|
166851
|
+
jsii_struct_bases=[],
|
|
166852
|
+
name_mapping={"icon": "icon", "text_color": "textColor"},
|
|
166853
|
+
)
|
|
166854
|
+
class KPIActualValueConditionalFormattingProperty:
|
|
166855
|
+
def __init__(
|
|
166856
|
+
self,
|
|
166857
|
+
*,
|
|
166858
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.ConditionalFormattingIconProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
166859
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.ConditionalFormattingColorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
166860
|
+
) -> None:
|
|
166861
|
+
'''
|
|
166862
|
+
:param icon:
|
|
166863
|
+
:param text_color:
|
|
166864
|
+
|
|
166865
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiactualvalueconditionalformatting.html
|
|
166866
|
+
:exampleMetadata: fixture=_generated
|
|
166867
|
+
|
|
166868
|
+
Example::
|
|
166869
|
+
|
|
166870
|
+
# The code below shows an example of how to instantiate this type.
|
|
166871
|
+
# The values are placeholders you should change.
|
|
166872
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
166873
|
+
|
|
166874
|
+
k_pIActual_value_conditional_formatting_property = quicksight.CfnTemplate.KPIActualValueConditionalFormattingProperty(
|
|
166875
|
+
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
166876
|
+
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
166877
|
+
expression="expression",
|
|
166878
|
+
icon_options=quicksight.CfnTemplate.ConditionalFormattingCustomIconOptionsProperty(
|
|
166879
|
+
icon="icon",
|
|
166880
|
+
unicode_icon="unicodeIcon"
|
|
166881
|
+
),
|
|
166882
|
+
|
|
166883
|
+
# the properties below are optional
|
|
166884
|
+
color="color",
|
|
166885
|
+
display_configuration=quicksight.CfnTemplate.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
166886
|
+
icon_display_option="iconDisplayOption"
|
|
166887
|
+
)
|
|
166888
|
+
),
|
|
166889
|
+
icon_set=quicksight.CfnTemplate.ConditionalFormattingIconSetProperty(
|
|
166890
|
+
expression="expression",
|
|
166891
|
+
|
|
166892
|
+
# the properties below are optional
|
|
166893
|
+
icon_set_type="iconSetType"
|
|
166894
|
+
)
|
|
166895
|
+
),
|
|
166896
|
+
text_color=quicksight.CfnTemplate.ConditionalFormattingColorProperty(
|
|
166897
|
+
gradient=quicksight.CfnTemplate.ConditionalFormattingGradientColorProperty(
|
|
166898
|
+
color=quicksight.CfnTemplate.GradientColorProperty(
|
|
166899
|
+
stops=[quicksight.CfnTemplate.GradientStopProperty(
|
|
166900
|
+
gradient_offset=123,
|
|
166901
|
+
|
|
166902
|
+
# the properties below are optional
|
|
166903
|
+
color="color",
|
|
166904
|
+
data_value=123
|
|
166905
|
+
)]
|
|
166906
|
+
),
|
|
166907
|
+
expression="expression"
|
|
166908
|
+
),
|
|
166909
|
+
solid=quicksight.CfnTemplate.ConditionalFormattingSolidColorProperty(
|
|
166910
|
+
expression="expression",
|
|
166911
|
+
|
|
166912
|
+
# the properties below are optional
|
|
166913
|
+
color="color"
|
|
166914
|
+
)
|
|
166915
|
+
)
|
|
166916
|
+
)
|
|
166917
|
+
'''
|
|
166918
|
+
if __debug__:
|
|
166919
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2dffb3b08c0efb00a2dd126ef1eecafaa340228f3b5732b6f1d50f773826188a)
|
|
166920
|
+
check_type(argname="argument icon", value=icon, expected_type=type_hints["icon"])
|
|
166921
|
+
check_type(argname="argument text_color", value=text_color, expected_type=type_hints["text_color"])
|
|
166922
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
166923
|
+
if icon is not None:
|
|
166924
|
+
self._values["icon"] = icon
|
|
166925
|
+
if text_color is not None:
|
|
166926
|
+
self._values["text_color"] = text_color
|
|
166927
|
+
|
|
166928
|
+
@builtins.property
|
|
166929
|
+
def icon(
|
|
166930
|
+
self,
|
|
166931
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingIconProperty"]]:
|
|
166932
|
+
'''
|
|
166933
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiactualvalueconditionalformatting.html#cfn-quicksight-template-kpiactualvalueconditionalformatting-icon
|
|
166934
|
+
'''
|
|
166935
|
+
result = self._values.get("icon")
|
|
166936
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingIconProperty"]], result)
|
|
166937
|
+
|
|
166938
|
+
@builtins.property
|
|
166939
|
+
def text_color(
|
|
166940
|
+
self,
|
|
166941
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingColorProperty"]]:
|
|
166942
|
+
'''
|
|
166943
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiactualvalueconditionalformatting.html#cfn-quicksight-template-kpiactualvalueconditionalformatting-textcolor
|
|
166944
|
+
'''
|
|
166945
|
+
result = self._values.get("text_color")
|
|
166946
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingColorProperty"]], result)
|
|
166947
|
+
|
|
166948
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
166949
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
166950
|
+
|
|
166951
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
166952
|
+
return not (rhs == self)
|
|
166953
|
+
|
|
166954
|
+
def __repr__(self) -> str:
|
|
166955
|
+
return "KPIActualValueConditionalFormattingProperty(%s)" % ", ".join(
|
|
166956
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
166957
|
+
)
|
|
166958
|
+
|
|
166959
|
+
@jsii.data_type(
|
|
166960
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPIComparisonValueConditionalFormattingProperty",
|
|
166961
|
+
jsii_struct_bases=[],
|
|
166962
|
+
name_mapping={"icon": "icon", "text_color": "textColor"},
|
|
166963
|
+
)
|
|
166964
|
+
class KPIComparisonValueConditionalFormattingProperty:
|
|
166965
|
+
def __init__(
|
|
166966
|
+
self,
|
|
166967
|
+
*,
|
|
166968
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.ConditionalFormattingIconProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
166969
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.ConditionalFormattingColorProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
166970
|
+
) -> None:
|
|
166971
|
+
'''
|
|
166972
|
+
:param icon:
|
|
166973
|
+
:param text_color:
|
|
166974
|
+
|
|
166975
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpicomparisonvalueconditionalformatting.html
|
|
166976
|
+
:exampleMetadata: fixture=_generated
|
|
166977
|
+
|
|
166978
|
+
Example::
|
|
166979
|
+
|
|
166980
|
+
# The code below shows an example of how to instantiate this type.
|
|
166981
|
+
# The values are placeholders you should change.
|
|
166982
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
166983
|
+
|
|
166984
|
+
k_pIComparison_value_conditional_formatting_property = quicksight.CfnTemplate.KPIComparisonValueConditionalFormattingProperty(
|
|
166985
|
+
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
166986
|
+
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
166987
|
+
expression="expression",
|
|
166988
|
+
icon_options=quicksight.CfnTemplate.ConditionalFormattingCustomIconOptionsProperty(
|
|
166989
|
+
icon="icon",
|
|
166990
|
+
unicode_icon="unicodeIcon"
|
|
166991
|
+
),
|
|
166992
|
+
|
|
166993
|
+
# the properties below are optional
|
|
166994
|
+
color="color",
|
|
166995
|
+
display_configuration=quicksight.CfnTemplate.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
166996
|
+
icon_display_option="iconDisplayOption"
|
|
166997
|
+
)
|
|
166998
|
+
),
|
|
166999
|
+
icon_set=quicksight.CfnTemplate.ConditionalFormattingIconSetProperty(
|
|
167000
|
+
expression="expression",
|
|
167001
|
+
|
|
167002
|
+
# the properties below are optional
|
|
167003
|
+
icon_set_type="iconSetType"
|
|
167004
|
+
)
|
|
167005
|
+
),
|
|
167006
|
+
text_color=quicksight.CfnTemplate.ConditionalFormattingColorProperty(
|
|
167007
|
+
gradient=quicksight.CfnTemplate.ConditionalFormattingGradientColorProperty(
|
|
167008
|
+
color=quicksight.CfnTemplate.GradientColorProperty(
|
|
167009
|
+
stops=[quicksight.CfnTemplate.GradientStopProperty(
|
|
167010
|
+
gradient_offset=123,
|
|
167011
|
+
|
|
167012
|
+
# the properties below are optional
|
|
167013
|
+
color="color",
|
|
167014
|
+
data_value=123
|
|
167015
|
+
)]
|
|
167016
|
+
),
|
|
167017
|
+
expression="expression"
|
|
167018
|
+
),
|
|
167019
|
+
solid=quicksight.CfnTemplate.ConditionalFormattingSolidColorProperty(
|
|
167020
|
+
expression="expression",
|
|
167021
|
+
|
|
167022
|
+
# the properties below are optional
|
|
167023
|
+
color="color"
|
|
167024
|
+
)
|
|
167025
|
+
)
|
|
167026
|
+
)
|
|
167027
|
+
'''
|
|
167028
|
+
if __debug__:
|
|
167029
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d9eb1b23ffff0116e21e69887a057315fe696819cec0f84f46f7e640234cd30d)
|
|
167030
|
+
check_type(argname="argument icon", value=icon, expected_type=type_hints["icon"])
|
|
167031
|
+
check_type(argname="argument text_color", value=text_color, expected_type=type_hints["text_color"])
|
|
167032
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
167033
|
+
if icon is not None:
|
|
167034
|
+
self._values["icon"] = icon
|
|
167035
|
+
if text_color is not None:
|
|
167036
|
+
self._values["text_color"] = text_color
|
|
167037
|
+
|
|
167038
|
+
@builtins.property
|
|
167039
|
+
def icon(
|
|
167040
|
+
self,
|
|
167041
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingIconProperty"]]:
|
|
167042
|
+
'''
|
|
167043
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpicomparisonvalueconditionalformatting.html#cfn-quicksight-template-kpicomparisonvalueconditionalformatting-icon
|
|
167044
|
+
'''
|
|
167045
|
+
result = self._values.get("icon")
|
|
167046
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingIconProperty"]], result)
|
|
167047
|
+
|
|
167048
|
+
@builtins.property
|
|
167049
|
+
def text_color(
|
|
167050
|
+
self,
|
|
167051
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingColorProperty"]]:
|
|
167052
|
+
'''
|
|
167053
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpicomparisonvalueconditionalformatting.html#cfn-quicksight-template-kpicomparisonvalueconditionalformatting-textcolor
|
|
167054
|
+
'''
|
|
167055
|
+
result = self._values.get("text_color")
|
|
167056
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.ConditionalFormattingColorProperty"]], result)
|
|
167057
|
+
|
|
167058
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
167059
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
167060
|
+
|
|
167061
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
167062
|
+
return not (rhs == self)
|
|
167063
|
+
|
|
167064
|
+
def __repr__(self) -> str:
|
|
167065
|
+
return "KPIComparisonValueConditionalFormattingProperty(%s)" % ", ".join(
|
|
167066
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
167067
|
+
)
|
|
167068
|
+
|
|
165306
167069
|
@jsii.data_type(
|
|
165307
167070
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPIConditionalFormattingOptionProperty",
|
|
165308
167071
|
jsii_struct_bases=[],
|
|
165309
|
-
name_mapping={
|
|
167072
|
+
name_mapping={
|
|
167073
|
+
"actual_value": "actualValue",
|
|
167074
|
+
"comparison_value": "comparisonValue",
|
|
167075
|
+
"primary_value": "primaryValue",
|
|
167076
|
+
"progress_bar": "progressBar",
|
|
167077
|
+
},
|
|
165310
167078
|
)
|
|
165311
167079
|
class KPIConditionalFormattingOptionProperty:
|
|
165312
167080
|
def __init__(
|
|
165313
167081
|
self,
|
|
165314
167082
|
*,
|
|
167083
|
+
actual_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPIActualValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
167084
|
+
comparison_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPIComparisonValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165315
167085
|
primary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPIPrimaryValueConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165316
167086
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPIProgressBarConditionalFormattingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165317
167087
|
) -> None:
|
|
165318
167088
|
'''The conditional formatting options of a KPI visual.
|
|
165319
167089
|
|
|
167090
|
+
:param actual_value:
|
|
167091
|
+
:param comparison_value:
|
|
165320
167092
|
:param primary_value: The conditional formatting for the primary value of a KPI visual.
|
|
165321
167093
|
:param progress_bar: The conditional formatting for the progress bar of a KPI visual.
|
|
165322
167094
|
|
|
@@ -165330,6 +167102,92 @@ class CfnTemplate(
|
|
|
165330
167102
|
from aws_cdk import aws_quicksight as quicksight
|
|
165331
167103
|
|
|
165332
167104
|
k_pIConditional_formatting_option_property = quicksight.CfnTemplate.KPIConditionalFormattingOptionProperty(
|
|
167105
|
+
actual_value=quicksight.CfnTemplate.KPIActualValueConditionalFormattingProperty(
|
|
167106
|
+
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
167107
|
+
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
167108
|
+
expression="expression",
|
|
167109
|
+
icon_options=quicksight.CfnTemplate.ConditionalFormattingCustomIconOptionsProperty(
|
|
167110
|
+
icon="icon",
|
|
167111
|
+
unicode_icon="unicodeIcon"
|
|
167112
|
+
),
|
|
167113
|
+
|
|
167114
|
+
# the properties below are optional
|
|
167115
|
+
color="color",
|
|
167116
|
+
display_configuration=quicksight.CfnTemplate.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
167117
|
+
icon_display_option="iconDisplayOption"
|
|
167118
|
+
)
|
|
167119
|
+
),
|
|
167120
|
+
icon_set=quicksight.CfnTemplate.ConditionalFormattingIconSetProperty(
|
|
167121
|
+
expression="expression",
|
|
167122
|
+
|
|
167123
|
+
# the properties below are optional
|
|
167124
|
+
icon_set_type="iconSetType"
|
|
167125
|
+
)
|
|
167126
|
+
),
|
|
167127
|
+
text_color=quicksight.CfnTemplate.ConditionalFormattingColorProperty(
|
|
167128
|
+
gradient=quicksight.CfnTemplate.ConditionalFormattingGradientColorProperty(
|
|
167129
|
+
color=quicksight.CfnTemplate.GradientColorProperty(
|
|
167130
|
+
stops=[quicksight.CfnTemplate.GradientStopProperty(
|
|
167131
|
+
gradient_offset=123,
|
|
167132
|
+
|
|
167133
|
+
# the properties below are optional
|
|
167134
|
+
color="color",
|
|
167135
|
+
data_value=123
|
|
167136
|
+
)]
|
|
167137
|
+
),
|
|
167138
|
+
expression="expression"
|
|
167139
|
+
),
|
|
167140
|
+
solid=quicksight.CfnTemplate.ConditionalFormattingSolidColorProperty(
|
|
167141
|
+
expression="expression",
|
|
167142
|
+
|
|
167143
|
+
# the properties below are optional
|
|
167144
|
+
color="color"
|
|
167145
|
+
)
|
|
167146
|
+
)
|
|
167147
|
+
),
|
|
167148
|
+
comparison_value=quicksight.CfnTemplate.KPIComparisonValueConditionalFormattingProperty(
|
|
167149
|
+
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
167150
|
+
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
167151
|
+
expression="expression",
|
|
167152
|
+
icon_options=quicksight.CfnTemplate.ConditionalFormattingCustomIconOptionsProperty(
|
|
167153
|
+
icon="icon",
|
|
167154
|
+
unicode_icon="unicodeIcon"
|
|
167155
|
+
),
|
|
167156
|
+
|
|
167157
|
+
# the properties below are optional
|
|
167158
|
+
color="color",
|
|
167159
|
+
display_configuration=quicksight.CfnTemplate.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
167160
|
+
icon_display_option="iconDisplayOption"
|
|
167161
|
+
)
|
|
167162
|
+
),
|
|
167163
|
+
icon_set=quicksight.CfnTemplate.ConditionalFormattingIconSetProperty(
|
|
167164
|
+
expression="expression",
|
|
167165
|
+
|
|
167166
|
+
# the properties below are optional
|
|
167167
|
+
icon_set_type="iconSetType"
|
|
167168
|
+
)
|
|
167169
|
+
),
|
|
167170
|
+
text_color=quicksight.CfnTemplate.ConditionalFormattingColorProperty(
|
|
167171
|
+
gradient=quicksight.CfnTemplate.ConditionalFormattingGradientColorProperty(
|
|
167172
|
+
color=quicksight.CfnTemplate.GradientColorProperty(
|
|
167173
|
+
stops=[quicksight.CfnTemplate.GradientStopProperty(
|
|
167174
|
+
gradient_offset=123,
|
|
167175
|
+
|
|
167176
|
+
# the properties below are optional
|
|
167177
|
+
color="color",
|
|
167178
|
+
data_value=123
|
|
167179
|
+
)]
|
|
167180
|
+
),
|
|
167181
|
+
expression="expression"
|
|
167182
|
+
),
|
|
167183
|
+
solid=quicksight.CfnTemplate.ConditionalFormattingSolidColorProperty(
|
|
167184
|
+
expression="expression",
|
|
167185
|
+
|
|
167186
|
+
# the properties below are optional
|
|
167187
|
+
color="color"
|
|
167188
|
+
)
|
|
167189
|
+
)
|
|
167190
|
+
),
|
|
165333
167191
|
primary_value=quicksight.CfnTemplate.KPIPrimaryValueConditionalFormattingProperty(
|
|
165334
167192
|
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
165335
167193
|
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
@@ -165399,14 +167257,40 @@ class CfnTemplate(
|
|
|
165399
167257
|
'''
|
|
165400
167258
|
if __debug__:
|
|
165401
167259
|
type_hints = typing.get_type_hints(_typecheckingstub__339f1d2a70fcfa43c5d28bf4f6c1fd73d3f069c24d0058071e781bec0defed3c)
|
|
167260
|
+
check_type(argname="argument actual_value", value=actual_value, expected_type=type_hints["actual_value"])
|
|
167261
|
+
check_type(argname="argument comparison_value", value=comparison_value, expected_type=type_hints["comparison_value"])
|
|
165402
167262
|
check_type(argname="argument primary_value", value=primary_value, expected_type=type_hints["primary_value"])
|
|
165403
167263
|
check_type(argname="argument progress_bar", value=progress_bar, expected_type=type_hints["progress_bar"])
|
|
165404
167264
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
167265
|
+
if actual_value is not None:
|
|
167266
|
+
self._values["actual_value"] = actual_value
|
|
167267
|
+
if comparison_value is not None:
|
|
167268
|
+
self._values["comparison_value"] = comparison_value
|
|
165405
167269
|
if primary_value is not None:
|
|
165406
167270
|
self._values["primary_value"] = primary_value
|
|
165407
167271
|
if progress_bar is not None:
|
|
165408
167272
|
self._values["progress_bar"] = progress_bar
|
|
165409
167273
|
|
|
167274
|
+
@builtins.property
|
|
167275
|
+
def actual_value(
|
|
167276
|
+
self,
|
|
167277
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIActualValueConditionalFormattingProperty"]]:
|
|
167278
|
+
'''
|
|
167279
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiconditionalformattingoption.html#cfn-quicksight-template-kpiconditionalformattingoption-actualvalue
|
|
167280
|
+
'''
|
|
167281
|
+
result = self._values.get("actual_value")
|
|
167282
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIActualValueConditionalFormattingProperty"]], result)
|
|
167283
|
+
|
|
167284
|
+
@builtins.property
|
|
167285
|
+
def comparison_value(
|
|
167286
|
+
self,
|
|
167287
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIComparisonValueConditionalFormattingProperty"]]:
|
|
167288
|
+
'''
|
|
167289
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiconditionalformattingoption.html#cfn-quicksight-template-kpiconditionalformattingoption-comparisonvalue
|
|
167290
|
+
'''
|
|
167291
|
+
result = self._values.get("comparison_value")
|
|
167292
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIComparisonValueConditionalFormattingProperty"]], result)
|
|
167293
|
+
|
|
165410
167294
|
@builtins.property
|
|
165411
167295
|
def primary_value(
|
|
165412
167296
|
self,
|
|
@@ -165468,6 +167352,92 @@ class CfnTemplate(
|
|
|
165468
167352
|
|
|
165469
167353
|
k_pIConditional_formatting_property = quicksight.CfnTemplate.KPIConditionalFormattingProperty(
|
|
165470
167354
|
conditional_formatting_options=[quicksight.CfnTemplate.KPIConditionalFormattingOptionProperty(
|
|
167355
|
+
actual_value=quicksight.CfnTemplate.KPIActualValueConditionalFormattingProperty(
|
|
167356
|
+
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
167357
|
+
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
167358
|
+
expression="expression",
|
|
167359
|
+
icon_options=quicksight.CfnTemplate.ConditionalFormattingCustomIconOptionsProperty(
|
|
167360
|
+
icon="icon",
|
|
167361
|
+
unicode_icon="unicodeIcon"
|
|
167362
|
+
),
|
|
167363
|
+
|
|
167364
|
+
# the properties below are optional
|
|
167365
|
+
color="color",
|
|
167366
|
+
display_configuration=quicksight.CfnTemplate.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
167367
|
+
icon_display_option="iconDisplayOption"
|
|
167368
|
+
)
|
|
167369
|
+
),
|
|
167370
|
+
icon_set=quicksight.CfnTemplate.ConditionalFormattingIconSetProperty(
|
|
167371
|
+
expression="expression",
|
|
167372
|
+
|
|
167373
|
+
# the properties below are optional
|
|
167374
|
+
icon_set_type="iconSetType"
|
|
167375
|
+
)
|
|
167376
|
+
),
|
|
167377
|
+
text_color=quicksight.CfnTemplate.ConditionalFormattingColorProperty(
|
|
167378
|
+
gradient=quicksight.CfnTemplate.ConditionalFormattingGradientColorProperty(
|
|
167379
|
+
color=quicksight.CfnTemplate.GradientColorProperty(
|
|
167380
|
+
stops=[quicksight.CfnTemplate.GradientStopProperty(
|
|
167381
|
+
gradient_offset=123,
|
|
167382
|
+
|
|
167383
|
+
# the properties below are optional
|
|
167384
|
+
color="color",
|
|
167385
|
+
data_value=123
|
|
167386
|
+
)]
|
|
167387
|
+
),
|
|
167388
|
+
expression="expression"
|
|
167389
|
+
),
|
|
167390
|
+
solid=quicksight.CfnTemplate.ConditionalFormattingSolidColorProperty(
|
|
167391
|
+
expression="expression",
|
|
167392
|
+
|
|
167393
|
+
# the properties below are optional
|
|
167394
|
+
color="color"
|
|
167395
|
+
)
|
|
167396
|
+
)
|
|
167397
|
+
),
|
|
167398
|
+
comparison_value=quicksight.CfnTemplate.KPIComparisonValueConditionalFormattingProperty(
|
|
167399
|
+
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
167400
|
+
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
167401
|
+
expression="expression",
|
|
167402
|
+
icon_options=quicksight.CfnTemplate.ConditionalFormattingCustomIconOptionsProperty(
|
|
167403
|
+
icon="icon",
|
|
167404
|
+
unicode_icon="unicodeIcon"
|
|
167405
|
+
),
|
|
167406
|
+
|
|
167407
|
+
# the properties below are optional
|
|
167408
|
+
color="color",
|
|
167409
|
+
display_configuration=quicksight.CfnTemplate.ConditionalFormattingIconDisplayConfigurationProperty(
|
|
167410
|
+
icon_display_option="iconDisplayOption"
|
|
167411
|
+
)
|
|
167412
|
+
),
|
|
167413
|
+
icon_set=quicksight.CfnTemplate.ConditionalFormattingIconSetProperty(
|
|
167414
|
+
expression="expression",
|
|
167415
|
+
|
|
167416
|
+
# the properties below are optional
|
|
167417
|
+
icon_set_type="iconSetType"
|
|
167418
|
+
)
|
|
167419
|
+
),
|
|
167420
|
+
text_color=quicksight.CfnTemplate.ConditionalFormattingColorProperty(
|
|
167421
|
+
gradient=quicksight.CfnTemplate.ConditionalFormattingGradientColorProperty(
|
|
167422
|
+
color=quicksight.CfnTemplate.GradientColorProperty(
|
|
167423
|
+
stops=[quicksight.CfnTemplate.GradientStopProperty(
|
|
167424
|
+
gradient_offset=123,
|
|
167425
|
+
|
|
167426
|
+
# the properties below are optional
|
|
167427
|
+
color="color",
|
|
167428
|
+
data_value=123
|
|
167429
|
+
)]
|
|
167430
|
+
),
|
|
167431
|
+
expression="expression"
|
|
167432
|
+
),
|
|
167433
|
+
solid=quicksight.CfnTemplate.ConditionalFormattingSolidColorProperty(
|
|
167434
|
+
expression="expression",
|
|
167435
|
+
|
|
167436
|
+
# the properties below are optional
|
|
167437
|
+
color="color"
|
|
167438
|
+
)
|
|
167439
|
+
)
|
|
167440
|
+
),
|
|
165471
167441
|
primary_value=quicksight.CfnTemplate.KPIPrimaryValueConditionalFormattingProperty(
|
|
165472
167442
|
icon=quicksight.CfnTemplate.ConditionalFormattingIconProperty(
|
|
165473
167443
|
custom_condition=quicksight.CfnTemplate.ConditionalFormattingCustomIconConditionProperty(
|
|
@@ -165749,7 +167719,9 @@ class CfnTemplate(
|
|
|
165749
167719
|
"progress_bar": "progressBar",
|
|
165750
167720
|
"secondary_value": "secondaryValue",
|
|
165751
167721
|
"secondary_value_font_configuration": "secondaryValueFontConfiguration",
|
|
167722
|
+
"sparkline": "sparkline",
|
|
165752
167723
|
"trend_arrows": "trendArrows",
|
|
167724
|
+
"visual_layout_options": "visualLayoutOptions",
|
|
165753
167725
|
},
|
|
165754
167726
|
)
|
|
165755
167727
|
class KPIOptionsProperty:
|
|
@@ -165762,7 +167734,9 @@ class CfnTemplate(
|
|
|
165762
167734
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.ProgressBarOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165763
167735
|
secondary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.SecondaryValueOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165764
167736
|
secondary_value_font_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.FontConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
167737
|
+
sparkline: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPISparklineOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165765
167738
|
trend_arrows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.TrendArrowOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
167739
|
+
visual_layout_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPIVisualLayoutOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
165766
167740
|
) -> None:
|
|
165767
167741
|
'''The options that determine the presentation of a KPI visual.
|
|
165768
167742
|
|
|
@@ -165772,7 +167746,9 @@ class CfnTemplate(
|
|
|
165772
167746
|
:param progress_bar: The options that determine the presentation of the progress bar of a KPI visual.
|
|
165773
167747
|
:param secondary_value: The options that determine the presentation of the secondary value of a KPI visual.
|
|
165774
167748
|
:param secondary_value_font_configuration: The options that determine the secondary value font configuration.
|
|
167749
|
+
:param sparkline:
|
|
165775
167750
|
:param trend_arrows: The options that determine the presentation of trend arrows in a KPI visual.
|
|
167751
|
+
:param visual_layout_options:
|
|
165776
167752
|
|
|
165777
167753
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpioptions.html
|
|
165778
167754
|
:exampleMetadata: fixture=_generated
|
|
@@ -165859,8 +167835,21 @@ class CfnTemplate(
|
|
|
165859
167835
|
name="name"
|
|
165860
167836
|
)
|
|
165861
167837
|
),
|
|
167838
|
+
sparkline=quicksight.CfnTemplate.KPISparklineOptionsProperty(
|
|
167839
|
+
type="type",
|
|
167840
|
+
|
|
167841
|
+
# the properties below are optional
|
|
167842
|
+
color="color",
|
|
167843
|
+
tooltip_visibility="tooltipVisibility",
|
|
167844
|
+
visibility="visibility"
|
|
167845
|
+
),
|
|
165862
167846
|
trend_arrows=quicksight.CfnTemplate.TrendArrowOptionsProperty(
|
|
165863
167847
|
visibility="visibility"
|
|
167848
|
+
),
|
|
167849
|
+
visual_layout_options=quicksight.CfnTemplate.KPIVisualLayoutOptionsProperty(
|
|
167850
|
+
standard_layout=quicksight.CfnTemplate.KPIVisualStandardLayoutProperty(
|
|
167851
|
+
type="type"
|
|
167852
|
+
)
|
|
165864
167853
|
)
|
|
165865
167854
|
)
|
|
165866
167855
|
'''
|
|
@@ -165872,7 +167861,9 @@ class CfnTemplate(
|
|
|
165872
167861
|
check_type(argname="argument progress_bar", value=progress_bar, expected_type=type_hints["progress_bar"])
|
|
165873
167862
|
check_type(argname="argument secondary_value", value=secondary_value, expected_type=type_hints["secondary_value"])
|
|
165874
167863
|
check_type(argname="argument secondary_value_font_configuration", value=secondary_value_font_configuration, expected_type=type_hints["secondary_value_font_configuration"])
|
|
167864
|
+
check_type(argname="argument sparkline", value=sparkline, expected_type=type_hints["sparkline"])
|
|
165875
167865
|
check_type(argname="argument trend_arrows", value=trend_arrows, expected_type=type_hints["trend_arrows"])
|
|
167866
|
+
check_type(argname="argument visual_layout_options", value=visual_layout_options, expected_type=type_hints["visual_layout_options"])
|
|
165876
167867
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
165877
167868
|
if comparison is not None:
|
|
165878
167869
|
self._values["comparison"] = comparison
|
|
@@ -165886,8 +167877,12 @@ class CfnTemplate(
|
|
|
165886
167877
|
self._values["secondary_value"] = secondary_value
|
|
165887
167878
|
if secondary_value_font_configuration is not None:
|
|
165888
167879
|
self._values["secondary_value_font_configuration"] = secondary_value_font_configuration
|
|
167880
|
+
if sparkline is not None:
|
|
167881
|
+
self._values["sparkline"] = sparkline
|
|
165889
167882
|
if trend_arrows is not None:
|
|
165890
167883
|
self._values["trend_arrows"] = trend_arrows
|
|
167884
|
+
if visual_layout_options is not None:
|
|
167885
|
+
self._values["visual_layout_options"] = visual_layout_options
|
|
165891
167886
|
|
|
165892
167887
|
@builtins.property
|
|
165893
167888
|
def comparison(
|
|
@@ -165953,6 +167948,16 @@ class CfnTemplate(
|
|
|
165953
167948
|
result = self._values.get("secondary_value_font_configuration")
|
|
165954
167949
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.FontConfigurationProperty"]], result)
|
|
165955
167950
|
|
|
167951
|
+
@builtins.property
|
|
167952
|
+
def sparkline(
|
|
167953
|
+
self,
|
|
167954
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPISparklineOptionsProperty"]]:
|
|
167955
|
+
'''
|
|
167956
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpioptions.html#cfn-quicksight-template-kpioptions-sparkline
|
|
167957
|
+
'''
|
|
167958
|
+
result = self._values.get("sparkline")
|
|
167959
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPISparklineOptionsProperty"]], result)
|
|
167960
|
+
|
|
165956
167961
|
@builtins.property
|
|
165957
167962
|
def trend_arrows(
|
|
165958
167963
|
self,
|
|
@@ -165964,6 +167969,16 @@ class CfnTemplate(
|
|
|
165964
167969
|
result = self._values.get("trend_arrows")
|
|
165965
167970
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.TrendArrowOptionsProperty"]], result)
|
|
165966
167971
|
|
|
167972
|
+
@builtins.property
|
|
167973
|
+
def visual_layout_options(
|
|
167974
|
+
self,
|
|
167975
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIVisualLayoutOptionsProperty"]]:
|
|
167976
|
+
'''
|
|
167977
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpioptions.html#cfn-quicksight-template-kpioptions-visuallayoutoptions
|
|
167978
|
+
'''
|
|
167979
|
+
result = self._values.get("visual_layout_options")
|
|
167980
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIVisualLayoutOptionsProperty"]], result)
|
|
167981
|
+
|
|
165967
167982
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
165968
167983
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
165969
167984
|
|
|
@@ -166249,6 +168264,166 @@ class CfnTemplate(
|
|
|
166249
168264
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
166250
168265
|
)
|
|
166251
168266
|
|
|
168267
|
+
@jsii.data_type(
|
|
168268
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPISparklineOptionsProperty",
|
|
168269
|
+
jsii_struct_bases=[],
|
|
168270
|
+
name_mapping={
|
|
168271
|
+
"type": "type",
|
|
168272
|
+
"color": "color",
|
|
168273
|
+
"tooltip_visibility": "tooltipVisibility",
|
|
168274
|
+
"visibility": "visibility",
|
|
168275
|
+
},
|
|
168276
|
+
)
|
|
168277
|
+
class KPISparklineOptionsProperty:
|
|
168278
|
+
def __init__(
|
|
168279
|
+
self,
|
|
168280
|
+
*,
|
|
168281
|
+
type: builtins.str,
|
|
168282
|
+
color: typing.Optional[builtins.str] = None,
|
|
168283
|
+
tooltip_visibility: typing.Optional[builtins.str] = None,
|
|
168284
|
+
visibility: typing.Optional[builtins.str] = None,
|
|
168285
|
+
) -> None:
|
|
168286
|
+
'''
|
|
168287
|
+
:param type:
|
|
168288
|
+
:param color:
|
|
168289
|
+
:param tooltip_visibility:
|
|
168290
|
+
:param visibility:
|
|
168291
|
+
|
|
168292
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpisparklineoptions.html
|
|
168293
|
+
:exampleMetadata: fixture=_generated
|
|
168294
|
+
|
|
168295
|
+
Example::
|
|
168296
|
+
|
|
168297
|
+
# The code below shows an example of how to instantiate this type.
|
|
168298
|
+
# The values are placeholders you should change.
|
|
168299
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
168300
|
+
|
|
168301
|
+
k_pISparkline_options_property = quicksight.CfnTemplate.KPISparklineOptionsProperty(
|
|
168302
|
+
type="type",
|
|
168303
|
+
|
|
168304
|
+
# the properties below are optional
|
|
168305
|
+
color="color",
|
|
168306
|
+
tooltip_visibility="tooltipVisibility",
|
|
168307
|
+
visibility="visibility"
|
|
168308
|
+
)
|
|
168309
|
+
'''
|
|
168310
|
+
if __debug__:
|
|
168311
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6183b3ba8f4515a9d5b9bc06343a7a906895257c322dfbb96589aad73a5ca5fc)
|
|
168312
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
168313
|
+
check_type(argname="argument color", value=color, expected_type=type_hints["color"])
|
|
168314
|
+
check_type(argname="argument tooltip_visibility", value=tooltip_visibility, expected_type=type_hints["tooltip_visibility"])
|
|
168315
|
+
check_type(argname="argument visibility", value=visibility, expected_type=type_hints["visibility"])
|
|
168316
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
168317
|
+
"type": type,
|
|
168318
|
+
}
|
|
168319
|
+
if color is not None:
|
|
168320
|
+
self._values["color"] = color
|
|
168321
|
+
if tooltip_visibility is not None:
|
|
168322
|
+
self._values["tooltip_visibility"] = tooltip_visibility
|
|
168323
|
+
if visibility is not None:
|
|
168324
|
+
self._values["visibility"] = visibility
|
|
168325
|
+
|
|
168326
|
+
@builtins.property
|
|
168327
|
+
def type(self) -> builtins.str:
|
|
168328
|
+
'''
|
|
168329
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpisparklineoptions.html#cfn-quicksight-template-kpisparklineoptions-type
|
|
168330
|
+
'''
|
|
168331
|
+
result = self._values.get("type")
|
|
168332
|
+
assert result is not None, "Required property 'type' is missing"
|
|
168333
|
+
return typing.cast(builtins.str, result)
|
|
168334
|
+
|
|
168335
|
+
@builtins.property
|
|
168336
|
+
def color(self) -> typing.Optional[builtins.str]:
|
|
168337
|
+
'''
|
|
168338
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpisparklineoptions.html#cfn-quicksight-template-kpisparklineoptions-color
|
|
168339
|
+
'''
|
|
168340
|
+
result = self._values.get("color")
|
|
168341
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
168342
|
+
|
|
168343
|
+
@builtins.property
|
|
168344
|
+
def tooltip_visibility(self) -> typing.Optional[builtins.str]:
|
|
168345
|
+
'''
|
|
168346
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpisparklineoptions.html#cfn-quicksight-template-kpisparklineoptions-tooltipvisibility
|
|
168347
|
+
'''
|
|
168348
|
+
result = self._values.get("tooltip_visibility")
|
|
168349
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
168350
|
+
|
|
168351
|
+
@builtins.property
|
|
168352
|
+
def visibility(self) -> typing.Optional[builtins.str]:
|
|
168353
|
+
'''
|
|
168354
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpisparklineoptions.html#cfn-quicksight-template-kpisparklineoptions-visibility
|
|
168355
|
+
'''
|
|
168356
|
+
result = self._values.get("visibility")
|
|
168357
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
168358
|
+
|
|
168359
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
168360
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
168361
|
+
|
|
168362
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
168363
|
+
return not (rhs == self)
|
|
168364
|
+
|
|
168365
|
+
def __repr__(self) -> str:
|
|
168366
|
+
return "KPISparklineOptionsProperty(%s)" % ", ".join(
|
|
168367
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
168368
|
+
)
|
|
168369
|
+
|
|
168370
|
+
@jsii.data_type(
|
|
168371
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPIVisualLayoutOptionsProperty",
|
|
168372
|
+
jsii_struct_bases=[],
|
|
168373
|
+
name_mapping={"standard_layout": "standardLayout"},
|
|
168374
|
+
)
|
|
168375
|
+
class KPIVisualLayoutOptionsProperty:
|
|
168376
|
+
def __init__(
|
|
168377
|
+
self,
|
|
168378
|
+
*,
|
|
168379
|
+
standard_layout: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.KPIVisualStandardLayoutProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
168380
|
+
) -> None:
|
|
168381
|
+
'''
|
|
168382
|
+
:param standard_layout:
|
|
168383
|
+
|
|
168384
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpivisuallayoutoptions.html
|
|
168385
|
+
:exampleMetadata: fixture=_generated
|
|
168386
|
+
|
|
168387
|
+
Example::
|
|
168388
|
+
|
|
168389
|
+
# The code below shows an example of how to instantiate this type.
|
|
168390
|
+
# The values are placeholders you should change.
|
|
168391
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
168392
|
+
|
|
168393
|
+
k_pIVisual_layout_options_property = quicksight.CfnTemplate.KPIVisualLayoutOptionsProperty(
|
|
168394
|
+
standard_layout=quicksight.CfnTemplate.KPIVisualStandardLayoutProperty(
|
|
168395
|
+
type="type"
|
|
168396
|
+
)
|
|
168397
|
+
)
|
|
168398
|
+
'''
|
|
168399
|
+
if __debug__:
|
|
168400
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1cfb28ab26a94a06d33f496c4a03e8d245c5004dbd2a4f95e49c9cb17ee76386)
|
|
168401
|
+
check_type(argname="argument standard_layout", value=standard_layout, expected_type=type_hints["standard_layout"])
|
|
168402
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
168403
|
+
if standard_layout is not None:
|
|
168404
|
+
self._values["standard_layout"] = standard_layout
|
|
168405
|
+
|
|
168406
|
+
@builtins.property
|
|
168407
|
+
def standard_layout(
|
|
168408
|
+
self,
|
|
168409
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIVisualStandardLayoutProperty"]]:
|
|
168410
|
+
'''
|
|
168411
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpivisuallayoutoptions.html#cfn-quicksight-template-kpivisuallayoutoptions-standardlayout
|
|
168412
|
+
'''
|
|
168413
|
+
result = self._values.get("standard_layout")
|
|
168414
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.KPIVisualStandardLayoutProperty"]], result)
|
|
168415
|
+
|
|
168416
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
168417
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
168418
|
+
|
|
168419
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
168420
|
+
return not (rhs == self)
|
|
168421
|
+
|
|
168422
|
+
def __repr__(self) -> str:
|
|
168423
|
+
return "KPIVisualLayoutOptionsProperty(%s)" % ", ".join(
|
|
168424
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
168425
|
+
)
|
|
168426
|
+
|
|
166252
168427
|
@jsii.data_type(
|
|
166253
168428
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPIVisualProperty",
|
|
166254
168429
|
jsii_struct_bases=[],
|
|
@@ -166407,6 +168582,56 @@ class CfnTemplate(
|
|
|
166407
168582
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
166408
168583
|
)
|
|
166409
168584
|
|
|
168585
|
+
@jsii.data_type(
|
|
168586
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.KPIVisualStandardLayoutProperty",
|
|
168587
|
+
jsii_struct_bases=[],
|
|
168588
|
+
name_mapping={"type": "type"},
|
|
168589
|
+
)
|
|
168590
|
+
class KPIVisualStandardLayoutProperty:
|
|
168591
|
+
def __init__(self, *, type: builtins.str) -> None:
|
|
168592
|
+
'''
|
|
168593
|
+
:param type:
|
|
168594
|
+
|
|
168595
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpivisualstandardlayout.html
|
|
168596
|
+
:exampleMetadata: fixture=_generated
|
|
168597
|
+
|
|
168598
|
+
Example::
|
|
168599
|
+
|
|
168600
|
+
# The code below shows an example of how to instantiate this type.
|
|
168601
|
+
# The values are placeholders you should change.
|
|
168602
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
168603
|
+
|
|
168604
|
+
k_pIVisual_standard_layout_property = quicksight.CfnTemplate.KPIVisualStandardLayoutProperty(
|
|
168605
|
+
type="type"
|
|
168606
|
+
)
|
|
168607
|
+
'''
|
|
168608
|
+
if __debug__:
|
|
168609
|
+
type_hints = typing.get_type_hints(_typecheckingstub__267de0f3e92d4c6362e4104fe04fde215f6781fc0ddaebad08ac75372afe8c30)
|
|
168610
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
168611
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
168612
|
+
"type": type,
|
|
168613
|
+
}
|
|
168614
|
+
|
|
168615
|
+
@builtins.property
|
|
168616
|
+
def type(self) -> builtins.str:
|
|
168617
|
+
'''
|
|
168618
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpivisualstandardlayout.html#cfn-quicksight-template-kpivisualstandardlayout-type
|
|
168619
|
+
'''
|
|
168620
|
+
result = self._values.get("type")
|
|
168621
|
+
assert result is not None, "Required property 'type' is missing"
|
|
168622
|
+
return typing.cast(builtins.str, result)
|
|
168623
|
+
|
|
168624
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
168625
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
168626
|
+
|
|
168627
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
168628
|
+
return not (rhs == self)
|
|
168629
|
+
|
|
168630
|
+
def __repr__(self) -> str:
|
|
168631
|
+
return "KPIVisualStandardLayoutProperty(%s)" % ", ".join(
|
|
168632
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
168633
|
+
)
|
|
168634
|
+
|
|
166410
168635
|
@jsii.data_type(
|
|
166411
168636
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.LabelOptionsProperty",
|
|
166412
168637
|
jsii_struct_bases=[],
|
|
@@ -188735,6 +190960,7 @@ class CfnTemplate(
|
|
|
188735
190960
|
jsii_struct_bases=[],
|
|
188736
190961
|
name_mapping={
|
|
188737
190962
|
"order": "order",
|
|
190963
|
+
"pinned_field_options": "pinnedFieldOptions",
|
|
188738
190964
|
"selected_field_options": "selectedFieldOptions",
|
|
188739
190965
|
},
|
|
188740
190966
|
)
|
|
@@ -188743,11 +190969,13 @@ class CfnTemplate(
|
|
|
188743
190969
|
self,
|
|
188744
190970
|
*,
|
|
188745
190971
|
order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
190972
|
+
pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.TablePinnedFieldOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
188746
190973
|
selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTemplate.TableFieldOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
188747
190974
|
) -> None:
|
|
188748
190975
|
'''The field options of a table visual.
|
|
188749
190976
|
|
|
188750
190977
|
:param order: The order of the field IDs that are configured as field options for a table visual.
|
|
190978
|
+
:param pinned_field_options:
|
|
188751
190979
|
:param selected_field_options: The field options to be configured to a table.
|
|
188752
190980
|
|
|
188753
190981
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldoptions.html
|
|
@@ -188761,6 +190989,9 @@ class CfnTemplate(
|
|
|
188761
190989
|
|
|
188762
190990
|
table_field_options_property = quicksight.CfnTemplate.TableFieldOptionsProperty(
|
|
188763
190991
|
order=["order"],
|
|
190992
|
+
pinned_field_options=quicksight.CfnTemplate.TablePinnedFieldOptionsProperty(
|
|
190993
|
+
pinned_left_fields=["pinnedLeftFields"]
|
|
190994
|
+
),
|
|
188764
190995
|
selected_field_options=[quicksight.CfnTemplate.TableFieldOptionProperty(
|
|
188765
190996
|
field_id="fieldId",
|
|
188766
190997
|
|
|
@@ -188805,10 +191036,13 @@ class CfnTemplate(
|
|
|
188805
191036
|
if __debug__:
|
|
188806
191037
|
type_hints = typing.get_type_hints(_typecheckingstub__2796b1737ad870376487761ac141740bbac607a367593f554b3fd534c5f32a36)
|
|
188807
191038
|
check_type(argname="argument order", value=order, expected_type=type_hints["order"])
|
|
191039
|
+
check_type(argname="argument pinned_field_options", value=pinned_field_options, expected_type=type_hints["pinned_field_options"])
|
|
188808
191040
|
check_type(argname="argument selected_field_options", value=selected_field_options, expected_type=type_hints["selected_field_options"])
|
|
188809
191041
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
188810
191042
|
if order is not None:
|
|
188811
191043
|
self._values["order"] = order
|
|
191044
|
+
if pinned_field_options is not None:
|
|
191045
|
+
self._values["pinned_field_options"] = pinned_field_options
|
|
188812
191046
|
if selected_field_options is not None:
|
|
188813
191047
|
self._values["selected_field_options"] = selected_field_options
|
|
188814
191048
|
|
|
@@ -188821,6 +191055,16 @@ class CfnTemplate(
|
|
|
188821
191055
|
result = self._values.get("order")
|
|
188822
191056
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
188823
191057
|
|
|
191058
|
+
@builtins.property
|
|
191059
|
+
def pinned_field_options(
|
|
191060
|
+
self,
|
|
191061
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.TablePinnedFieldOptionsProperty"]]:
|
|
191062
|
+
'''
|
|
191063
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldoptions.html#cfn-quicksight-template-tablefieldoptions-pinnedfieldoptions
|
|
191064
|
+
'''
|
|
191065
|
+
result = self._values.get("pinned_field_options")
|
|
191066
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTemplate.TablePinnedFieldOptionsProperty"]], result)
|
|
191067
|
+
|
|
188824
191068
|
@builtins.property
|
|
188825
191069
|
def selected_field_options(
|
|
188826
191070
|
self,
|
|
@@ -189384,6 +191628,59 @@ class CfnTemplate(
|
|
|
189384
191628
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
189385
191629
|
)
|
|
189386
191630
|
|
|
191631
|
+
@jsii.data_type(
|
|
191632
|
+
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.TablePinnedFieldOptionsProperty",
|
|
191633
|
+
jsii_struct_bases=[],
|
|
191634
|
+
name_mapping={"pinned_left_fields": "pinnedLeftFields"},
|
|
191635
|
+
)
|
|
191636
|
+
class TablePinnedFieldOptionsProperty:
|
|
191637
|
+
def __init__(
|
|
191638
|
+
self,
|
|
191639
|
+
*,
|
|
191640
|
+
pinned_left_fields: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
191641
|
+
) -> None:
|
|
191642
|
+
'''
|
|
191643
|
+
:param pinned_left_fields:
|
|
191644
|
+
|
|
191645
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepinnedfieldoptions.html
|
|
191646
|
+
:exampleMetadata: fixture=_generated
|
|
191647
|
+
|
|
191648
|
+
Example::
|
|
191649
|
+
|
|
191650
|
+
# The code below shows an example of how to instantiate this type.
|
|
191651
|
+
# The values are placeholders you should change.
|
|
191652
|
+
from aws_cdk import aws_quicksight as quicksight
|
|
191653
|
+
|
|
191654
|
+
table_pinned_field_options_property = quicksight.CfnTemplate.TablePinnedFieldOptionsProperty(
|
|
191655
|
+
pinned_left_fields=["pinnedLeftFields"]
|
|
191656
|
+
)
|
|
191657
|
+
'''
|
|
191658
|
+
if __debug__:
|
|
191659
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b45b9f9c4a8e69871af3d427ee971e1adea8a6f8e95067f90063fb60e3665b0e)
|
|
191660
|
+
check_type(argname="argument pinned_left_fields", value=pinned_left_fields, expected_type=type_hints["pinned_left_fields"])
|
|
191661
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
191662
|
+
if pinned_left_fields is not None:
|
|
191663
|
+
self._values["pinned_left_fields"] = pinned_left_fields
|
|
191664
|
+
|
|
191665
|
+
@builtins.property
|
|
191666
|
+
def pinned_left_fields(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
191667
|
+
'''
|
|
191668
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepinnedfieldoptions.html#cfn-quicksight-template-tablepinnedfieldoptions-pinnedleftfields
|
|
191669
|
+
'''
|
|
191670
|
+
result = self._values.get("pinned_left_fields")
|
|
191671
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
191672
|
+
|
|
191673
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
191674
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
191675
|
+
|
|
191676
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
191677
|
+
return not (rhs == self)
|
|
191678
|
+
|
|
191679
|
+
def __repr__(self) -> str:
|
|
191680
|
+
return "TablePinnedFieldOptionsProperty(%s)" % ", ".join(
|
|
191681
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
191682
|
+
)
|
|
191683
|
+
|
|
189387
191684
|
@jsii.data_type(
|
|
189388
191685
|
jsii_type="aws-cdk-lib.aws_quicksight.CfnTemplate.TableRowConditionalFormattingProperty",
|
|
189389
191686
|
jsii_struct_bases=[],
|
|
@@ -207434,8 +209731,26 @@ def _typecheckingstub__c7837f741338797d7b367bd8f818d5d6f2f733c9366fac33fba11eea1
|
|
|
207434
209731
|
"""Type checking stubs"""
|
|
207435
209732
|
pass
|
|
207436
209733
|
|
|
209734
|
+
def _typecheckingstub__62fd79d6d6b83de52fd9c66519b63f99afe25d2524c06723daaf72c4fcb8b997(
|
|
209735
|
+
*,
|
|
209736
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ConditionalFormattingIconProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209737
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209738
|
+
) -> None:
|
|
209739
|
+
"""Type checking stubs"""
|
|
209740
|
+
pass
|
|
209741
|
+
|
|
209742
|
+
def _typecheckingstub__fbd6a01397645828bcae2c115e1d8f217c81792121ff843ce7c7a98717d66bbd(
|
|
209743
|
+
*,
|
|
209744
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ConditionalFormattingIconProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209745
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209746
|
+
) -> None:
|
|
209747
|
+
"""Type checking stubs"""
|
|
209748
|
+
pass
|
|
209749
|
+
|
|
207437
209750
|
def _typecheckingstub__c47a8a963b224d51f9eebe235dee2686c303a35b7bb953424d4470373ae23c31(
|
|
207438
209751
|
*,
|
|
209752
|
+
actual_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPIActualValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209753
|
+
comparison_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPIComparisonValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207439
209754
|
primary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPIPrimaryValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207440
209755
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPIProgressBarConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207441
209756
|
) -> None:
|
|
@@ -207475,7 +209790,9 @@ def _typecheckingstub__14494fc1848bd55db71c296019baf22f78b5e68a3679d356c04f82b34
|
|
|
207475
209790
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ProgressBarOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207476
209791
|
secondary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.SecondaryValueOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207477
209792
|
secondary_value_font_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.FontConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209793
|
+
sparkline: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPISparklineOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207478
209794
|
trend_arrows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.TrendArrowOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209795
|
+
visual_layout_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPIVisualLayoutOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
207479
209796
|
) -> None:
|
|
207480
209797
|
"""Type checking stubs"""
|
|
207481
209798
|
pass
|
|
@@ -207502,6 +209819,23 @@ def _typecheckingstub__e93019a993ee84e58e6d870f4d5ee82c10125c910ab2214510a26d9b3
|
|
|
207502
209819
|
"""Type checking stubs"""
|
|
207503
209820
|
pass
|
|
207504
209821
|
|
|
209822
|
+
def _typecheckingstub__3be4495469d6e19fe8ef384eec06f1df885d3447466904ecdffe0f7ac2355ebd(
|
|
209823
|
+
*,
|
|
209824
|
+
type: builtins.str,
|
|
209825
|
+
color: typing.Optional[builtins.str] = None,
|
|
209826
|
+
tooltip_visibility: typing.Optional[builtins.str] = None,
|
|
209827
|
+
visibility: typing.Optional[builtins.str] = None,
|
|
209828
|
+
) -> None:
|
|
209829
|
+
"""Type checking stubs"""
|
|
209830
|
+
pass
|
|
209831
|
+
|
|
209832
|
+
def _typecheckingstub__48fbce62cfa096a37c10afd1546006b403110253ae89f9ad8d55fc91cd7f6f30(
|
|
209833
|
+
*,
|
|
209834
|
+
standard_layout: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.KPIVisualStandardLayoutProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209835
|
+
) -> None:
|
|
209836
|
+
"""Type checking stubs"""
|
|
209837
|
+
pass
|
|
209838
|
+
|
|
207505
209839
|
def _typecheckingstub__d5d36bea3f6023d9c8597cca3babeb32cbeb0db83e22f9d75ccda908876eee36(
|
|
207506
209840
|
*,
|
|
207507
209841
|
visual_id: builtins.str,
|
|
@@ -207515,6 +209849,13 @@ def _typecheckingstub__d5d36bea3f6023d9c8597cca3babeb32cbeb0db83e22f9d75ccda9088
|
|
|
207515
209849
|
"""Type checking stubs"""
|
|
207516
209850
|
pass
|
|
207517
209851
|
|
|
209852
|
+
def _typecheckingstub__d68e110b12f2158f2717a768c70570e746f7d8a26d6352fb02468e589306879b(
|
|
209853
|
+
*,
|
|
209854
|
+
type: builtins.str,
|
|
209855
|
+
) -> None:
|
|
209856
|
+
"""Type checking stubs"""
|
|
209857
|
+
pass
|
|
209858
|
+
|
|
207518
209859
|
def _typecheckingstub__43cac7e826338cc7ef6b1274b75855f2c64aa3f565868ee802e58284861f9b22(
|
|
207519
209860
|
*,
|
|
207520
209861
|
custom_label: typing.Optional[builtins.str] = None,
|
|
@@ -209088,6 +211429,7 @@ def _typecheckingstub__3e2fbb1b2e487ba844b115dc8c6c8e9e7d13396a1c9163a272f6cc523
|
|
|
209088
211429
|
def _typecheckingstub__4b1581ac01a2a6068fe7519e9017b2a7cf534ecaa479c68cb2a0e30864b41438(
|
|
209089
211430
|
*,
|
|
209090
211431
|
order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
211432
|
+
pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.TablePinnedFieldOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
209091
211433
|
selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.TableFieldOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
209092
211434
|
) -> None:
|
|
209093
211435
|
"""Type checking stubs"""
|
|
@@ -209134,6 +211476,13 @@ def _typecheckingstub__ea5c6548516cd73443b2c8ca738d90c5d45f6c6d183d60f11d28d228b
|
|
|
209134
211476
|
"""Type checking stubs"""
|
|
209135
211477
|
pass
|
|
209136
211478
|
|
|
211479
|
+
def _typecheckingstub__77c1903cf87e0cd86e49cbaf852606e51b0ebc014ef8e0eec7540fbab943946e(
|
|
211480
|
+
*,
|
|
211481
|
+
pinned_left_fields: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
211482
|
+
) -> None:
|
|
211483
|
+
"""Type checking stubs"""
|
|
211484
|
+
pass
|
|
211485
|
+
|
|
209137
211486
|
def _typecheckingstub__7158087ab33dc66b9914fb7e235c4a5085d753991dc219088d154df66fa5a712(
|
|
209138
211487
|
*,
|
|
209139
211488
|
background_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysis.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -211918,8 +214267,26 @@ def _typecheckingstub__62652aaab644d6381c34df14cdb253620c9017787c2daa67a97c79a88
|
|
|
211918
214267
|
"""Type checking stubs"""
|
|
211919
214268
|
pass
|
|
211920
214269
|
|
|
214270
|
+
def _typecheckingstub__919a286d11388cef9537fdc99786898889b85fc6f3875b56f0e6305dfa083ae9(
|
|
214271
|
+
*,
|
|
214272
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ConditionalFormattingIconProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214273
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214274
|
+
) -> None:
|
|
214275
|
+
"""Type checking stubs"""
|
|
214276
|
+
pass
|
|
214277
|
+
|
|
214278
|
+
def _typecheckingstub__3c10a5ebe510e02cb10399ecb639ce46b626d86fb5843157da57238e274fc67f(
|
|
214279
|
+
*,
|
|
214280
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ConditionalFormattingIconProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214281
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214282
|
+
) -> None:
|
|
214283
|
+
"""Type checking stubs"""
|
|
214284
|
+
pass
|
|
214285
|
+
|
|
211921
214286
|
def _typecheckingstub__054ca1d8afce6838bbd147fe7ef428987b8990694493d50a2c27acfa33440267(
|
|
211922
214287
|
*,
|
|
214288
|
+
actual_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPIActualValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214289
|
+
comparison_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPIComparisonValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211923
214290
|
primary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPIPrimaryValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211924
214291
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPIProgressBarConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211925
214292
|
) -> None:
|
|
@@ -211959,7 +214326,9 @@ def _typecheckingstub__59853c403e669ab17e13d6f88be86de38bedce05a11c9ccf87f43262a
|
|
|
211959
214326
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ProgressBarOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211960
214327
|
secondary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.SecondaryValueOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211961
214328
|
secondary_value_font_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.FontConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214329
|
+
sparkline: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPISparklineOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211962
214330
|
trend_arrows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.TrendArrowOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214331
|
+
visual_layout_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPIVisualLayoutOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
211963
214332
|
) -> None:
|
|
211964
214333
|
"""Type checking stubs"""
|
|
211965
214334
|
pass
|
|
@@ -211986,6 +214355,23 @@ def _typecheckingstub__830e3123ef066906448dfaa37c5cc66f39a978b0ec1a8616349a89766
|
|
|
211986
214355
|
"""Type checking stubs"""
|
|
211987
214356
|
pass
|
|
211988
214357
|
|
|
214358
|
+
def _typecheckingstub__663aba93d0b6c71a0c5ce59ead14a6dc298172e3c9f326b0ffda40298b8980bf(
|
|
214359
|
+
*,
|
|
214360
|
+
type: builtins.str,
|
|
214361
|
+
color: typing.Optional[builtins.str] = None,
|
|
214362
|
+
tooltip_visibility: typing.Optional[builtins.str] = None,
|
|
214363
|
+
visibility: typing.Optional[builtins.str] = None,
|
|
214364
|
+
) -> None:
|
|
214365
|
+
"""Type checking stubs"""
|
|
214366
|
+
pass
|
|
214367
|
+
|
|
214368
|
+
def _typecheckingstub__b3863a82f0561bdb9b66f36a181b4bf3558c5e1d26ac7d046102aa3cf6a4b22a(
|
|
214369
|
+
*,
|
|
214370
|
+
standard_layout: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.KPIVisualStandardLayoutProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
214371
|
+
) -> None:
|
|
214372
|
+
"""Type checking stubs"""
|
|
214373
|
+
pass
|
|
214374
|
+
|
|
211989
214375
|
def _typecheckingstub__e7b926a06aee010f1ae9cc3385634ef06b770bfdeb88431b5e104610f5aac99d(
|
|
211990
214376
|
*,
|
|
211991
214377
|
visual_id: builtins.str,
|
|
@@ -211999,6 +214385,13 @@ def _typecheckingstub__e7b926a06aee010f1ae9cc3385634ef06b770bfdeb88431b5e104610f
|
|
|
211999
214385
|
"""Type checking stubs"""
|
|
212000
214386
|
pass
|
|
212001
214387
|
|
|
214388
|
+
def _typecheckingstub__f172711b23d093cf923c9ef61a740b893f564403053d124223b83bab08c6723f(
|
|
214389
|
+
*,
|
|
214390
|
+
type: builtins.str,
|
|
214391
|
+
) -> None:
|
|
214392
|
+
"""Type checking stubs"""
|
|
214393
|
+
pass
|
|
214394
|
+
|
|
212002
214395
|
def _typecheckingstub__ed3aea282a5c2eb2cd77ddf8885ac91a026dcc243dc633f7e35b5b626157d81a(
|
|
212003
214396
|
*,
|
|
212004
214397
|
custom_label: typing.Optional[builtins.str] = None,
|
|
@@ -213586,6 +215979,7 @@ def _typecheckingstub__202a64e8c6661e5c0dd724d0e71c19aab1a8e9922ae97db8496df4d45
|
|
|
213586
215979
|
def _typecheckingstub__72ee146032d78abdf24c9225b55a85b01c617371b25550f6b22f15a263905c19(
|
|
213587
215980
|
*,
|
|
213588
215981
|
order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
215982
|
+
pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.TablePinnedFieldOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
213589
215983
|
selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.TableFieldOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
213590
215984
|
) -> None:
|
|
213591
215985
|
"""Type checking stubs"""
|
|
@@ -213632,6 +216026,13 @@ def _typecheckingstub__4f0aadb280e9d6f01117c85a605f50b9cfeaa5c244f047b536abf34b9
|
|
|
213632
216026
|
"""Type checking stubs"""
|
|
213633
216027
|
pass
|
|
213634
216028
|
|
|
216029
|
+
def _typecheckingstub__33457a3c8423dbaa75e524d9d1499fa98efa3094dce4e543d7e40e78a1dd9165(
|
|
216030
|
+
*,
|
|
216031
|
+
pinned_left_fields: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
216032
|
+
) -> None:
|
|
216033
|
+
"""Type checking stubs"""
|
|
216034
|
+
pass
|
|
216035
|
+
|
|
213635
216036
|
def _typecheckingstub__a70ca40b8f7620081051428a4a06534fac14d4125c7f387a10c5d9ad65d28245(
|
|
213636
216037
|
*,
|
|
213637
216038
|
background_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDashboard.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -217290,8 +219691,26 @@ def _typecheckingstub__84a93917bca10c20c9e72df34deb76834cb5aa1fd09a4b6e524e4b245
|
|
|
217290
219691
|
"""Type checking stubs"""
|
|
217291
219692
|
pass
|
|
217292
219693
|
|
|
219694
|
+
def _typecheckingstub__2dffb3b08c0efb00a2dd126ef1eecafaa340228f3b5732b6f1d50f773826188a(
|
|
219695
|
+
*,
|
|
219696
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.ConditionalFormattingIconProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219697
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219698
|
+
) -> None:
|
|
219699
|
+
"""Type checking stubs"""
|
|
219700
|
+
pass
|
|
219701
|
+
|
|
219702
|
+
def _typecheckingstub__d9eb1b23ffff0116e21e69887a057315fe696819cec0f84f46f7e640234cd30d(
|
|
219703
|
+
*,
|
|
219704
|
+
icon: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.ConditionalFormattingIconProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219705
|
+
text_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219706
|
+
) -> None:
|
|
219707
|
+
"""Type checking stubs"""
|
|
219708
|
+
pass
|
|
219709
|
+
|
|
217293
219710
|
def _typecheckingstub__339f1d2a70fcfa43c5d28bf4f6c1fd73d3f069c24d0058071e781bec0defed3c(
|
|
217294
219711
|
*,
|
|
219712
|
+
actual_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPIActualValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219713
|
+
comparison_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPIComparisonValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217295
219714
|
primary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPIPrimaryValueConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217296
219715
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPIProgressBarConditionalFormattingProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217297
219716
|
) -> None:
|
|
@@ -217331,7 +219750,9 @@ def _typecheckingstub__2dfbd0856000c8b9e8e7a25558c9b5d729907669af77294b37213426b
|
|
|
217331
219750
|
progress_bar: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.ProgressBarOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217332
219751
|
secondary_value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.SecondaryValueOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217333
219752
|
secondary_value_font_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.FontConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219753
|
+
sparkline: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPISparklineOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217334
219754
|
trend_arrows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.TrendArrowOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219755
|
+
visual_layout_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPIVisualLayoutOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
217335
219756
|
) -> None:
|
|
217336
219757
|
"""Type checking stubs"""
|
|
217337
219758
|
pass
|
|
@@ -217358,6 +219779,23 @@ def _typecheckingstub__f4b39ef55b680cbb12fafd91103298c38998b9e927dab4376ad626517
|
|
|
217358
219779
|
"""Type checking stubs"""
|
|
217359
219780
|
pass
|
|
217360
219781
|
|
|
219782
|
+
def _typecheckingstub__6183b3ba8f4515a9d5b9bc06343a7a906895257c322dfbb96589aad73a5ca5fc(
|
|
219783
|
+
*,
|
|
219784
|
+
type: builtins.str,
|
|
219785
|
+
color: typing.Optional[builtins.str] = None,
|
|
219786
|
+
tooltip_visibility: typing.Optional[builtins.str] = None,
|
|
219787
|
+
visibility: typing.Optional[builtins.str] = None,
|
|
219788
|
+
) -> None:
|
|
219789
|
+
"""Type checking stubs"""
|
|
219790
|
+
pass
|
|
219791
|
+
|
|
219792
|
+
def _typecheckingstub__1cfb28ab26a94a06d33f496c4a03e8d245c5004dbd2a4f95e49c9cb17ee76386(
|
|
219793
|
+
*,
|
|
219794
|
+
standard_layout: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.KPIVisualStandardLayoutProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
219795
|
+
) -> None:
|
|
219796
|
+
"""Type checking stubs"""
|
|
219797
|
+
pass
|
|
219798
|
+
|
|
217361
219799
|
def _typecheckingstub__d4d8219c64814a915b6f55ee6fbea36745a1eb67e9d3762944f7a1dc303f8d24(
|
|
217362
219800
|
*,
|
|
217363
219801
|
visual_id: builtins.str,
|
|
@@ -217371,6 +219809,13 @@ def _typecheckingstub__d4d8219c64814a915b6f55ee6fbea36745a1eb67e9d3762944f7a1dc3
|
|
|
217371
219809
|
"""Type checking stubs"""
|
|
217372
219810
|
pass
|
|
217373
219811
|
|
|
219812
|
+
def _typecheckingstub__267de0f3e92d4c6362e4104fe04fde215f6781fc0ddaebad08ac75372afe8c30(
|
|
219813
|
+
*,
|
|
219814
|
+
type: builtins.str,
|
|
219815
|
+
) -> None:
|
|
219816
|
+
"""Type checking stubs"""
|
|
219817
|
+
pass
|
|
219818
|
+
|
|
217374
219819
|
def _typecheckingstub__3fd818a7c255c79287bf84b2a124248eb218f11289ab7fb4a22c849ded8e80a8(
|
|
217375
219820
|
*,
|
|
217376
219821
|
custom_label: typing.Optional[builtins.str] = None,
|
|
@@ -218926,6 +221371,7 @@ def _typecheckingstub__779e6a5f975a683bc59b05bce4b3c638ac2dd48df1efff42a514cf6d6
|
|
|
218926
221371
|
def _typecheckingstub__2796b1737ad870376487761ac141740bbac607a367593f554b3fd534c5f32a36(
|
|
218927
221372
|
*,
|
|
218928
221373
|
order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
221374
|
+
pinned_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.TablePinnedFieldOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
218929
221375
|
selected_field_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.TableFieldOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
218930
221376
|
) -> None:
|
|
218931
221377
|
"""Type checking stubs"""
|
|
@@ -218972,6 +221418,13 @@ def _typecheckingstub__314e5e5ec10f290574f10eaea635bbed4ba331282f6e96fbb8e6bde77
|
|
|
218972
221418
|
"""Type checking stubs"""
|
|
218973
221419
|
pass
|
|
218974
221420
|
|
|
221421
|
+
def _typecheckingstub__b45b9f9c4a8e69871af3d427ee971e1adea8a6f8e95067f90063fb60e3665b0e(
|
|
221422
|
+
*,
|
|
221423
|
+
pinned_left_fields: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
221424
|
+
) -> None:
|
|
221425
|
+
"""Type checking stubs"""
|
|
221426
|
+
pass
|
|
221427
|
+
|
|
218975
221428
|
def _typecheckingstub__178cc4da695f91cc458c7388d9d495874b607f05c4a8d391049bccdc3abe00f8(
|
|
218976
221429
|
*,
|
|
218977
221430
|
background_color: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTemplate.ConditionalFormattingColorProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|