interface RelationalFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnDataSource.RelationalFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnDataSource_RelationalFilterConfigurationProperty |
Java | software.amazon.awscdk.services.datazone.CfnDataSource.RelationalFilterConfigurationProperty |
Python | aws_cdk.aws_datazone.CfnDataSource.RelationalFilterConfigurationProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnDataSource » RelationalFilterConfigurationProperty |
The relational filter configuration for the data source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const relationalFilterConfigurationProperty: datazone.CfnDataSource.RelationalFilterConfigurationProperty = {
databaseName: 'databaseName',
// the properties below are optional
filterExpressions: [{
expression: 'expression',
type: 'type',
}],
schemaName: 'schemaName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The database name specified in the relational filter configuration for the data source. |
| filter | IResolvable | (IResolvable | Filter)[] | The filter expressions specified in the relational filter configuration for the data source. |
| schema | string | The schema name specified in the relational filter configuration for the data source. |
databaseName
Type:
string
The database name specified in the relational filter configuration for the data source.
filterExpressions?
Type:
IResolvable | (IResolvable | Filter)[]
(optional)
The filter expressions specified in the relational filter configuration for the data source.
schemaName?
Type:
string
(optional)
The schema name specified in the relational filter configuration for the data source.

.NET
Go
Java
Python
TypeScript