All Superinterfaces:
software.constructs.IConstruct, software.constructs.IDependable, software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
ITable.Jsii$Default
All Known Implementing Classes:
ITable.Jsii$Proxy, Table

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.991Z") @Stability(Experimental) public interface ITable extends software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct
(experimental) Represents a table in a Redshift database.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    Internal default implementation for ITable.
    static final class 
    A proxy class which represents a concrete javascript instance of this type.
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The cluster where the table is located.
    (experimental) The name of the database where the table is located.
    (experimental) The columns of the table.
    (experimental) Name of the table.
    void
    grant(IUser user, @NotNull TableAction... actions)
    (experimental) Grant a user privilege to access this table.

    Methods inherited from interface software.constructs.IConstruct

    getNode

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Method Details

    • getCluster

      @Stability(Experimental) @NotNull ICluster getCluster()
      (experimental) The cluster where the table is located.
    • getDatabaseName

      @Stability(Experimental) @NotNull String getDatabaseName()
      (experimental) The name of the database where the table is located.
    • getTableColumns

      @Stability(Experimental) @NotNull List<Column> getTableColumns()
      (experimental) The columns of the table.
    • getTableName

      @Stability(Experimental) @NotNull String getTableName()
      (experimental) Name of the table.
    • grant

      @Stability(Experimental) void grant(@NotNull IUser user, @NotNull @NotNull TableAction... actions)
      (experimental) Grant a user privilege to access this table.

      Parameters:
      user - This parameter is required.
      actions - This parameter is required.