Class: AWSCDK::QuickSight::CfnDataSet::DataSetSemanticDescriptionProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_data_set.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(text:) ⇒ DataSetSemanticDescriptionProperty

Returns a new instance of DataSetSemanticDescriptionProperty.

Parameters:

  • text (String)


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

#textString (readonly)



2395
2396
2397
# File 'quick_sight/cfn_data_set.rb', line 2395

def text
  @text
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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