Show / Hide Table of Contents

Class CfnDataSource.RelationalFilterConfigurationProperty

The relational filter configuration for the data source.

Inheritance
object
CfnDataSource.RelationalFilterConfigurationProperty
Implements
CfnDataSource.IRelationalFilterConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.RelationalFilterConfigurationProperty : CfnDataSource.IRelationalFilterConfigurationProperty
Syntax (vb)
Public Class CfnDataSource.RelationalFilterConfigurationProperty Implements 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

Constructors

RelationalFilterConfigurationProperty()

The relational filter configuration for the data source.

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.

Constructors

RelationalFilterConfigurationProperty()

The relational filter configuration for the data source.

public RelationalFilterConfigurationProperty()
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"
             };

Properties

DatabaseName

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

public string DatabaseName { get; set; }
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.

public object? FilterExpressions { get; set; }
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.

public string? SchemaName { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataSource.IRelationalFilterConfigurationProperty
Back to top Generated by DocFX