@Stability(value=Stable)
public static interface CfnPrincipalPermissions.ResourceProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
Object catalog;
Object tableWildcard;
ResourceProperty resourceProperty = ResourceProperty.builder()
.catalog(catalog)
.database(DatabaseResourceProperty.builder()
.catalogId("catalogId")
.name("name")
.build())
.dataCellsFilter(DataCellsFilterResourceProperty.builder()
.databaseName("databaseName")
.name("name")
.tableCatalogId("tableCatalogId")
.tableName("tableName")
.build())
.dataLocation(DataLocationResourceProperty.builder()
.catalogId("catalogId")
.resourceArn("resourceArn")
.build())
.lfTag(LFTagKeyResourceProperty.builder()
.catalogId("catalogId")
.tagKey("tagKey")
.tagValues(List.of("tagValues"))
.build())
.lfTagPolicy(LFTagPolicyResourceProperty.builder()
.catalogId("catalogId")
.expression(List.of(LFTagProperty.builder()
.tagKey("tagKey")
.tagValues(List.of("tagValues"))
.build()))
.resourceType("resourceType")
.build())
.table(TableResourceProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
// the properties below are optional
.name("name")
.tableWildcard(tableWildcard)
.build())
.tableWithColumns(TableWithColumnsResourceProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.name("name")
// the properties below are optional
.columnNames(List.of("columnNames"))
.columnWildcard(ColumnWildcardProperty.builder()
.excludedColumnNames(List.of("excludedColumnNames"))
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPrincipalPermissions.ResourceProperty.Builder
A builder for
CfnPrincipalPermissions.ResourceProperty |
static class |
CfnPrincipalPermissions.ResourceProperty.Jsii$Proxy
An implementation for
CfnPrincipalPermissions.ResourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPrincipalPermissions.ResourceProperty.Builder |
builder() |
default Object |
getCatalog()
`CfnPrincipalPermissions.ResourceProperty.Catalog`.
|
default Object |
getDatabase()
`CfnPrincipalPermissions.ResourceProperty.Database`.
|
default Object |
getDataCellsFilter()
`CfnPrincipalPermissions.ResourceProperty.DataCellsFilter`.
|
default Object |
getDataLocation()
`CfnPrincipalPermissions.ResourceProperty.DataLocation`.
|
default Object |
getLfTag()
`CfnPrincipalPermissions.ResourceProperty.LFTag`.
|
default Object |
getLfTagPolicy()
`CfnPrincipalPermissions.ResourceProperty.LFTagPolicy`.
|
default Object |
getTable()
`CfnPrincipalPermissions.ResourceProperty.Table`.
|
default Object |
getTableWithColumns()
`CfnPrincipalPermissions.ResourceProperty.TableWithColumns`.
|
@Stability(value=Stable) @Nullable default Object getCatalog()
@Stability(value=Stable) @Nullable default Object getDatabase()
@Stability(value=Stable) @Nullable default Object getDataCellsFilter()
@Stability(value=Stable) @Nullable default Object getDataLocation()
@Stability(value=Stable) @Nullable default Object getLfTag()
@Stability(value=Stable) @Nullable default Object getLfTagPolicy()
@Stability(value=Stable) @Nullable default Object getTable()
@Stability(value=Stable) @Nullable default Object getTableWithColumns()
@Stability(value=Stable) static CfnPrincipalPermissions.ResourceProperty.Builder builder()
Copyright © 2022. All rights reserved.