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