Class CfnWorkflow.CustomStepDetailsProperty
Details for a step that invokes an AWS Lambda function.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CustomStepDetailsProperty : Object, CfnWorkflow.ICustomStepDetailsProperty
Syntax (vb)
Public Class CustomStepDetailsProperty
Inherits Object
Implements 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
Constructors
CustomStepDetailsProperty() |
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. |
Constructors
CustomStepDetailsProperty()
public CustomStepDetailsProperty()
Properties
Name
The name of the step, used as an identifier.
public string Name { get; set; }
Property Value
System.String
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; }
Property Value
System.String
Remarks
Target
The ARN for the Lambda function that is being called.
public string Target { get; set; }
Property Value
System.String
Remarks
TimeoutSeconds
Timeout, in seconds, for the step.
public Nullable<double> TimeoutSeconds { get; set; }
Property Value
System.Nullable<System.Double>