interface WorkflowDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnServerPropsMixin.WorkflowDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnServerPropsMixin_WorkflowDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnServerPropsMixin.WorkflowDetailProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnServerPropsMixin.WorkflowDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » 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 { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const workflowDetailProperty: transfer_mixins.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