interface DataQualityTargetTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnDataQualityRuleset.DataQualityTargetTableProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnDataQualityRuleset_DataQualityTargetTableProperty |
Java | software.amazon.awscdk.services.glue.CfnDataQualityRuleset.DataQualityTargetTableProperty |
Python | aws_cdk.aws_glue.CfnDataQualityRuleset.DataQualityTargetTableProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnDataQualityRuleset » DataQualityTargetTableProperty |
An object representing an AWS Glue table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const dataQualityTargetTableProperty: glue.CfnDataQualityRuleset.DataQualityTargetTableProperty = {
databaseName: 'databaseName',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The name of the database where the AWS Glue table exists. |
| table | string | The name of the AWS Glue table. |
databaseName?
Type:
string
(optional)
The name of the database where the AWS Glue table exists.
tableName?
Type:
string
(optional)
The name of the AWS Glue table.

.NET
Go
Java
Python
TypeScript