#[non_exhaustive]pub struct GetDataQualityRulesetOutput {
pub name: Option<String>,
pub description: Option<String>,
pub ruleset: Option<String>,
pub target_table: Option<DataQualityTargetTable>,
pub created_on: Option<DateTime>,
pub last_modified_on: Option<DateTime>,
pub recommendation_run_id: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the ruleset.
description: Option<String>
A description of the ruleset.
ruleset: Option<String>
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
target_table: Option<DataQualityTargetTable>
The name and database name of the target table.
created_on: Option<DateTime>
A timestamp. The time and date that this data quality ruleset was created.
last_modified_on: Option<DateTime>
A timestamp. The last point in time when this data quality ruleset was modified.
recommendation_run_id: Option<String>
When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
Implementations§
source§impl GetDataQualityRulesetOutput
impl GetDataQualityRulesetOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the ruleset.
sourcepub fn ruleset(&self) -> Option<&str>
pub fn ruleset(&self) -> Option<&str>
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
sourcepub fn target_table(&self) -> Option<&DataQualityTargetTable>
pub fn target_table(&self) -> Option<&DataQualityTargetTable>
The name and database name of the target table.
sourcepub fn created_on(&self) -> Option<&DateTime>
pub fn created_on(&self) -> Option<&DateTime>
A timestamp. The time and date that this data quality ruleset was created.
sourcepub fn last_modified_on(&self) -> Option<&DateTime>
pub fn last_modified_on(&self) -> Option<&DateTime>
A timestamp. The last point in time when this data quality ruleset was modified.
sourcepub fn recommendation_run_id(&self) -> Option<&str>
pub fn recommendation_run_id(&self) -> Option<&str>
When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
source§impl GetDataQualityRulesetOutput
impl GetDataQualityRulesetOutput
sourcepub fn builder() -> GetDataQualityRulesetOutputBuilder
pub fn builder() -> GetDataQualityRulesetOutputBuilder
Creates a new builder-style object to manufacture GetDataQualityRulesetOutput
.
Trait Implementations§
source§impl Clone for GetDataQualityRulesetOutput
impl Clone for GetDataQualityRulesetOutput
source§fn clone(&self) -> GetDataQualityRulesetOutput
fn clone(&self) -> GetDataQualityRulesetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetDataQualityRulesetOutput
impl Debug for GetDataQualityRulesetOutput
source§impl PartialEq for GetDataQualityRulesetOutput
impl PartialEq for GetDataQualityRulesetOutput
source§fn eq(&self, other: &GetDataQualityRulesetOutput) -> bool
fn eq(&self, other: &GetDataQualityRulesetOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetDataQualityRulesetOutput
impl RequestId for GetDataQualityRulesetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.