AWS Fundamentals Logo
AWS Fundamentals
AWS::Transfer::Workflow

Transfer Workflow

Resource Type definition for AWS::Transfer::Workflow

Properties

4 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
Steps
Array<WorkflowStep>
RequiredCreate-only
Description
string
Create-only
OnExceptionSteps
Array<WorkflowStep>
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringSpecifies the unique Amazon Resource Name (ARN) for the workflow.
WorkflowIdstringA unique identifier for the workflow.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Transfer::Workflow

Resources:
  MyResource:
    Type: AWS::Transfer::Workflow
    Properties:
      Steps: []
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

transfer:CreateWorkflowtransfer:TagResource

read

transfer:DescribeWorkflow

delete

transfer:DeleteWorkflow

list

transfer:ListWorkflows

update

transfer:UnTagResourcetransfer:TagResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceTransfer
Properties6
Required1
TaggingSupported
Primary IDWorkflowId

Supported Operations

CreateReadDeleteListUpdate

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

StepsOnExceptionStepsDescription

External Links