Interface CfnWorkflow.ICustomStepDetailsProperty
Details for a step that invokes an AWS Lambda function.
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWorkflow.ICustomStepDetailsProperty
Syntax (vb)
Public Interface CfnWorkflow.ICustomStepDetailsProperty
Remarks
Consists of the Lambda function's name, target, and timeout (in seconds).
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 customStepDetailsProperty = new CustomStepDetailsProperty {
Name = "name",
SourceFileLocation = "sourceFileLocation",
Target = "target",
TimeoutSeconds = 123
};
Synopsis
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. |
| Target | The ARN for the Lambda function that is being called. |
| TimeoutSeconds | Timeout, in seconds, for the step. |
Properties
Name
The name of the step, used as an identifier.
string? Name { get; }
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.
string? SourceFileLocation { get; }
Property Value
Remarks
Target
The ARN for the Lambda function that is being called.
string? Target { get; }
Property Value
Remarks
TimeoutSeconds
Timeout, in seconds, for the step.
double? TimeoutSeconds { get; }