Show / Hide Table of Contents

Interface CfnDataSource.IRelationalFilterConfigurationProperty

The relational filter configuration for the data source.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IRelationalFilterConfigurationProperty
Syntax (vb)
Public Interface CfnDataSource.IRelationalFilterConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-relationalfilterconfiguration.html

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

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.

Properties

DatabaseName

The database name specified in the relational filter configuration for the data source.

string DatabaseName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-relationalfilterconfiguration.html#cfn-datazone-datasource-relationalfilterconfiguration-databasename

FilterExpressions

The filter expressions specified in the relational filter configuration for the data source.

object? FilterExpressions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-relationalfilterconfiguration.html#cfn-datazone-datasource-relationalfilterconfiguration-filterexpressions

Type union: either IResolvable or (either IResolvable or CfnDataSource.IFilterExpressionProperty)[]

SchemaName

The schema name specified in the relational filter configuration for the data source.

string? SchemaName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-relationalfilterconfiguration.html#cfn-datazone-datasource-relationalfilterconfiguration-schemaname

Back to top Generated by DocFX