Class CfnDataCellsFilterProps
Properties for defining a CfnDataCellsFilter
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.LakeFormation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataCellsFilterProps : Object, ICfnDataCellsFilterProps
Syntax (vb)
Public Class CfnDataCellsFilterProps
Inherits Object
Implements ICfnDataCellsFilterProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LakeFormation;
var allRowsWildcard;
var cfnDataCellsFilterProps = new CfnDataCellsFilterProps {
DatabaseName = "databaseName",
Name = "name",
TableCatalogId = "tableCatalogId",
TableName = "tableName",
// the properties below are optional
ColumnNames = new [] { "columnNames" },
ColumnWildcard = new ColumnWildcardProperty {
ExcludedColumnNames = new [] { "excludedColumnNames" }
},
RowFilter = new RowFilterProperty {
AllRowsWildcard = allRowsWildcard,
FilterExpression = "filterExpression"
}
};
Synopsis
Constructors
Cfn |
Properties
Column |
An array of UTF-8 strings. |
Column |
A wildcard with exclusions. |
Database |
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
Name | UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
Row |
A PartiQL predicate. |
Table |
Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
Table |
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
Constructors
CfnDataCellsFilterProps()
public CfnDataCellsFilterProps()
Properties
ColumnNames
An array of UTF-8 strings.
public string[] ColumnNames { get; set; }
Property Value
System.
Remarks
ColumnWildcard
A wildcard with exclusions.
public object ColumnWildcard { get; set; }
Property Value
System.
Remarks
You must specify either a ColumnNames
list or the ColumnWildCard
.
DatabaseName
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
public string DatabaseName { get; set; }
Property Value
System.
Remarks
Name
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
public string Name { get; set; }
Property Value
System.
Remarks
The name given by the user to the data filter cell.
RowFilter
A PartiQL predicate.
public object RowFilter { get; set; }
Property Value
System.
Remarks
TableCatalogId
Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
public string TableCatalogId { get; set; }
Property Value
System.
Remarks
The ID of the catalog to which the table belongs.
TableName
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
public string TableName { get; set; }
Property Value
System.