Class: AWSCDK::QuickSight::CfnDataSet::AppendedColumnProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(column_name:, new_column_id:) ⇒ AppendedColumnProperty

Returns a new instance of AppendedColumnProperty.

Parameters:

  • column_name (String)

    The name of the column to include in the appended result.

  • new_column_id (String)

    A unique identifier for the column in the appended result.



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_nameString (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_idString (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_propertiesObject



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_jsiiObject



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