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.
10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10609 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.
10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10609 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.
10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10609 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
10609 10610 10611 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10609 def unknown @unknown end |