Struct aws_sdk_transfer::input::CreateWorkflowInput
source · #[non_exhaustive]pub struct CreateWorkflowInput { /* private fields */ }
Implementations§
source§impl CreateWorkflowInput
impl CreateWorkflowInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateWorkflow, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateWorkflow, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateWorkflow
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateWorkflowInput
.
source§impl CreateWorkflowInput
impl CreateWorkflowInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A textual description for the workflow.
sourcepub fn steps(&self) -> Option<&[WorkflowStep]>
pub fn steps(&self) -> Option<&[WorkflowStep]>
Specifies the details for the steps that are in the specified workflow.
The TYPE
specifies which of the following actions is being taken for this step.
-
COPY: Copy the file to another location.
-
CUSTOM: Perform a custom step with an Lambda function target.
-
DELETE: Delete the file.
-
TAG: Add a tag to the file.
Currently, copying and tagging are supported only on S3.
For file location, you specify either the S3 bucket and key, or the EFS file system ID and path.
sourcepub fn on_exception_steps(&self) -> Option<&[WorkflowStep]>
pub fn on_exception_steps(&self) -> Option<&[WorkflowStep]>
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
For custom steps, the lambda function needs to send FAILURE
to the call back API to kick off the exception steps. Additionally, if the lambda does not send SUCCESS
before it times out, the exception steps are executed.
Key-value pairs that can be used to group and search for workflows. Tags are metadata attached to workflows for any purpose.
Trait Implementations§
source§impl Clone for CreateWorkflowInput
impl Clone for CreateWorkflowInput
source§fn clone(&self) -> CreateWorkflowInput
fn clone(&self) -> CreateWorkflowInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateWorkflowInput
impl Debug for CreateWorkflowInput
source§impl PartialEq<CreateWorkflowInput> for CreateWorkflowInput
impl PartialEq<CreateWorkflowInput> for CreateWorkflowInput
source§fn eq(&self, other: &CreateWorkflowInput) -> bool
fn eq(&self, other: &CreateWorkflowInput) -> bool
self
and other
values to be equal, and is used
by ==
.