Struct aws_sdk_glue::model::dynamic_transform::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for DynamicTransform.
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 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 dynamic transform.
sourcepub fn transform_name(self, input: impl Into<String>) -> Self
pub fn transform_name(self, input: impl Into<String>) -> Self
Specifies the name of the dynamic transform as it appears in the Glue Studio visual editor.
sourcepub fn set_transform_name(self, input: Option<String>) -> Self
pub fn set_transform_name(self, input: Option<String>) -> Self
Specifies the name of the dynamic transform as it appears in the Glue Studio visual editor.
sourcepub fn inputs(self, input: impl Into<String>) -> Self
pub fn inputs(self, input: impl Into<String>) -> Self
Appends an item to inputs.
To override the contents of this collection use set_inputs.
Specifies the inputs for the dynamic transform that are required.
sourcepub fn set_inputs(self, input: Option<Vec<String>>) -> Self
pub fn set_inputs(self, input: Option<Vec<String>>) -> Self
Specifies the inputs for the dynamic transform that are required.
sourcepub fn parameters(self, input: TransformConfigParameter) -> Self
pub fn parameters(self, input: TransformConfigParameter) -> Self
Appends an item to parameters.
To override the contents of this collection use set_parameters.
Specifies the parameters of the dynamic transform.
sourcepub fn set_parameters(self, input: Option<Vec<TransformConfigParameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<TransformConfigParameter>>) -> Self
Specifies the parameters of the dynamic transform.
sourcepub fn function_name(self, input: impl Into<String>) -> Self
pub fn function_name(self, input: impl Into<String>) -> Self
Specifies the name of the function of the dynamic transform.
sourcepub fn set_function_name(self, input: Option<String>) -> Self
pub fn set_function_name(self, input: Option<String>) -> Self
Specifies the name of the function of the dynamic transform.
sourcepub fn path(self, input: impl Into<String>) -> Self
pub fn path(self, input: impl Into<String>) -> Self
Specifies the path of the dynamic transform source and config files.
sourcepub fn set_path(self, input: Option<String>) -> Self
pub fn set_path(self, input: Option<String>) -> Self
Specifies the path of the dynamic transform source and config files.
sourcepub fn version(self, input: impl Into<String>) -> Self
pub fn version(self, input: impl Into<String>) -> Self
This field is not used and will be deprecated in future release.
sourcepub fn set_version(self, input: Option<String>) -> Self
pub fn set_version(self, input: Option<String>) -> Self
This field is not used and will be deprecated in future release.
sourcepub fn build(self) -> DynamicTransform
pub fn build(self) -> DynamicTransform
Consumes the builder and constructs a DynamicTransform.