@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.353Z") @Stability(value=Stable) public interface CfnDataCellsFilterProps 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.*;
Object allRowsWildcard;
CfnDataCellsFilterProps cfnDataCellsFilterProps = CfnDataCellsFilterProps.builder()
.databaseName("databaseName")
.name("name")
.tableCatalogId("tableCatalogId")
.tableName("tableName")
// the properties below are optional
.columnNames(List.of("columnNames"))
.columnWildcard(ColumnWildcardProperty.builder()
.excludedColumnNames(List.of("excludedColumnNames"))
.build())
.rowFilter(RowFilterProperty.builder()
.allRowsWildcard(allRowsWildcard)
.filterExpression("filterExpression")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataCellsFilterProps.Builder
A builder for
CfnDataCellsFilterProps |
static class |
CfnDataCellsFilterProps.Jsii$Proxy
An implementation for
CfnDataCellsFilterProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataCellsFilterProps.Builder |
builder() |
default List<String> |
getColumnNames()
`AWS::LakeFormation::DataCellsFilter.ColumnNames`.
|
default Object |
getColumnWildcard()
`AWS::LakeFormation::DataCellsFilter.ColumnWildcard`.
|
String |
getDatabaseName()
`AWS::LakeFormation::DataCellsFilter.DatabaseName`.
|
String |
getName()
`AWS::LakeFormation::DataCellsFilter.Name`.
|
default Object |
getRowFilter()
`AWS::LakeFormation::DataCellsFilter.RowFilter`.
|
String |
getTableCatalogId()
`AWS::LakeFormation::DataCellsFilter.TableCatalogId`.
|
String |
getTableName()
`AWS::LakeFormation::DataCellsFilter.TableName`.
|
@Stability(value=Stable) @NotNull String getDatabaseName()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getTableCatalogId()
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) @Nullable default List<String> getColumnNames()
@Stability(value=Stable) @Nullable default Object getColumnWildcard()
@Stability(value=Stable) @Nullable default Object getRowFilter()
@Stability(value=Stable) static CfnDataCellsFilterProps.Builder builder()
CfnDataCellsFilterProps.Builder of CfnDataCellsFilterPropsCopyright © 2022. All rights reserved.