Class: AWSCDK::CleanRooms::CfnIdMappingTable::IdMappingTableInputReferencePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CleanRooms::CfnIdMappingTable::IdMappingTableInputReferencePropertiesProperty
- Defined in:
- clean_rooms/cfn_id_mapping_table.rb
Overview
The input reference properties for the ID mapping table.
Instance Attribute Summary collapse
-
#id_mapping_table_input_source ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::CleanRooms::CfnIdMappingTable::IdMappingTableInputSourceProperty>
readonly
The input source of the ID mapping table.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id_mapping_table_input_source:) ⇒ IdMappingTableInputReferencePropertiesProperty
constructor
A new instance of IdMappingTableInputReferencePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(id_mapping_table_input_source:) ⇒ IdMappingTableInputReferencePropertiesProperty
Returns a new instance of IdMappingTableInputReferencePropertiesProperty.
668 669 670 671 |
# File 'clean_rooms/cfn_id_mapping_table.rb', line 668 def initialize(id_mapping_table_input_source:) @id_mapping_table_input_source = id_mapping_table_input_source Jsii::Type.check_type(@id_mapping_table_input_source, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfY2xlYW5yb29tcy5DZm5JZE1hcHBpbmdUYWJsZS5JZE1hcHBpbmdUYWJsZUlucHV0U291cmNlUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "idMappingTableInputSource") end |
Instance Attribute Details
#id_mapping_table_input_source ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::CleanRooms::CfnIdMappingTable::IdMappingTableInputSourceProperty> (readonly)
The input source of the ID mapping table.
677 678 679 |
# File 'clean_rooms/cfn_id_mapping_table.rb', line 677 def id_mapping_table_input_source @id_mapping_table_input_source end |
Class Method Details
.jsii_properties ⇒ Object
679 680 681 682 683 |
# File 'clean_rooms/cfn_id_mapping_table.rb', line 679 def self.jsii_properties { :id_mapping_table_input_source => "idMappingTableInputSource", } end |
Instance Method Details
#to_jsii ⇒ Object
685 686 687 688 689 690 691 |
# File 'clean_rooms/cfn_id_mapping_table.rb', line 685 def to_jsii result = {} result.merge!({ "idMappingTableInputSource" => @id_mapping_table_input_source, }) result.compact end |