interface RelationalFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_RelationalFilterConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDataSourcePropsMixin » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const relationalFilterConfigurationProperty: datazone_mixins.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty = {
databaseName: 'databaseName',
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
(optional)
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