Interface CfnWorkflow.CustomStepDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflow.CustomStepDetailsProperty.Jsii$Proxy
Enclosing class:
CfnWorkflow

@Stability(Stable) public static interface CfnWorkflow.CustomStepDetailsProperty extends software.amazon.jsii.JsiiSerializable
Details for a step that invokes an AWS Lambda function.

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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.transfer.*;
 CustomStepDetailsProperty customStepDetailsProperty = CustomStepDetailsProperty.builder()
         .name("name")
         .sourceFileLocation("sourceFileLocation")
         .target("target")
         .timeoutSeconds(123)
         .build();
 

See Also: