Class: AWSCDK::CleanRooms::CfnAnalysisTemplate::AnalysisSchemaProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
clean_rooms/cfn_analysis_template.rb

Overview

A relation within an analysis.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(referenced_tables:) ⇒ AnalysisSchemaProperty

Returns a new instance of AnalysisSchemaProperty.

Parameters:

  • referenced_tables (Array<String>)

    The tables referenced in the analysis schema.



765
766
767
768
# File 'clean_rooms/cfn_analysis_template.rb', line 765

def initialize(referenced_tables:)
  @referenced_tables = referenced_tables
  Jsii::Type.check_type(@referenced_tables, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "referencedTables")
end

Instance Attribute Details

#referenced_tablesArray<String> (readonly)

The tables referenced in the analysis schema.



774
775
776
# File 'clean_rooms/cfn_analysis_template.rb', line 774

def referenced_tables
  @referenced_tables
end

Class Method Details

.jsii_propertiesObject



776
777
778
779
780
# File 'clean_rooms/cfn_analysis_template.rb', line 776

def self.jsii_properties
  {
    :referenced_tables => "referencedTables",
  }
end

Instance Method Details

#to_jsiiObject



782
783
784
785
786
787
788
# File 'clean_rooms/cfn_analysis_template.rb', line 782

def to_jsii
  result = {}
  result.merge!({
    "referencedTables" => @referenced_tables,
  })
  result.compact
end