Class: Aws::IoT::Types::StepFunctionsAction

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

Overview

Starts execution of a Step Functions state machine.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#execution_name_prefixString

(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID. Step Functions automatically creates a unique name for each state machine execution if one is not provided.

Returns:

  • (String)


14229
14230
14231
14232
14233
14234
14235
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14229

class StepFunctionsAction < Struct.new(
  :execution_name_prefix,
  :state_machine_name,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").

Returns:

  • (String)


14229
14230
14231
14232
14233
14234
14235
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14229

class StepFunctionsAction < Struct.new(
  :execution_name_prefix,
  :state_machine_name,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#state_machine_nameString

The name of the Step Functions state machine whose execution will be started.

Returns:

  • (String)


14229
14230
14231
14232
14233
14234
14235
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14229

class StepFunctionsAction < Struct.new(
  :execution_name_prefix,
  :state_machine_name,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end