Class: Aws::IoT::Types::StepFunctionsAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::StepFunctionsAction
- 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
-
#execution_name_prefix ⇒ String
(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID.
-
#role_arn ⇒ String
The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").
-
#state_machine_name ⇒ String
The name of the Step Functions state machine whose execution will be started.
Instance Attribute Details
#execution_name_prefix ⇒ String
(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.
15594 15595 15596 15597 15598 15599 15600 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15594 class StepFunctionsAction < Struct.new( :execution_name_prefix, :state_machine_name, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").
15594 15595 15596 15597 15598 15599 15600 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15594 class StepFunctionsAction < Struct.new( :execution_name_prefix, :state_machine_name, :role_arn) SENSITIVE = [] include Aws::Structure end |
#state_machine_name ⇒ String
The name of the Step Functions state machine whose execution will be started.
15594 15595 15596 15597 15598 15599 15600 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15594 class StepFunctionsAction < Struct.new( :execution_name_prefix, :state_machine_name, :role_arn) SENSITIVE = [] include Aws::Structure end |