Class: AWSCDK::QuickSight::CfnDataSet::DataSetSemanticDescriptionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDataSet::DataSetSemanticDescriptionProperty
- 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:) ⇒ DataSetSemanticDescriptionProperty
constructor
A new instance of DataSetSemanticDescriptionProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(text:) ⇒ DataSetSemanticDescriptionProperty
Returns a new instance of DataSetSemanticDescriptionProperty.
2388 2389 2390 2391 |
# File 'quick_sight/cfn_data_set.rb', line 2388 def initialize(text:) @text = text Jsii::Type.check_type(@text, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "text") end |
Instance Attribute Details
#text ⇒ String (readonly)
2395 2396 2397 |
# File 'quick_sight/cfn_data_set.rb', line 2395 def text @text end |
Class Method Details
.jsii_properties ⇒ Object
2397 2398 2399 2400 2401 |
# File 'quick_sight/cfn_data_set.rb', line 2397 def self.jsii_properties { :text => "text", } end |
Instance Method Details
#to_jsii ⇒ Object
2403 2404 2405 2406 2407 2408 2409 |
# File 'quick_sight/cfn_data_set.rb', line 2403 def to_jsii result = {} result.merge!({ "text" => @text, }) result.compact end |