AWS::Transfer::WorkflowAllows you to create a workflow with specified steps and step details the workflow invokes after file transfer completes. After creating a workflow, you can associate the workflow created with any transfer servers by specifying the `workflow-details` field in `CreateServer` and `UpdateServer` operations.
import { CfnWorkflow } from 'aws-cdk-lib/aws-transfer';Or use the module namespace:
import * as transfer from 'aws-cdk-lib/aws-transfer';
// transfer.CfnWorkflowConfiguration passed to the constructor as CfnWorkflowProps.
stepsRequiredIResolvable | IResolvable | WorkflowStepProperty[]Specifies the details for the steps that are in the specified workflow.
descriptionOptionalstringSpecifies the text description for the workflow.
onExceptionStepsOptionalIResolvable | IResolvable | WorkflowStepProperty[]Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
tagsOptionalCfnTag[]Key-value pairs that can be used to group and search for workflows. Tags are metadata attached to workflows for any purpose.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-transferAWS::Transfer::Workflow