@Stability(value=Stable)
public static interface CfnPermissions.ResourceProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
ResourceProperty resourceProperty = ResourceProperty.builder()
.databaseResource(DatabaseResourceProperty.builder()
.catalogId("catalogId")
.name("name")
.build())
.dataLocationResource(DataLocationResourceProperty.builder()
.catalogId("catalogId")
.s3Resource("s3Resource")
.build())
.tableResource(TableResourceProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.name("name")
.tableWildcard(TableWildcardProperty.builder().build())
.build())
.tableWithColumnsResource(TableWithColumnsResourceProperty.builder()
.catalogId("catalogId")
.columnNames(List.of("columnNames"))
.columnWildcard(ColumnWildcardProperty.builder()
.excludedColumnNames(List.of("excludedColumnNames"))
.build())
.databaseName("databaseName")
.name("name")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPermissions.ResourceProperty.Builder
A builder for
CfnPermissions.ResourceProperty |
static class |
CfnPermissions.ResourceProperty.Jsii$Proxy
An implementation for
CfnPermissions.ResourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPermissions.ResourceProperty.Builder |
builder() |
default Object |
getDatabaseResource()
A structure for the database object.
|
default Object |
getDataLocationResource()
A structure for a data location object where permissions are granted or revoked.
|
default Object |
getTableResource()
A structure for the table object.
|
default Object |
getTableWithColumnsResource()
Currently not supported by AWS CloudFormation .
|
@Stability(value=Stable) @Nullable default Object getDatabaseResource()
@Stability(value=Stable) @Nullable default Object getDataLocationResource()
@Stability(value=Stable) @Nullable default Object getTableResource()
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
@Stability(value=Stable) @Nullable default Object getTableWithColumnsResource()
@Stability(value=Stable) static CfnPermissions.ResourceProperty.Builder builder()
Copyright © 2022. All rights reserved.