Interface CfnJob.ValidationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.ValidationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.ValidationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.databrew.*;
 ValidationConfigurationProperty validationConfigurationProperty = ValidationConfigurationProperty.builder()
         .rulesetArn("rulesetArn")
         // the properties below are optional
         .validationMode("validationMode")
         .build();
 
  • Method Details