Class: Aws::CleanRooms::Types::SchemaTypeProperties

Inherits:
Struct
  • Object
show all
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.

Defined Under Namespace

Classes: ConfiguredTableAssociation, IdMappingTable, IntermediateTable, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configured_table_associationTypes::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_tableTypes::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_tableTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



10609
10610
10611
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 10609

def unknown
  @unknown
end