Interface CfnDataSource.IRelationalFilterConfigurationProperty
The relational filter configuration for the data source.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IRelationalFilterConfigurationProperty
Syntax (vb)
Public Interface CfnDataSource.IRelationalFilterConfigurationProperty
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.DataZone;
var relationalFilterConfigurationProperty = new RelationalFilterConfigurationProperty {
DatabaseName = "databaseName",
// the properties below are optional
FilterExpressions = new [] { new FilterExpressionProperty {
Expression = "expression",
Type = "type"
} },
SchemaName = "schemaName"
};
Synopsis
Properties
| DatabaseName | The database name specified in the relational filter configuration for the data source. |
| FilterExpressions | The filter expressions specified in the relational filter configuration for the data source. |
| SchemaName | The schema name specified in the relational filter configuration for the data source. |
Properties
DatabaseName
The database name specified in the relational filter configuration for the data source.
string DatabaseName { get; }
Property Value
Remarks
FilterExpressions
The filter expressions specified in the relational filter configuration for the data source.
object? FilterExpressions { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDataSource.IFilterExpressionProperty)[]
SchemaName
The schema name specified in the relational filter configuration for the data source.
string? SchemaName { get; }