#[non_exhaustive]pub struct StartDataQualityRulesetEvaluationRunInput { /* private fields */ }Implementations§
source§impl StartDataQualityRulesetEvaluationRunInput
impl StartDataQualityRulesetEvaluationRunInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartDataQualityRulesetEvaluationRun, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartDataQualityRulesetEvaluationRun, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartDataQualityRulesetEvaluationRun>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartDataQualityRulesetEvaluationRunInput.
source§impl StartDataQualityRulesetEvaluationRunInput
impl StartDataQualityRulesetEvaluationRunInput
sourcepub fn data_source(&self) -> Option<&DataSource>
pub fn data_source(&self) -> Option<&DataSource>
The data source (Glue table) associated with this run.
sourcepub fn number_of_workers(&self) -> Option<i32>
pub fn number_of_workers(&self) -> Option<i32>
The number of G.1X workers to be used in the run. The default is 5.
sourcepub fn timeout(&self) -> Option<i32>
pub fn timeout(&self) -> Option<i32>
The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.
sourcepub fn additional_run_options(
&self
) -> Option<&DataQualityEvaluationRunAdditionalRunOptions>
pub fn additional_run_options(
&self
) -> Option<&DataQualityEvaluationRunAdditionalRunOptions>
Additional run options you can specify for an evaluation run.
sourcepub fn ruleset_names(&self) -> Option<&[String]>
pub fn ruleset_names(&self) -> Option<&[String]>
A list of ruleset names.
Trait Implementations§
source§impl Clone for StartDataQualityRulesetEvaluationRunInput
impl Clone for StartDataQualityRulesetEvaluationRunInput
source§fn clone(&self) -> StartDataQualityRulesetEvaluationRunInput
fn clone(&self) -> StartDataQualityRulesetEvaluationRunInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<StartDataQualityRulesetEvaluationRunInput> for StartDataQualityRulesetEvaluationRunInput
impl PartialEq<StartDataQualityRulesetEvaluationRunInput> for StartDataQualityRulesetEvaluationRunInput
source§fn eq(&self, other: &StartDataQualityRulesetEvaluationRunInput) -> bool
fn eq(&self, other: &StartDataQualityRulesetEvaluationRunInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.