pub struct CreateDataQualityRuleset { /* private fields */ }Expand description
Fluent builder constructing a request to CreateDataQualityRuleset.
Creates a data quality ruleset with DQDL rules applied to a specified Glue table.
You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.
Implementations§
source§impl CreateDataQualityRuleset
impl CreateDataQualityRuleset
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateDataQualityRuleset, AwsResponseRetryClassifier>, SdkError<CreateDataQualityRulesetError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateDataQualityRuleset, AwsResponseRetryClassifier>, SdkError<CreateDataQualityRulesetError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateDataQualityRulesetOutput, SdkError<CreateDataQualityRulesetError>>
pub async fn send(
self
) -> Result<CreateDataQualityRulesetOutput, SdkError<CreateDataQualityRulesetError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
A unique name for the data quality ruleset.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
A unique name for the data quality ruleset.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the data quality ruleset.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the data quality ruleset.
sourcepub fn ruleset(self, input: impl Into<String>) -> Self
pub fn ruleset(self, input: impl Into<String>) -> Self
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
sourcepub fn set_ruleset(self, input: Option<String>) -> Self
pub fn set_ruleset(self, input: Option<String>) -> Self
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
Adds a key-value pair to Tags.
To override the contents of this collection use set_tags.
A list of tags applied to the data quality ruleset.
A list of tags applied to the data quality ruleset.
sourcepub fn target_table(self, input: DataQualityTargetTable) -> Self
pub fn target_table(self, input: DataQualityTargetTable) -> Self
A target table associated with the data quality ruleset.
sourcepub fn set_target_table(self, input: Option<DataQualityTargetTable>) -> Self
pub fn set_target_table(self, input: Option<DataQualityTargetTable>) -> Self
A target table associated with the data quality ruleset.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
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 set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
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.
Trait Implementations§
source§impl Clone for CreateDataQualityRuleset
impl Clone for CreateDataQualityRuleset
source§fn clone(&self) -> CreateDataQualityRuleset
fn clone(&self) -> CreateDataQualityRuleset
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more