Class: Aws::Pipes::Types::PipeTargetStateMachineParameters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb

Overview

The parameters for using a Step Functions state machine as a target.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#invocation_typeString

Specify whether to invoke the Step Functions state machine synchronously or asynchronously.

  • REQUEST_RESPONSE (default) - Invoke synchronously. For more information, see StartSyncExecution in the Step Functions API Reference.

    REQUEST_RESPONSE is not supported for STANDARD state machine workflows.

  • FIRE_AND_FORGET - Invoke asynchronously. For more information, see StartExecution in the Step Functions API Reference.

For more information, see Invocation types in the Amazon EventBridge User Guide.

Returns:

  • (String)


2500
2501
2502
2503
2504
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2500

class PipeTargetStateMachineParameters < Struct.new(
  :invocation_type)
  SENSITIVE = []
  include Aws::Structure
end