Class: Aws::IoT::Types::StepFunctionsAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::StepFunctionsAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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.
      14229 14230 14231 14232 14233 14234 14235  | 
    
      # File '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_arn ⇒ String
The ARN of the role that grants IoT permission to start execution of a state machine (“Action”:“states:StartExecution”).
      14229 14230 14231 14232 14233 14234 14235  | 
    
      # File '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_name ⇒ String
The name of the Step Functions state machine whose execution will be started.
      14229 14230 14231 14232 14233 14234 14235  | 
    
      # File '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  |