Struct aws_sdk_databrew::model::validation_configuration::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ValidationConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn ruleset_arn(self, input: impl Into<String>) -> Self
pub fn ruleset_arn(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_ruleset_arn(self, input: Option<String>) -> Self
pub fn set_ruleset_arn(self, input: Option<String>) -> Self
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.
sourcepub fn validation_mode(self, input: ValidationMode) -> Self
pub fn validation_mode(self, input: ValidationMode) -> Self
Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
sourcepub fn set_validation_mode(self, input: Option<ValidationMode>) -> Self
pub fn set_validation_mode(self, input: Option<ValidationMode>) -> Self
Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.
sourcepub fn build(self) -> ValidationConfiguration
pub fn build(self) -> ValidationConfiguration
Consumes the builder and constructs a ValidationConfiguration
.