Class: AWSCDK::QuickSight::CfnDashboard::SheetImageTooltipTextProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::SheetImageTooltipTextProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The text that appears in the sheet image tooltip.
Instance Attribute Summary collapse
-
#plain_text ⇒ String?
readonly
The plain text format.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(plain_text: nil) ⇒ SheetImageTooltipTextProperty
constructor
A new instance of SheetImageTooltipTextProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(plain_text: nil) ⇒ SheetImageTooltipTextProperty
Returns a new instance of SheetImageTooltipTextProperty.
27553 27554 27555 27556 |
# File 'quick_sight/cfn_dashboard.rb', line 27553 def initialize(plain_text: nil) @plain_text = plain_text Jsii::Type.check_type(@plain_text, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "plainText") unless @plain_text.nil? end |
Instance Attribute Details
#plain_text ⇒ String? (readonly)
The plain text format.
27562 27563 27564 |
# File 'quick_sight/cfn_dashboard.rb', line 27562 def plain_text @plain_text end |
Class Method Details
.jsii_properties ⇒ Object
27564 27565 27566 27567 27568 |
# File 'quick_sight/cfn_dashboard.rb', line 27564 def self.jsii_properties { :plain_text => "plainText", } end |
Instance Method Details
#to_jsii ⇒ Object
27570 27571 27572 27573 27574 27575 27576 |
# File 'quick_sight/cfn_dashboard.rb', line 27570 def to_jsii result = {} result.merge!({ "plainText" => @plain_text, }) result.compact end |