Class: AWSCDK::QuickSight::CfnDataSet::AdditionalNotesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDataSet::AdditionalNotesProperty
- Defined in:
- quick_sight/cfn_data_set.rb
Overview
Instance Attribute Summary collapse
- #text ⇒ String? readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(text: nil) ⇒ AdditionalNotesProperty
constructor
A new instance of AdditionalNotesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(text: nil) ⇒ AdditionalNotesProperty
Returns a new instance of AdditionalNotesProperty.
837 838 839 840 |
# File 'quick_sight/cfn_data_set.rb', line 837 def initialize(text: nil) @text = text Jsii::Type.check_type(@text, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "text") unless @text.nil? end |
Instance Attribute Details
#text ⇒ String? (readonly)
844 845 846 |
# File 'quick_sight/cfn_data_set.rb', line 844 def text @text end |
Class Method Details
.jsii_properties ⇒ Object
846 847 848 849 850 |
# File 'quick_sight/cfn_data_set.rb', line 846 def self.jsii_properties { :text => "text", } end |
Instance Method Details
#to_jsii ⇒ Object
852 853 854 855 856 857 858 |
# File 'quick_sight/cfn_data_set.rb', line 852 def to_jsii result = {} result.merge!({ "text" => @text, }) result.compact end |