Class: Aws::CleanRooms::Types::SchemaTypeProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::SchemaTypeProperties
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
SchemaTypeProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SchemaTypeProperties corresponding to the set member.
Information about the schema type properties.
Defined Under Namespace
Classes: ConfiguredTableAssociation, IdMappingTable, IntermediateTable, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configured_table_association ⇒ Types::ConfiguredTableAssociationSchemaTypeProperties
The schema type properties for a configured table association.
-
#id_mapping_table ⇒ Types::IdMappingTableSchemaTypeProperties
The ID mapping table for the schema type properties.
-
#intermediate_table ⇒ Types::IntermediateTableSchemaTypeProperties
The schema type properties for an intermediate table.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#configured_table_association ⇒ Types::ConfiguredTableAssociationSchemaTypeProperties
The schema type properties for a configured table association.
10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10894 class SchemaTypeProperties < Struct.new( :id_mapping_table, :intermediate_table, :configured_table_association, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdMappingTable < SchemaTypeProperties; end class IntermediateTable < SchemaTypeProperties; end class ConfiguredTableAssociation < SchemaTypeProperties; end class Unknown < SchemaTypeProperties; end end |
#id_mapping_table ⇒ Types::IdMappingTableSchemaTypeProperties
The ID mapping table for the schema type properties.
10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10894 class SchemaTypeProperties < Struct.new( :id_mapping_table, :intermediate_table, :configured_table_association, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdMappingTable < SchemaTypeProperties; end class IntermediateTable < SchemaTypeProperties; end class ConfiguredTableAssociation < SchemaTypeProperties; end class Unknown < SchemaTypeProperties; end end |
#intermediate_table ⇒ Types::IntermediateTableSchemaTypeProperties
The schema type properties for an intermediate table.
10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10894 class SchemaTypeProperties < Struct.new( :id_mapping_table, :intermediate_table, :configured_table_association, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdMappingTable < SchemaTypeProperties; end class IntermediateTable < SchemaTypeProperties; end class ConfiguredTableAssociation < SchemaTypeProperties; end class Unknown < SchemaTypeProperties; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
10894 10895 10896 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10894 def unknown @unknown end |