Class: AWSCDK::QuickSight::CfnDashboard::KPIVisualStandardLayoutProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::KPIVisualStandardLayoutProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The standard layout of the KPI visual.
Instance Attribute Summary collapse
-
#type ⇒ String
readonly
The standard layout type.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(type:) ⇒ KPIVisualStandardLayoutProperty
constructor
A new instance of KPIVisualStandardLayoutProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(type:) ⇒ KPIVisualStandardLayoutProperty
Returns a new instance of KPIVisualStandardLayoutProperty.
18038 18039 18040 18041 |
# File 'quick_sight/cfn_dashboard.rb', line 18038 def initialize(type:) @type = type Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") end |
Instance Attribute Details
#type ⇒ String (readonly)
The standard layout type.
18047 18048 18049 |
# File 'quick_sight/cfn_dashboard.rb', line 18047 def type @type end |
Class Method Details
.jsii_properties ⇒ Object
18049 18050 18051 18052 18053 |
# File 'quick_sight/cfn_dashboard.rb', line 18049 def self.jsii_properties { :type => "type", } end |
Instance Method Details
#to_jsii ⇒ Object
18055 18056 18057 18058 18059 18060 18061 |
# File 'quick_sight/cfn_dashboard.rb', line 18055 def to_jsii result = {} result.merge!({ "type" => @type, }) result.compact end |