Struct aws_sdk_glue::operation::create_data_quality_ruleset::builders::CreateDataQualityRulesetInputBuilder
source · #[non_exhaustive]pub struct CreateDataQualityRulesetInputBuilder { /* private fields */ }Expand description
A builder for CreateDataQualityRulesetInput.
Implementations§
source§impl CreateDataQualityRulesetInputBuilder
impl CreateDataQualityRulesetInputBuilder
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.
This field is required.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 get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
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.
This field is required.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.
sourcepub fn get_ruleset(&self) -> &Option<String>
pub fn get_ruleset(&self) -> &Option<String>
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.
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 get_target_table(&self) -> &Option<DataQualityTargetTable>
pub fn get_target_table(&self) -> &Option<DataQualityTargetTable>
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.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
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 build(self) -> Result<CreateDataQualityRulesetInput, BuildError>
pub fn build(self) -> Result<CreateDataQualityRulesetInput, BuildError>
Consumes the builder and constructs a CreateDataQualityRulesetInput.
source§impl CreateDataQualityRulesetInputBuilder
impl CreateDataQualityRulesetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateDataQualityRulesetOutput, SdkError<CreateDataQualityRulesetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateDataQualityRulesetOutput, SdkError<CreateDataQualityRulesetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateDataQualityRulesetInputBuilder
impl Clone for CreateDataQualityRulesetInputBuilder
source§fn clone(&self) -> CreateDataQualityRulesetInputBuilder
fn clone(&self) -> CreateDataQualityRulesetInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateDataQualityRulesetInputBuilder
impl Default for CreateDataQualityRulesetInputBuilder
source§fn default() -> CreateDataQualityRulesetInputBuilder
fn default() -> CreateDataQualityRulesetInputBuilder
source§impl PartialEq for CreateDataQualityRulesetInputBuilder
impl PartialEq for CreateDataQualityRulesetInputBuilder
source§fn eq(&self, other: &CreateDataQualityRulesetInputBuilder) -> bool
fn eq(&self, other: &CreateDataQualityRulesetInputBuilder) -> bool
self and other values to be equal, and is used
by ==.