Class CfnDataSource.RelationalFilterConfigurationProperty
The relational filter configuration for the data source.
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.RelationalFilterConfigurationProperty : CfnDataSource.IRelationalFilterConfigurationProperty
Syntax (vb)
Public Class CfnDataSource.RelationalFilterConfigurationProperty Implements 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
Constructors
| RelationalFilterConfigurationProperty() | The relational filter configuration for the data source. |
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. |
Constructors
RelationalFilterConfigurationProperty()
The relational filter configuration for the data source.
public RelationalFilterConfigurationProperty()
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"
};
Properties
DatabaseName
The database name specified in the relational filter configuration for the data source.
public string DatabaseName { get; set; }
Property Value
Remarks
FilterExpressions
The filter expressions specified in the relational filter configuration for the data source.
public object? FilterExpressions { get; set; }
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.
public string? SchemaName { get; set; }