Struct aws_sdk_transfer::types::DecryptStepDetails
source · #[non_exhaustive]pub struct DecryptStepDetails {
pub name: Option<String>,
pub type: EncryptionType,
pub source_file_location: Option<String>,
pub overwrite_existing: Option<OverwriteExisting>,
pub destination_file_location: Option<InputFileLocation>,
}
Expand description
Each step type has its own StepDetails
structure.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the step, used as an identifier.
type: EncryptionType
The type of encryption used. Currently, this value must be PGP
.
source_file_location: 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}
.
overwrite_existing: 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
OverwriteExisting
isTRUE
, the existing file is replaced with the file being processed. -
If
OverwriteExisting
isFALSE
, nothing happens, and the workflow processing stops.
destination_file_location: Option<InputFileLocation>
Specifies the location for the file being decrypted. Use ${Transfer:UserName}
or ${Transfer:UploadDate}
in this field to parametrize the destination prefix by username or uploaded date.
-
Set the value of
DestinationFileLocation
to${Transfer:UserName}
to decrypt 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
DestinationFileLocation
to${Transfer:UploadDate}
to decrypt uploaded files to an Amazon S3 bucket that is prefixed with the date of the upload.The system resolves
UploadDate
to a date format of YYYY-MM-DD, based on the date the file is uploaded in UTC.
Implementations§
source§impl DecryptStepDetails
impl DecryptStepDetails
sourcepub fn type(&self) -> &EncryptionType
pub fn type(&self) -> &EncryptionType
The type of encryption used. Currently, this value must be PGP
.
sourcepub fn source_file_location(&self) -> Option<&str>
pub fn source_file_location(&self) -> Option<&str>
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 overwrite_existing(&self) -> Option<&OverwriteExisting>
pub fn 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
OverwriteExisting
isTRUE
, the existing file is replaced with the file being processed. -
If
OverwriteExisting
isFALSE
, nothing happens, and the workflow processing stops.
sourcepub fn destination_file_location(&self) -> Option<&InputFileLocation>
pub fn destination_file_location(&self) -> Option<&InputFileLocation>
Specifies the location for the file being decrypted. Use ${Transfer:UserName}
or ${Transfer:UploadDate}
in this field to parametrize the destination prefix by username or uploaded date.
-
Set the value of
DestinationFileLocation
to${Transfer:UserName}
to decrypt 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
DestinationFileLocation
to${Transfer:UploadDate}
to decrypt uploaded files to an Amazon S3 bucket that is prefixed with the date of the upload.The system resolves
UploadDate
to a date format of YYYY-MM-DD, based on the date the file is uploaded in UTC.
source§impl DecryptStepDetails
impl DecryptStepDetails
sourcepub fn builder() -> DecryptStepDetailsBuilder
pub fn builder() -> DecryptStepDetailsBuilder
Creates a new builder-style object to manufacture DecryptStepDetails
.
Trait Implementations§
source§impl Clone for DecryptStepDetails
impl Clone for DecryptStepDetails
source§fn clone(&self) -> DecryptStepDetails
fn clone(&self) -> DecryptStepDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DecryptStepDetails
impl Debug for DecryptStepDetails
source§impl PartialEq for DecryptStepDetails
impl PartialEq for DecryptStepDetails
source§fn eq(&self, other: &DecryptStepDetails) -> bool
fn eq(&self, other: &DecryptStepDetails) -> bool
self
and other
values to be equal, and is used
by ==
.