Class CfnWorkflow.DeleteStepDetailsProperty
An object that contains the name and file location for a file being deleted by a workflow.
Implements
Inherited Members
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
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
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
Remarks
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; }