#[non_exhaustive]pub struct ValidationConfigurationBuilder { /* private fields */ }
Expand description
A builder for ValidationConfiguration
.
Implementations§
source§impl ValidationConfigurationBuilder
impl ValidationConfigurationBuilder
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 get_ruleset_arn(&self) -> &Option<String>
pub fn get_ruleset_arn(&self) -> &Option<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.
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 get_validation_mode(&self) -> &Option<ValidationMode>
pub fn get_validation_mode(&self) -> &Option<ValidationMode>
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
.
Trait Implementations§
source§impl Clone for ValidationConfigurationBuilder
impl Clone for ValidationConfigurationBuilder
source§fn clone(&self) -> ValidationConfigurationBuilder
fn clone(&self) -> ValidationConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ValidationConfigurationBuilder
impl Default for ValidationConfigurationBuilder
source§fn default() -> ValidationConfigurationBuilder
fn default() -> ValidationConfigurationBuilder
source§impl PartialEq<ValidationConfigurationBuilder> for ValidationConfigurationBuilder
impl PartialEq<ValidationConfigurationBuilder> for ValidationConfigurationBuilder
source§fn eq(&self, other: &ValidationConfigurationBuilder) -> bool
fn eq(&self, other: &ValidationConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.