Interface ValidationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ValidationConfiguration.Builder,ValidationConfiguration>,SdkBuilder<ValidationConfiguration.Builder,ValidationConfiguration>,SdkPojo
- Enclosing class:
- ValidationConfiguration
public static interface ValidationConfiguration.Builder extends SdkPojo, CopyableBuilder<ValidationConfiguration.Builder,ValidationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValidationConfiguration.BuilderrulesetArn(String rulesetArn)The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job.ValidationConfiguration.BuildervalidationMode(String validationMode)Mode of data quality validation.ValidationConfiguration.BuildervalidationMode(ValidationMode validationMode)Mode of data quality validation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
rulesetArn
ValidationConfiguration.Builder rulesetArn(String rulesetArn)
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.
- Parameters:
rulesetArn- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validationMode
ValidationConfiguration.Builder validationMode(String validationMode)
Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
- Parameters:
validationMode- Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ValidationMode,ValidationMode
-
validationMode
ValidationConfiguration.Builder validationMode(ValidationMode validationMode)
Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
- Parameters:
validationMode- Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ValidationMode,ValidationMode
-
-