Class: Aws::GlueDataBrew::Types::ValidationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ValidationConfiguration
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
When making an API call, you may pass ValidationConfiguration data as a hash:
{
ruleset_arn: "Arn", # required
validation_mode: "CHECK_ALL", # accepts CHECK_ALL
}
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ruleset_arn ⇒ String
The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job.
-
#validation_mode ⇒ String
Mode of data quality validation.
Instance Attribute Details
#ruleset_arn ⇒ 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.
5603 5604 5605 5606 5607 5608 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5603 class ValidationConfiguration < Struct.new( :ruleset_arn, :validation_mode) SENSITIVE = [] include Aws::Structure end |
#validation_mode ⇒ String
Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
5603 5604 5605 5606 5607 5608 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5603 class ValidationConfiguration < Struct.new( :ruleset_arn, :validation_mode) SENSITIVE = [] include Aws::Structure end |