Class: AWSCDK::QuickSight::CfnAnalysis::KPIVisualLayoutOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::KPIVisualLayoutOptionsProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The options that determine the layout a KPI visual.
Instance Attribute Summary collapse
-
#standard_layout ⇒ AWSCDK::IResolvable, ...
readonly
The standard layout of the KPI visual.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(standard_layout: nil) ⇒ KPIVisualLayoutOptionsProperty
constructor
A new instance of KPIVisualLayoutOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(standard_layout: nil) ⇒ KPIVisualLayoutOptionsProperty
Returns a new instance of KPIVisualLayoutOptionsProperty.
16959 16960 16961 16962 |
# File 'quick_sight/cfn_analysis.rb', line 16959 def initialize(standard_layout: nil) @standard_layout = standard_layout.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::KPIVisualStandardLayoutProperty.new(**standard_layout.transform_keys(&:to_sym)) : standard_layout Jsii::Type.check_type(@standard_layout, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLktQSVZpc3VhbFN0YW5kYXJkTGF5b3V0UHJvcGVydHkifV19fQ==")), "standardLayout") unless @standard_layout.nil? end |
Instance Attribute Details
#standard_layout ⇒ AWSCDK::IResolvable, ... (readonly)
The standard layout of the KPI visual.
16968 16969 16970 |
# File 'quick_sight/cfn_analysis.rb', line 16968 def standard_layout @standard_layout end |
Class Method Details
.jsii_properties ⇒ Object
16970 16971 16972 16973 16974 |
# File 'quick_sight/cfn_analysis.rb', line 16970 def self.jsii_properties { :standard_layout => "standardLayout", } end |
Instance Method Details
#to_jsii ⇒ Object
16976 16977 16978 16979 16980 16981 16982 |
# File 'quick_sight/cfn_analysis.rb', line 16976 def to_jsii result = {} result.merge!({ "standardLayout" => @standard_layout, }) result.compact end |