Show / Hide Table of Contents

Class CfnWorkflow.DeleteStepDetailsProperty

An object that contains the name and file location for a file being deleted by a workflow.

Inheritance
object
CfnWorkflow.DeleteStepDetailsProperty
Implements
CfnWorkflow.IDeleteStepDetailsProperty
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 CfnWorkflow.DeleteStepDetailsProperty : CfnWorkflow.IDeleteStepDetailsProperty
Syntax (vb)
Public Class CfnWorkflow.DeleteStepDetailsProperty Implements CfnWorkflow.IDeleteStepDetailsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-deletestepdetails.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 deleteStepDetailsProperty = new DeleteStepDetailsProperty {
                 Name = "name",
                 SourceFileLocation = "sourceFileLocation"
             };

Synopsis

Constructors

DeleteStepDetailsProperty()

An object that contains the name and file location for a file being deleted by a workflow.

Properties

Name

The name of the step, used as an identifier.

SourceFileLocation

Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

Constructors

DeleteStepDetailsProperty()

An object that contains the name and file location for a file being deleted by a workflow.

public DeleteStepDetailsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-deletestepdetails.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 deleteStepDetailsProperty = new DeleteStepDetailsProperty {
                 Name = "name",
                 SourceFileLocation = "sourceFileLocation"
             };

Properties

Name

The name of the step, used as an identifier.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-deletestepdetails.html#cfn-transfer-workflow-deletestepdetails-name

SourceFileLocation

Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

public string? SourceFileLocation { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-deletestepdetails.html#cfn-transfer-workflow-deletestepdetails-sourcefilelocation

    Implements

    CfnWorkflow.IDeleteStepDetailsProperty
    Back to top Generated by DocFX