Class DataCellsFilterReference
A reference to a DataCellsFilter resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.LakeFormation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DataCellsFilterReference : IDataCellsFilterReference
Syntax (vb)
Public Class DataCellsFilterReference Implements IDataCellsFilterReference
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.Interfaces.LakeFormation;
var dataCellsFilterReference = new DataCellsFilterReference {
DatabaseName = "databaseName",
DataCellsFilterName = "dataCellsFilterName",
TableCatalogId = "tableCatalogId",
TableName = "tableName"
};
Synopsis
Constructors
| DataCellsFilterReference() | A reference to a DataCellsFilter resource. |
Properties
| DataCellsFilterName | The Name of the DataCellsFilter resource. |
| DatabaseName | The DatabaseName of the DataCellsFilter resource. |
| TableCatalogId | The TableCatalogId of the DataCellsFilter resource. |
| TableName | The TableName of the DataCellsFilter resource. |
Constructors
DataCellsFilterReference()
A reference to a DataCellsFilter resource.
public DataCellsFilterReference()
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.Interfaces.LakeFormation;
var dataCellsFilterReference = new DataCellsFilterReference {
DatabaseName = "databaseName",
DataCellsFilterName = "dataCellsFilterName",
TableCatalogId = "tableCatalogId",
TableName = "tableName"
};
Properties
DataCellsFilterName
The Name of the DataCellsFilter resource.
public string DataCellsFilterName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DatabaseName
The DatabaseName of the DataCellsFilter resource.
public string DatabaseName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
TableCatalogId
The TableCatalogId of the DataCellsFilter resource.
public string TableCatalogId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
TableName
The TableName of the DataCellsFilter resource.
public string TableName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated