Class: AWSCDK::QuickSight::CfnDataSet::SaaSTableProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDataSet::SaaSTableProperty
- Defined in:
- quick_sight/cfn_data_set.rb
Overview
A table from a Software-as-a-Service (SaaS) data source, including connection details and column definitions.
Instance Attribute Summary collapse
-
#data_source_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the SaaS data source.
-
#input_columns ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDataSet::InputColumnProperty>
readonly
The list of input columns available from the SaaS table.
-
#table_path ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDataSet::TablePathElementProperty>
readonly
The hierarchical path to the table within the SaaS data source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data_source_arn:, input_columns:, table_path:) ⇒ SaaSTableProperty
constructor
A new instance of SaaSTableProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(data_source_arn:, input_columns:, table_path:) ⇒ SaaSTableProperty
Returns a new instance of SaaSTableProperty.
5291 5292 5293 5294 5295 5296 5297 5298 |
# File 'quick_sight/cfn_data_set.rb', line 5291 def initialize(data_source_arn:, input_columns:, table_path:) @data_source_arn = data_source_arn Jsii::Type.check_type(@data_source_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "dataSourceArn") @input_columns = input_columns Jsii::Type.check_type(@input_columns, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcXVpY2tzaWdodC5DZm5EYXRhU2V0LklucHV0Q29sdW1uUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "inputColumns") @table_path = table_path Jsii::Type.check_type(@table_path, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcXVpY2tzaWdodC5DZm5EYXRhU2V0LlRhYmxlUGF0aEVsZW1lbnRQcm9wZXJ0eSJ9XX19LCJraW5kIjoiYXJyYXkifX1dfX0=")), "tablePath") end |
Instance Attribute Details
#data_source_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the SaaS data source.
5304 5305 5306 |
# File 'quick_sight/cfn_data_set.rb', line 5304 def data_source_arn @data_source_arn end |
#input_columns ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDataSet::InputColumnProperty> (readonly)
The list of input columns available from the SaaS table.
5309 5310 5311 |
# File 'quick_sight/cfn_data_set.rb', line 5309 def input_columns @input_columns end |
#table_path ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDataSet::TablePathElementProperty> (readonly)
The hierarchical path to the table within the SaaS data source.
5314 5315 5316 |
# File 'quick_sight/cfn_data_set.rb', line 5314 def table_path @table_path end |
Class Method Details
.jsii_properties ⇒ Object
5316 5317 5318 5319 5320 5321 5322 |
# File 'quick_sight/cfn_data_set.rb', line 5316 def self.jsii_properties { :data_source_arn => "dataSourceArn", :input_columns => "inputColumns", :table_path => "tablePath", } end |
Instance Method Details
#to_jsii ⇒ Object
5324 5325 5326 5327 5328 5329 5330 5331 5332 |
# File 'quick_sight/cfn_data_set.rb', line 5324 def to_jsii result = {} result.merge!({ "dataSourceArn" => @data_source_arn, "inputColumns" => @input_columns, "tablePath" => @table_path, }) result.compact end |