Interface CfnPipe.PipeTargetStateMachineParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.PipeTargetStateMachineParametersProperty.Jsii$Proxy
- Enclosing class:
- CfnPipe
@Stability(Stable)
public static interface CfnPipe.PipeTargetStateMachineParametersProperty
extends software.amazon.jsii.JsiiSerializable
The parameters for using a Step Functions state machine as a target.
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.pipes.*;
PipeTargetStateMachineParametersProperty pipeTargetStateMachineParametersProperty = PipeTargetStateMachineParametersProperty.builder()
.invocationType("invocationType")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.PipeTargetStateMachineParametersPropertystatic final classAn implementation forCfnPipe.PipeTargetStateMachineParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInvocationType
Specify whether to invoke the Step Functions state machine synchronously or asynchronously.REQUEST_RESPONSE(default) - Invoke synchronously. For more information, see StartSyncExecution in the AWS Step Functions API Reference .
REQUEST_RESPONSEis not supported forSTANDARDstate machine workflows.FIRE_AND_FORGET- Invoke asynchronously. For more information, see StartExecution in the AWS Step Functions API Reference .
For more information, see Invocation types in the Amazon EventBridge User Guide .
-
builder
-