@Stability(value=Stable)
public static interface CfnPermissions.TableWithColumnsResourceProperty
extends software.amazon.jsii.JsiiSerializable
This object must take a value for at least one of ColumnsNames , ColumnsIndexes , or ColumnsWildcard .
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.*;
TableWithColumnsResourceProperty tableWithColumnsResourceProperty = TableWithColumnsResourceProperty.builder()
.catalogId("catalogId")
.columnNames(List.of("columnNames"))
.columnWildcard(ColumnWildcardProperty.builder()
.excludedColumnNames(List.of("excludedColumnNames"))
.build())
.databaseName("databaseName")
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPermissions.TableWithColumnsResourceProperty.Builder
A builder for
CfnPermissions.TableWithColumnsResourceProperty |
static class |
CfnPermissions.TableWithColumnsResourceProperty.Jsii$Proxy
An implementation for
CfnPermissions.TableWithColumnsResourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPermissions.TableWithColumnsResourceProperty.Builder |
builder() |
default String |
getCatalogId()
`CfnPermissions.TableWithColumnsResourceProperty.CatalogId`.
|
default List<String> |
getColumnNames()
The list of column names for the table.
|
default Object |
getColumnWildcard()
A wildcard specified by a `ColumnWildcard` object.
|
default String |
getDatabaseName()
The name of the database for the table with columns resource.
|
default String |
getName()
The name of the table resource.
|
@Stability(value=Stable) @Nullable default String getCatalogId()
@Stability(value=Stable) @Nullable default List<String> getColumnNames()
At least one of ColumnNames or ColumnWildcard is required.
@Stability(value=Stable) @Nullable default Object getColumnWildcard()
At least one of ColumnNames or ColumnWildcard is required.
@Stability(value=Stable) @Nullable default String getDatabaseName()
Unique to the 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()
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
@Stability(value=Stable) static CfnPermissions.TableWithColumnsResourceProperty.Builder builder()
Copyright © 2022. All rights reserved.