Class CfnServer.WorkflowDetailProperty
Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServer.WorkflowDetailProperty : CfnServer.IWorkflowDetailProperty
Syntax (vb)
Public Class CfnServer.WorkflowDetailProperty Implements CfnServer.IWorkflowDetailProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var workflowDetailProperty = new WorkflowDetailProperty {
ExecutionRole = "executionRole",
WorkflowId = "workflowId"
};
Synopsis
Constructors
| WorkflowDetailProperty() | Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow. |
Properties
| ExecutionRole | 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 | A unique identifier for the workflow. |
Constructors
WorkflowDetailProperty()
Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.
public WorkflowDetailProperty()
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var workflowDetailProperty = new WorkflowDetailProperty {
ExecutionRole = "executionRole",
WorkflowId = "workflowId"
};
Properties
ExecutionRole
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.
public string ExecutionRole { get; set; }
Property Value
Remarks
WorkflowId
A unique identifier for the workflow.
public string WorkflowId { get; set; }