You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::QuickSight::Types::RelationalTable

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RelationalTable as input to an Aws::Client method, you can use a vanilla Hash:

{
  data_source_arn: "Arn", # required
  schema: "RelationalTableSchema",
  name: "RelationalTableName", # required
  input_columns: [ # required
    {
      name: "ColumnName", # required
      type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
    },
  ],
}

A physical table type for relational data sources.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#data_source_arnString

The Amazon Resource Name (ARN) for the data source.

Returns:

  • (String)

    The Amazon Resource Name (ARN) for the data source.

#input_columnsArray<Types::InputColumn>

The column schema of the table.

Returns:

#nameString

The name of the relational table.

Returns:

  • (String)

    The name of the relational table.

#schemaString

The schema name. This name applies to certain relational database engines.

Returns:

  • (String)

    The schema name.