@Stability(value=Stable)
public static interface CfnPermissions.TableResourceProperty
extends software.amazon.jsii.JsiiSerializable
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lakeformation.*;
TableResourceProperty tableResourceProperty = TableResourceProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.name("name")
.tableWildcard(TableWildcardProperty.builder().build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPermissions.TableResourceProperty.Builder
A builder for
CfnPermissions.TableResourceProperty |
static class |
CfnPermissions.TableResourceProperty.Jsii$Proxy
An implementation for
CfnPermissions.TableResourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPermissions.TableResourceProperty.Builder |
builder() |
default String |
getCatalogId()
`CfnPermissions.TableResourceProperty.CatalogId`.
|
default String |
getDatabaseName()
The name of the database for the table.
|
default String |
getName()
The name of the table.
|
default Object |
getTableWildcard()
An empty object representing all tables under a database.
|
@Stability(value=Stable) @Nullable default String getCatalogId()
@Stability(value=Stable) @Nullable default String getDatabaseName()
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.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getTableWildcard()
If this field is specified instead of the Name field, all tables under DatabaseName will have permission changes applied.
@Stability(value=Stable) static CfnPermissions.TableResourceProperty.Builder builder()
Copyright © 2022. All rights reserved.