Struct aws_sdk_transfer::types::builders::CopyStepDetailsBuilder
source · #[non_exhaustive]pub struct CopyStepDetailsBuilder { /* private fields */ }Expand description
A builder for CopyStepDetails.
Implementations§
source§impl CopyStepDetailsBuilder
impl CopyStepDetailsBuilder
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 destination_file_location(self, input: InputFileLocation) -> Self
pub fn destination_file_location(self, input: InputFileLocation) -> Self
Specifies the location for the file being copied. Use ${Transfer:UserName} or ${Transfer:UploadDate} in this field to parametrize the destination prefix by username or uploaded date.
-
Set the value of
DestinationFileLocationto${Transfer:UserName}to copy uploaded files to an Amazon S3 bucket that is prefixed with the name of the Transfer Family user that uploaded the file. -
Set the value of
DestinationFileLocationto${Transfer:UploadDate}to copy uploaded files to an Amazon S3 bucket that is prefixed with the date of the upload.The system resolves
UploadDateto a date format of YYYY-MM-DD, based on the date the file is uploaded in UTC.
sourcepub fn set_destination_file_location(
self,
input: Option<InputFileLocation>
) -> Self
pub fn set_destination_file_location( self, input: Option<InputFileLocation> ) -> Self
Specifies the location for the file being copied. Use ${Transfer:UserName} or ${Transfer:UploadDate} in this field to parametrize the destination prefix by username or uploaded date.
-
Set the value of
DestinationFileLocationto${Transfer:UserName}to copy uploaded files to an Amazon S3 bucket that is prefixed with the name of the Transfer Family user that uploaded the file. -
Set the value of
DestinationFileLocationto${Transfer:UploadDate}to copy uploaded files to an Amazon S3 bucket that is prefixed with the date of the upload.The system resolves
UploadDateto a date format of YYYY-MM-DD, based on the date the file is uploaded in UTC.
sourcepub fn get_destination_file_location(&self) -> &Option<InputFileLocation>
pub fn get_destination_file_location(&self) -> &Option<InputFileLocation>
Specifies the location for the file being copied. Use ${Transfer:UserName} or ${Transfer:UploadDate} in this field to parametrize the destination prefix by username or uploaded date.
-
Set the value of
DestinationFileLocationto${Transfer:UserName}to copy uploaded files to an Amazon S3 bucket that is prefixed with the name of the Transfer Family user that uploaded the file. -
Set the value of
DestinationFileLocationto${Transfer:UploadDate}to copy uploaded files to an Amazon S3 bucket that is prefixed with the date of the upload.The system resolves
UploadDateto a date format of YYYY-MM-DD, based on the date the file is uploaded in UTC.
sourcepub fn overwrite_existing(self, input: OverwriteExisting) -> Self
pub fn overwrite_existing(self, input: OverwriteExisting) -> Self
A flag that indicates whether to overwrite an existing file of the same name. The default is FALSE.
If the workflow is processing a file that has the same name as an existing file, the behavior is as follows:
-
If
OverwriteExistingisTRUE, the existing file is replaced with the file being processed. -
If
OverwriteExistingisFALSE, nothing happens, and the workflow processing stops.
sourcepub fn set_overwrite_existing(self, input: Option<OverwriteExisting>) -> Self
pub fn set_overwrite_existing(self, input: Option<OverwriteExisting>) -> Self
A flag that indicates whether to overwrite an existing file of the same name. The default is FALSE.
If the workflow is processing a file that has the same name as an existing file, the behavior is as follows:
-
If
OverwriteExistingisTRUE, the existing file is replaced with the file being processed. -
If
OverwriteExistingisFALSE, nothing happens, and the workflow processing stops.
sourcepub fn get_overwrite_existing(&self) -> &Option<OverwriteExisting>
pub fn get_overwrite_existing(&self) -> &Option<OverwriteExisting>
A flag that indicates whether to overwrite an existing file of the same name. The default is FALSE.
If the workflow is processing a file that has the same name as an existing file, the behavior is as follows:
-
If
OverwriteExistingisTRUE, the existing file is replaced with the file being processed. -
If
OverwriteExistingisFALSE, nothing happens, and the workflow processing stops.
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) -> CopyStepDetails
pub fn build(self) -> CopyStepDetails
Consumes the builder and constructs a CopyStepDetails.
Trait Implementations§
source§impl Clone for CopyStepDetailsBuilder
impl Clone for CopyStepDetailsBuilder
source§fn clone(&self) -> CopyStepDetailsBuilder
fn clone(&self) -> CopyStepDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CopyStepDetailsBuilder
impl Debug for CopyStepDetailsBuilder
source§impl Default for CopyStepDetailsBuilder
impl Default for CopyStepDetailsBuilder
source§fn default() -> CopyStepDetailsBuilder
fn default() -> CopyStepDetailsBuilder
source§impl PartialEq for CopyStepDetailsBuilder
impl PartialEq for CopyStepDetailsBuilder
source§fn eq(&self, other: &CopyStepDetailsBuilder) -> bool
fn eq(&self, other: &CopyStepDetailsBuilder) -> bool
self and other values to be equal, and is used
by ==.