interface GlueRunConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnDataSourcePropsMixin_GlueRunConfigurationInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnDataSourcePropsMixin.GlueRunConfigurationInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » 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 { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const glueRunConfigurationInputProperty: datazone.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