Show / Hide Table of Contents

Class CfnWorkflow.CustomStepDetailsProperty

Details for a step that invokes an AWS Lambda function.

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

Consists of the Lambda function's name, target, and timeout (in seconds).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-customstepdetails.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 customStepDetailsProperty = new CustomStepDetailsProperty {
                 Name = "name",
                 SourceFileLocation = "sourceFileLocation",
                 Target = "target",
                 TimeoutSeconds = 123
             };

Synopsis

Constructors

CustomStepDetailsProperty()

Details for a step that invokes an AWS Lambda function.

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()

Details for a step that invokes an AWS Lambda function.

public CustomStepDetailsProperty()
Remarks

Consists of the Lambda function's name, target, and timeout (in seconds).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-customstepdetails.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 customStepDetailsProperty = new CustomStepDetailsProperty {
                 Name = "name",
                 SourceFileLocation = "sourceFileLocation",
                 Target = "target",
                 TimeoutSeconds = 123
             };

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-customstepdetails.html#cfn-transfer-workflow-customstepdetails-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-customstepdetails.html#cfn-transfer-workflow-customstepdetails-sourcefilelocation

    Target

    The ARN for the Lambda function that is being called.

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

    string

    Remarks

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

    TimeoutSeconds

    Timeout, in seconds, for the step.

    public double? TimeoutSeconds { get; set; }
    Property Value

    double?

    Remarks

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

    Implements

    CfnWorkflow.ICustomStepDetailsProperty
    Back to top Generated by DocFX