Show / Hide Table of Contents

Interface CfnServer.IWorkflowDetailProperty

Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnServer.IWorkflowDetailProperty
Syntax (vb)
Public Interface 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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-workflowdetail.html

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

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.

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.

string ExecutionRole { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-workflowdetail.html#cfn-transfer-server-workflowdetail-executionrole

WorkflowId

A unique identifier for the workflow.

string WorkflowId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-workflowdetail.html#cfn-transfer-server-workflowdetail-workflowid

Back to top Generated by DocFX