Struct aws_sdk_transfer::types::builders::DeleteStepDetailsBuilder
source · #[non_exhaustive]pub struct DeleteStepDetailsBuilder { /* private fields */ }Expand description
A builder for DeleteStepDetails.
Implementations§
source§impl DeleteStepDetailsBuilder
impl DeleteStepDetailsBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the step, used as an identifier.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the step, used as an identifier.
sourcepub fn source_file_location(self, input: impl Into<String>) -> Self
pub fn source_file_location(self, input: impl Into<String>) -> Self
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
-
To use the previous file as the input, enter
${previous.file}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. -
To use the originally uploaded file location as input for this step, enter
${original.file}.
sourcepub fn set_source_file_location(self, input: Option<String>) -> Self
pub fn set_source_file_location(self, input: Option<String>) -> Self
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
-
To use the previous file as the input, enter
${previous.file}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. -
To use the originally uploaded file location as input for this step, enter
${original.file}.
sourcepub fn get_source_file_location(&self) -> &Option<String>
pub fn get_source_file_location(&self) -> &Option<String>
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
-
To use the previous file as the input, enter
${previous.file}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. -
To use the originally uploaded file location as input for this step, enter
${original.file}.
sourcepub fn build(self) -> DeleteStepDetails
pub fn build(self) -> DeleteStepDetails
Consumes the builder and constructs a DeleteStepDetails.
Trait Implementations§
source§impl Clone for DeleteStepDetailsBuilder
impl Clone for DeleteStepDetailsBuilder
source§fn clone(&self) -> DeleteStepDetailsBuilder
fn clone(&self) -> DeleteStepDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteStepDetailsBuilder
impl Debug for DeleteStepDetailsBuilder
source§impl Default for DeleteStepDetailsBuilder
impl Default for DeleteStepDetailsBuilder
source§fn default() -> DeleteStepDetailsBuilder
fn default() -> DeleteStepDetailsBuilder
source§impl PartialEq for DeleteStepDetailsBuilder
impl PartialEq for DeleteStepDetailsBuilder
source§fn eq(&self, other: &DeleteStepDetailsBuilder) -> bool
fn eq(&self, other: &DeleteStepDetailsBuilder) -> bool
self and other values to be equal, and is used
by ==.