interface ValidationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.ValidationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_ValidationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.ValidationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.ValidationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const validationConfigurationProperty: databrew_mixins.CfnJobPropsMixin.ValidationConfigurationProperty = {
rulesetArn: 'rulesetArn',
validationMode: 'validationMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| ruleset | string | The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job. |
| validation | string | Mode of data quality validation. |
rulesetArn?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript