Struct aws_sdk_databrew::model::condition_expression::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ConditionExpression
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn condition(self, input: impl Into<String>) -> Self
pub fn condition(self, input: impl Into<String>) -> Self
A specific condition to apply to a recipe action. For more information, see Recipe structure in the Glue DataBrew Developer Guide.
sourcepub fn set_condition(self, input: Option<String>) -> Self
pub fn set_condition(self, input: Option<String>) -> Self
A specific condition to apply to a recipe action. For more information, see Recipe structure in the Glue DataBrew Developer Guide.
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
A value that the condition must evaluate to for the condition to succeed.
sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
A value that the condition must evaluate to for the condition to succeed.
sourcepub fn target_column(self, input: impl Into<String>) -> Self
pub fn target_column(self, input: impl Into<String>) -> Self
A column to apply this condition to.
sourcepub fn set_target_column(self, input: Option<String>) -> Self
pub fn set_target_column(self, input: Option<String>) -> Self
A column to apply this condition to.
sourcepub fn build(self) -> ConditionExpression
pub fn build(self) -> ConditionExpression
Consumes the builder and constructs a ConditionExpression
.