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
    Note:
    
  
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.
Direct Known Subclasses
Defined Under Namespace
Classes: IdMappingTable, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #id_mapping_table  ⇒ Types::IdMappingTableSchemaTypeProperties 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID mapping table for the schema type properties. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#id_mapping_table ⇒ Types::IdMappingTableSchemaTypeProperties
The ID mapping table for the schema type properties.
| 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8985 class SchemaTypeProperties < Struct.new( :id_mapping_table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdMappingTable < SchemaTypeProperties; end class Unknown < SchemaTypeProperties; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 8985 8986 8987 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8985 def unknown @unknown end |