aws-sdk-glue 1.163.0

AWS SDK for AWS Glue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetDataQualityRulesetEvaluationRun`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::builders::BatchGetDataQualityRulesetEvaluationRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`run_ids(impl Into<String>)`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::builders::BatchGetDataQualityRulesetEvaluationRunFluentBuilder::run_ids) / [`set_run_ids(Option<Vec::<String>>)`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::builders::BatchGetDataQualityRulesetEvaluationRunFluentBuilder::set_run_ids):<br>required: **true**<br><p>A list of unique run identifiers for the evaluation runs to retrieve.</p><br>
    /// - On success, responds with [`BatchGetDataQualityRulesetEvaluationRunOutput`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::BatchGetDataQualityRulesetEvaluationRunOutput) with field(s):
    ///   - [`runs(Option<Vec::<DataQualityRulesetEvaluationRun>>)`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::BatchGetDataQualityRulesetEvaluationRunOutput::runs): <p>A list of evaluation run details for the requested run IDs.</p>
    ///   - [`runs_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::BatchGetDataQualityRulesetEvaluationRunOutput::runs_not_found): <p>A list of run IDs that were not found.</p>
    /// - On failure, responds with [`SdkError<BatchGetDataQualityRulesetEvaluationRunError>`](crate::operation::batch_get_data_quality_ruleset_evaluation_run::BatchGetDataQualityRulesetEvaluationRunError)
    pub fn batch_get_data_quality_ruleset_evaluation_run(
        &self,
    ) -> crate::operation::batch_get_data_quality_ruleset_evaluation_run::builders::BatchGetDataQualityRulesetEvaluationRunFluentBuilder {
        crate::operation::batch_get_data_quality_ruleset_evaluation_run::builders::BatchGetDataQualityRulesetEvaluationRunFluentBuilder::new(
            self.handle.clone(),
        )
    }
}