interface WorkflowDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnServerPropsMixin.WorkflowDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnServerPropsMixin_WorkflowDetailProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnServerPropsMixin.WorkflowDetailProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnServerPropsMixin.WorkflowDetailProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » CfnServerPropsMixin » WorkflowDetailProperty |
Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.
In addition to a workflow to execute when a file is uploaded completely, WorkflowDetails can also contain a workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when the session disconnects.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from '@aws-cdk/cfn-property-mixins';
const workflowDetailProperty: transfer.CfnServerPropsMixin.WorkflowDetailProperty = {
executionRole: 'executionRole',
workflowId: 'workflowId',
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | string | Includes the necessary permissions for S3, EFS, and Lambda operations that Transfer can assume, so that all workflow steps can operate on the required resources. |
| workflow | string | A unique identifier for the workflow. |
executionRole?
Type:
string
(optional)
Includes the necessary permissions for S3, EFS, and Lambda operations that Transfer can assume, so that all workflow steps can operate on the required resources.
workflowId?
Type:
string
(optional)
A unique identifier for the workflow.

.NET
Go
Java
Python
TypeScript