OptInResourceDataTable

data class OptInResourceDataTable(val catalogId: String? = null, val databaseName: String, val name: String? = null, val wildcard: Boolean? = null)

Constructors

Link copied to clipboard
constructor(catalogId: String? = null, databaseName: String, name: String? = null, wildcard: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val catalogId: String? = null

Identifier for the Data Catalog. By default, it is the account ID of the caller.

Link copied to clipboard

The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.

Link copied to clipboard
val name: String? = null

Name of the table.

Link copied to clipboard
val wildcard: Boolean? = null

Boolean value that indicates whether to use a wildcard representing every table under the specified database. When set to true, this represents all tables within the specified database. At least one of TableResource$Name or TableResource$Wildcard is required.