Struct aws_sdk_glue::model::transform_config_parameter::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for TransformConfigParameter.
Implementations§
source§impl Builder
impl Builder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
Specifies the name of the parameter in the config file of the dynamic transform.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
Specifies the name of the parameter in the config file of the dynamic transform.
sourcepub fn type(self, input: ParamType) -> Self
pub fn type(self, input: ParamType) -> Self
Specifies the parameter type in the config file of the dynamic transform.
sourcepub fn set_type(self, input: Option<ParamType>) -> Self
pub fn set_type(self, input: Option<ParamType>) -> Self
Specifies the parameter type in the config file of the dynamic transform.
sourcepub fn validation_rule(self, input: impl Into<String>) -> Self
pub fn validation_rule(self, input: impl Into<String>) -> Self
Specifies the validation rule in the config file of the dynamic transform.
sourcepub fn set_validation_rule(self, input: Option<String>) -> Self
pub fn set_validation_rule(self, input: Option<String>) -> Self
Specifies the validation rule in the config file of the dynamic transform.
sourcepub fn validation_message(self, input: impl Into<String>) -> Self
pub fn validation_message(self, input: impl Into<String>) -> Self
Specifies the validation message in the config file of the dynamic transform.
sourcepub fn set_validation_message(self, input: Option<String>) -> Self
pub fn set_validation_message(self, input: Option<String>) -> Self
Specifies the validation message in the config file of the dynamic transform.
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
Appends an item to value.
To override the contents of this collection use set_value.
Specifies the value of the parameter in the config file of the dynamic transform.
sourcepub fn set_value(self, input: Option<Vec<String>>) -> Self
pub fn set_value(self, input: Option<Vec<String>>) -> Self
Specifies the value of the parameter in the config file of the dynamic transform.
sourcepub fn list_type(self, input: ParamType) -> Self
pub fn list_type(self, input: ParamType) -> Self
Specifies the list type of the parameter in the config file of the dynamic transform.
sourcepub fn set_list_type(self, input: Option<ParamType>) -> Self
pub fn set_list_type(self, input: Option<ParamType>) -> Self
Specifies the list type of the parameter in the config file of the dynamic transform.
sourcepub fn is_optional(self, input: bool) -> Self
pub fn is_optional(self, input: bool) -> Self
Specifies whether the parameter is optional or not in the config file of the dynamic transform.
sourcepub fn set_is_optional(self, input: Option<bool>) -> Self
pub fn set_is_optional(self, input: Option<bool>) -> Self
Specifies whether the parameter is optional or not in the config file of the dynamic transform.
sourcepub fn build(self) -> TransformConfigParameter
pub fn build(self) -> TransformConfigParameter
Consumes the builder and constructs a TransformConfigParameter.