Show / Hide Table of Contents

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

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

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

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.

string? SourceFileLocation { get; }
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.

    string? Target { get; }
    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.

    double? TimeoutSeconds { get; }
    Property Value

    double?

    Remarks

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

    Back to top Generated by DocFX