@aws-cdk_aws-redshift-alpha.ITable

interface ITable ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Redshift.Alpha.ITable
Gogithub.com/aws/aws-cdk-go/awscdkredshiftalpha/v2#ITable
Javasoftware.amazon.awscdk.services.redshift.alpha.ITable
Pythonaws_cdk.aws_redshift_alpha.ITable
TypeScript (source)@aws-cdk/aws-redshift-alpha ยป ITable

Implemented by Table

Obtainable from Table.fromTableAttributes()

Represents a table in a Redshift database.

Properties

NameTypeDescription
cluster๐Ÿ”นIClusterThe cluster where the table is located.
databaseName๐Ÿ”นstringThe name of the database where the table is located.
node๐Ÿ”นNodeThe tree node.
tableColumns๐Ÿ”นColumn[]The columns of the table.
tableName๐Ÿ”นstringName of the table.

cluster๐Ÿ”น

Type: ICluster

The cluster where the table is located.


databaseName๐Ÿ”น

Type: string

The name of the database where the table is located.


node๐Ÿ”น

Type: Node

The tree node.


tableColumns๐Ÿ”น

Type: Column[]

The columns of the table.


tableName๐Ÿ”น

Type: string

Name of the table.

Methods

NameDescription
grant(user, ...actions)๐Ÿ”นGrant a user privilege to access this table.

grant(user, ...actions)๐Ÿ”น

public grant(user: IUser, ...actions: TableAction[]): void

Parameters

  • user IUser
  • actions TableAction

Grant a user privilege to access this table.