Interface CfnDataSourcePropsMixin.IGlueRunConfigurationInputProperty
The configuration details of the AWS Glue data source.
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDataSourcePropsMixin.IGlueRunConfigurationInputProperty
Syntax (vb)
Public Interface CfnDataSourcePropsMixin.IGlueRunConfigurationInputProperty
Remarks
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.Mixins.Preview.AWS.DataZone.Mixins;
var glueRunConfigurationInputProperty = new GlueRunConfigurationInputProperty {
AutoImportDataQualityResult = false,
CatalogName = "catalogName",
DataAccessRole = "dataAccessRole",
RelationalFilterConfigurations = new [] { new RelationalFilterConfigurationProperty {
DatabaseName = "databaseName",
FilterExpressions = new [] { new FilterExpressionProperty {
Expression = "expression",
Type = "type"
} },
SchemaName = "schemaName"
} }
};
Synopsis
Properties
| AutoImportDataQualityResult | Specifies whether to automatically import data quality metrics as part of the data source run. |
| CatalogName | The catalog name in the AWS Glue run configuration. |
| DataAccessRole | The data access role included in the configuration details of the AWS Glue data source. |
| RelationalFilterConfigurations | The relational filter configurations included in the configuration details of the AWS Glue data source. |
Properties
AutoImportDataQualityResult
Specifies whether to automatically import data quality metrics as part of the data source run.
object? AutoImportDataQualityResult { get; }
Property Value
Remarks
CatalogName
The catalog name in the AWS Glue run configuration.
string? CatalogName { get; }
Property Value
Remarks
DataAccessRole
The data access role included in the configuration details of the AWS Glue data source.
string? DataAccessRole { get; }
Property Value
Remarks
RelationalFilterConfigurations
The relational filter configurations included in the configuration details of the AWS Glue data source.
object? RelationalFilterConfigurations { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDataSourcePropsMixin.IRelationalFilterConfigurationProperty)[]