Interface ICfnDataQualityRulesetProps
Properties for defining a CfnDataQualityRuleset
.
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDataQualityRulesetProps
Syntax (vb)
Public Interface ICfnDataQualityRulesetProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var tags;
var cfnDataQualityRulesetProps = new CfnDataQualityRulesetProps {
ClientToken = "clientToken",
Description = "description",
Name = "name",
Ruleset = "ruleset",
Tags = tags,
TargetTable = new DataQualityTargetTableProperty {
DatabaseName = "databaseName",
TableName = "tableName"
}
};
Synopsis
Properties
Client |
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 | A description of the data quality ruleset. |
Name | The name of the data quality ruleset. |
Ruleset | A Data Quality Definition Language (DQDL) ruleset. |
Tags | A list of tags applied to the data quality ruleset. |
Target |
An object representing an AWS Glue table. |
Properties
ClientToken
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.
virtual string ClientToken { get; }
Property Value
System.
Remarks
Description
A description of the data quality ruleset.
virtual string Description { get; }
Property Value
System.
Remarks
Name
The name of the data quality ruleset.
virtual string Name { get; }
Property Value
System.
Remarks
Ruleset
A Data Quality Definition Language (DQDL) ruleset.
virtual string Ruleset { get; }
Property Value
System.
Remarks
For more information see the AWS Glue Developer Guide.
Tags
A list of tags applied to the data quality ruleset.
virtual object Tags { get; }
Property Value
System.
Remarks
TargetTable
An object representing an AWS Glue table.
virtual object TargetTable { get; }
Property Value
System.