interface RelationalFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnDataSourcePropsMixin_RelationalFilterConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnDataSourcePropsMixin.RelationalFilterConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » 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 { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const relationalFilterConfigurationProperty: datazone.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