Class: AWSCDK::QuickSight::CfnDataSet::ColumnDescriptionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDataSet::ColumnDescriptionProperty
- Defined in:
- quick_sight/cfn_data_set.rb
Overview
Metadata that contains a description for a column.
Instance Attribute Summary collapse
-
#text ⇒ String?
readonly
The text of a description for a column.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(text: nil) ⇒ ColumnDescriptionProperty
constructor
A new instance of ColumnDescriptionProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(text: nil) ⇒ ColumnDescriptionProperty
Returns a new instance of ColumnDescriptionProperty.
1265 1266 1267 1268 |
# File 'quick_sight/cfn_data_set.rb', line 1265 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)
The text of a description for a column.
1274 1275 1276 |
# File 'quick_sight/cfn_data_set.rb', line 1274 def text @text end |
Class Method Details
.jsii_properties ⇒ Object
1276 1277 1278 1279 1280 |
# File 'quick_sight/cfn_data_set.rb', line 1276 def self.jsii_properties { :text => "text", } end |
Instance Method Details
#to_jsii ⇒ Object
1282 1283 1284 1285 1286 1287 1288 |
# File 'quick_sight/cfn_data_set.rb', line 1282 def to_jsii result = {} result.merge!({ "text" => @text, }) result.compact end |