Show / Hide Table of Contents

Class CfnServer.WorkflowDetailProperty

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

Inheritance
object
CfnServer.WorkflowDetailProperty
Implements
CfnServer.IWorkflowDetailProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

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

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.

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"
             };

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

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.

public string WorkflowId { get; set; }
Property Value

string

Remarks

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

Implements

CfnServer.IWorkflowDetailProperty
Back to top Generated by DocFX