interface DataQualityTargetTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDataQualityRulesetPropsMixin.DataQualityTargetTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDataQualityRulesetPropsMixin_DataQualityTargetTableProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDataQualityRulesetPropsMixin.DataQualityTargetTableProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDataQualityRulesetPropsMixin.DataQualityTargetTableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDataQualityRulesetPropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const dataQualityTargetTableProperty: glue_mixins.CfnDataQualityRulesetPropsMixin.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