public static interface CfnJob.ValidationConfigurationProperty
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 software.amazon.awscdk.services.databrew.*; ValidationConfigurationProperty validationConfigurationProperty = ValidationConfigurationProperty.builder() .rulesetArn("rulesetArn") // the properties below are optional .validationMode("validationMode") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnJob.ValidationConfigurationProperty.Builder
A builder for
CfnJob.ValidationConfigurationProperty |
static class |
CfnJob.ValidationConfigurationProperty.Jsii$Proxy
An implementation for
CfnJob.ValidationConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnJob.ValidationConfigurationProperty.Builder |
builder() |
java.lang.String |
getRulesetArn()
The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job.
|
default java.lang.String |
getValidationMode()
Mode of data quality validation.
|
java.lang.String getRulesetArn()
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.
default java.lang.String getValidationMode()
Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
static CfnJob.ValidationConfigurationProperty.Builder builder()