aws-cdk-lib.aws_databrew.CfnJob.ValidationConfigurationProperty

interface ValidationConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnJob.ValidationConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_ValidationConfigurationProperty
Javasoftware.amazon.awscdk.services.databrew.CfnJob.ValidationConfigurationProperty
Pythonaws_cdk.aws_databrew.CfnJob.ValidationConfigurationProperty
TypeScript aws-cdk-lib » aws_databrew » CfnJob » ValidationConfigurationProperty

Configuration for data quality validation.

Used to select the Rulesets and Validation Mode to be used in the profile job. When ValidationConfiguration is null, the profile job will run without data quality validation.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_databrew as databrew } from 'aws-cdk-lib';
const validationConfigurationProperty: databrew.CfnJob.ValidationConfigurationProperty = {
  rulesetArn: 'rulesetArn',

  // the properties below are optional
  validationMode: 'validationMode',
};

Properties

NameTypeDescription
rulesetArnstringThe Amazon Resource Name (ARN) for the ruleset to be validated in the profile job.
validationMode?stringMode of data quality validation.

rulesetArn

Type: string

The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job.

The TargetArn of the selected ruleset should be the same as the Amazon Resource Name (ARN) of the dataset that is associated with the profile job.


validationMode?

Type: string (optional)

Mode of data quality validation.

Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.