Interface CfnDataSource.RelationalFilterConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.RelationalFilterConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.RelationalFilterConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.datazone.*; RelationalFilterConfigurationProperty relationalFilterConfigurationProperty = RelationalFilterConfigurationProperty.builder() .databaseName("databaseName") // the properties below are optional .filterExpressions(List.of(FilterExpressionProperty.builder() .expression("expression") .type("type") .build())) .schemaName("schemaName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.RelationalFilterConfigurationProperty
static final class
An implementation forCfnDataSource.RelationalFilterConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The database name specified in the relational filter configuration for the data source.default Object
The filter expressions specified in the relational filter configuration for the data source.default String
The schema name specified in the relational filter configuration for the data source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
The database name specified in the relational filter configuration for the data source.- See Also:
-
getFilterExpressions
The filter expressions specified in the relational filter configuration for the data source.- See Also:
-
getSchemaName
The schema name specified in the relational filter configuration for the data source.- See Also:
-
builder
-