Class: AWSCDK::QuickSight::CfnTemplate::KPIVisualStandardLayoutProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::KPIVisualStandardLayoutProperty
- Defined in:
- quick_sight/cfn_template.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.
15506 15507 15508 15509 |
# File 'quick_sight/cfn_template.rb', line 15506 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.
15515 15516 15517 |
# File 'quick_sight/cfn_template.rb', line 15515 def type @type end |
Class Method Details
.jsii_properties ⇒ Object
15517 15518 15519 15520 15521 |
# File 'quick_sight/cfn_template.rb', line 15517 def self.jsii_properties { :type => "type", } end |
Instance Method Details
#to_jsii ⇒ Object
15523 15524 15525 15526 15527 15528 15529 |
# File 'quick_sight/cfn_template.rb', line 15523 def to_jsii result = {} result.merge!({ "type" => @type, }) result.compact end |