Interface CfnDataCellsFilterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataCellsFilterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:15.449Z")
@Stability(Stable)
public interface CfnDataCellsFilterProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataCellsFilter.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataCellsFilterPropsstatic final classAn implementation forCfnDataCellsFilterProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An array of UTF-8 strings.default ObjectA wildcard with exclusions.UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .getName()UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .default ObjectA PartiQL predicate.Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .A database in the Data Catalog .
- See Also:
-
getName
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .The name given by the user to the data filter cell.
- See Also:
-
getTableCatalogId
Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .The ID of the catalog to which the table belongs.
- See Also:
-
getTableName
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .A table in the database.
- See Also:
-
getColumnNames
An array of UTF-8 strings.A list of column names.
- See Also:
-
getColumnWildcard
A wildcard with exclusions.You must specify either a
ColumnNameslist or theColumnWildCard.- See Also:
-
getRowFilter
A PartiQL predicate.- See Also:
-
builder
- Returns:
- a
CfnDataCellsFilterProps.BuilderofCfnDataCellsFilterProps
-