interface GlueRunConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDataSourcePropsMixin_GlueRunConfigurationInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDataSourcePropsMixin » GlueRunConfigurationInputProperty |
The configuration details of the AWS Glue data source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const glueRunConfigurationInputProperty: datazone_mixins.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty = {
autoImportDataQualityResult: false,
catalogName: 'catalogName',
dataAccessRole: 'dataAccessRole',
relationalFilterConfigurations: [{
databaseName: 'databaseName',
filterExpressions: [{
expression: 'expression',
type: 'type',
}],
schemaName: 'schemaName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | IResolvable | Specifies whether to automatically import data quality metrics as part of the data source run. |
| catalog | string | The catalog name in the AWS Glue run configuration. |
| data | string | The data access role included in the configuration details of the AWS Glue data source. |
| relational | IResolvable | (IResolvable | Relational)[] | The relational filter configurations included in the configuration details of the AWS Glue data source. |
autoImportDataQualityResult?
Type:
boolean | IResolvable
(optional)
Specifies whether to automatically import data quality metrics as part of the data source run.
catalogName?
Type:
string
(optional)
The catalog name in the AWS Glue run configuration.
dataAccessRole?
Type:
string
(optional)
The data access role included in the configuration details of the AWS Glue data source.
relationalFilterConfigurations?
Type:
IResolvable | (IResolvable | Relational)[]
(optional)
The relational filter configurations included in the configuration details of the AWS Glue data source.

.NET
Go
Java
Python
TypeScript