interface CfnDataQualityRulesetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDataQualityRulesetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDataQualityRulesetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDataQualityRulesetMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDataQualityRulesetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDataQualityRulesetMixinProps |
Properties for CfnDataQualityRulesetPropsMixin.
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';
declare const tags: any;
const cfnDataQualityRulesetMixinProps: glue_mixins.CfnDataQualityRulesetMixinProps = {
clientToken: 'clientToken',
description: 'description',
name: 'name',
ruleset: 'ruleset',
tags: tags,
targetTable: {
databaseName: 'databaseName',
tableName: 'tableName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource. |
| description? | string | A description of the data quality ruleset. |
| name? | string | The name of the data quality ruleset. |
| ruleset? | string | A Data Quality Definition Language (DQDL) ruleset. |
| tags? | any | A list of tags applied to the data quality ruleset. |
| target | IResolvable | Data | An object representing an AWS Glue table. |
clientToken?
Type:
string
(optional)
Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.
description?
Type:
string
(optional)
A description of the data quality ruleset.
name?
Type:
string
(optional)
The name of the data quality ruleset.
ruleset?
Type:
string
(optional)
A Data Quality Definition Language (DQDL) ruleset.
For more information see the AWS Glue Developer Guide.
tags?
Type:
any
(optional)
A list of tags applied to the data quality ruleset.
targetTable?
Type:
IResolvable | Data
(optional)
An object representing an AWS Glue table.

.NET
Go
Java
Python
TypeScript