TableResource
public struct TableResource : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The identifier for the Data Catalog. By default, it is the account ID of the caller.
Declaration
Swift
public let catalogId: String?
-
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.
Declaration
Swift
public let databaseName: String
-
The name of the table.
Declaration
Swift
public let name: String?
-
A wildcard object representing every table under a database. At least one of TableResource$Name or TableResource$TableWildcard is required.
Declaration
Swift
public let tableWildcard: TableWildcard?
-
Undocumented
Declaration
Swift
public init(catalogId: String? = nil, databaseName: String, name: String? = nil, tableWildcard: TableWildcard? = nil)
-
Declaration
Swift
public func validate(name: String) throws