pub struct StartDataQualityRuleRecommendationRun { /* private fields */ }Expand description
Fluent builder constructing a request to StartDataQualityRuleRecommendationRun.
Starts a recommendation run that is used to generate rules when you don't know what rules to write. Glue Data Quality analyzes the data and comes up with recommendations for a potential ruleset. You can then triage the ruleset and modify the generated ruleset to your liking.
Implementations§
source§impl StartDataQualityRuleRecommendationRun
impl StartDataQualityRuleRecommendationRun
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartDataQualityRuleRecommendationRun, AwsResponseRetryClassifier>, SdkError<StartDataQualityRuleRecommendationRunError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartDataQualityRuleRecommendationRun, AwsResponseRetryClassifier>, SdkError<StartDataQualityRuleRecommendationRunError>>
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<StartDataQualityRuleRecommendationRunOutput, SdkError<StartDataQualityRuleRecommendationRunError>>
pub async fn send(
self
) -> Result<StartDataQualityRuleRecommendationRunOutput, SdkError<StartDataQualityRuleRecommendationRunError>>
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 data_source(self, input: DataSource) -> Self
pub fn data_source(self, input: DataSource) -> Self
The data source (Glue table) associated with this run.
sourcepub fn set_data_source(self, input: Option<DataSource>) -> Self
pub fn set_data_source(self, input: Option<DataSource>) -> Self
The data source (Glue table) associated with this run.
sourcepub fn role(self, input: impl Into<String>) -> Self
pub fn role(self, input: impl Into<String>) -> Self
An IAM role supplied to encrypt the results of the run.
sourcepub fn set_role(self, input: Option<String>) -> Self
pub fn set_role(self, input: Option<String>) -> Self
An IAM role supplied to encrypt the results of the run.
sourcepub fn number_of_workers(self, input: i32) -> Self
pub fn number_of_workers(self, input: i32) -> Self
The number of G.1X workers to be used in the run. The default is 5.
sourcepub fn set_number_of_workers(self, input: Option<i32>) -> Self
pub fn set_number_of_workers(self, input: Option<i32>) -> Self
The number of G.1X workers to be used in the run. The default is 5.
sourcepub fn timeout(self, input: i32) -> Self
pub fn timeout(self, input: i32) -> Self
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 set_timeout(self, input: Option<i32>) -> Self
pub fn set_timeout(self, input: Option<i32>) -> Self
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 created_ruleset_name(self, input: impl Into<String>) -> Self
pub fn created_ruleset_name(self, input: impl Into<String>) -> Self
A name for the ruleset.
sourcepub fn set_created_ruleset_name(self, input: Option<String>) -> Self
pub fn set_created_ruleset_name(self, input: Option<String>) -> Self
A name for the 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 StartDataQualityRuleRecommendationRun
impl Clone for StartDataQualityRuleRecommendationRun
source§fn clone(&self) -> StartDataQualityRuleRecommendationRun
fn clone(&self) -> StartDataQualityRuleRecommendationRun
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more