Class: AWSCDK::QuickSight::CfnDataSet::AppendedColumnProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDataSet::AppendedColumnProperty
- Defined in:
- quick_sight/cfn_data_set.rb
Overview
Represents a column that will be included in the result of an append operation, combining data from multiple sources.
Instance Attribute Summary collapse
-
#column_name ⇒ String
readonly
The name of the column to include in the appended result.
-
#new_column_id ⇒ String
readonly
A unique identifier for the column in the appended result.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(column_name:, new_column_id:) ⇒ AppendedColumnProperty
constructor
A new instance of AppendedColumnProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(column_name:, new_column_id:) ⇒ AppendedColumnProperty
Returns a new instance of AppendedColumnProperty.
1050 1051 1052 1053 1054 1055 |
# File 'quick_sight/cfn_data_set.rb', line 1050 def initialize(column_name:, new_column_id:) @column_name = column_name Jsii::Type.check_type(@column_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "columnName") @new_column_id = new_column_id Jsii::Type.check_type(@new_column_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "newColumnId") end |
Instance Attribute Details
#column_name ⇒ String (readonly)
The name of the column to include in the appended result.
1061 1062 1063 |
# File 'quick_sight/cfn_data_set.rb', line 1061 def column_name @column_name end |
#new_column_id ⇒ String (readonly)
A unique identifier for the column in the appended result.
1066 1067 1068 |
# File 'quick_sight/cfn_data_set.rb', line 1066 def new_column_id @new_column_id end |
Class Method Details
.jsii_properties ⇒ Object
1068 1069 1070 1071 1072 1073 |
# File 'quick_sight/cfn_data_set.rb', line 1068 def self.jsii_properties { :column_name => "columnName", :new_column_id => "newColumnId", } end |
Instance Method Details
#to_jsii ⇒ Object
1075 1076 1077 1078 1079 1080 1081 1082 |
# File 'quick_sight/cfn_data_set.rb', line 1075 def to_jsii result = {} result.merge!({ "columnName" => @column_name, "newColumnId" => @new_column_id, }) result.compact end |