1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDataQualityRuleset`](crate::operation::get_data_quality_ruleset::builders::GetDataQualityRulesetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::get_data_quality_ruleset::builders::GetDataQualityRulesetFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_data_quality_ruleset::builders::GetDataQualityRulesetFluentBuilder::set_name):<br>required: **true**<br><p>The name of the ruleset.</p><br>
    /// - On success, responds with [`GetDataQualityRulesetOutput`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput) with field(s):
    ///   - [`name(Option<String>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::name): <p>The name of the ruleset.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::description): <p>A description of the ruleset.</p>
    ///   - [`ruleset(Option<String>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::ruleset): <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
    ///   - [`target_table(Option<DataQualityTargetTable>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::target_table): <p>The name and database name of the target table.</p>
    ///   - [`created_on(Option<DateTime>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::created_on): <p>A timestamp. The time and date that this data quality ruleset was created.</p>
    ///   - [`last_modified_on(Option<DateTime>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::last_modified_on): <p>A timestamp. The last point in time when this data quality ruleset was modified.</p>
    ///   - [`recommendation_run_id(Option<String>)`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetOutput::recommendation_run_id): <p>When a ruleset was created from a recommendation run, this run ID is generated to link the two together.</p>
    /// - On failure, responds with [`SdkError<GetDataQualityRulesetError>`](crate::operation::get_data_quality_ruleset::GetDataQualityRulesetError)
    pub fn get_data_quality_ruleset(&self) -> crate::operation::get_data_quality_ruleset::builders::GetDataQualityRulesetFluentBuilder {
        crate::operation::get_data_quality_ruleset::builders::GetDataQualityRulesetFluentBuilder::new(self.handle.clone())
    }
}