Class: Aws::States::Types::ExecutionStartedEventDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::States::Types::ExecutionStartedEventDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-states/types.rb
 
Overview
Contains details about the start of the execution.
Constant Summary collapse
- SENSITIVE =
 [:input]
Instance Attribute Summary collapse
- 
  
    
      #input  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The JSON data input to the execution.
 - 
  
    
      #input_details  ⇒ Types::HistoryEventExecutionDataDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains details about the input for an execution history event.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the IAM role used for executing Lambda tasks.
 - 
  
    
      #state_machine_alias_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) that identifies a state machine alias used for starting the state machine execution.
 - 
  
    
      #state_machine_version_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) that identifies a state machine version used for starting the state machine execution.
 
Instance Attribute Details
#input ⇒ String
The JSON data input to the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
      1584 1585 1586 1587 1588 1589 1590 1591 1592  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1584 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn, :state_machine_alias_arn, :state_machine_version_arn) SENSITIVE = [:input] include Aws::Structure end  | 
  
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the input for an execution history event.
      1584 1585 1586 1587 1588 1589 1590 1591 1592  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1584 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn, :state_machine_alias_arn, :state_machine_version_arn) SENSITIVE = [:input] include Aws::Structure end  | 
  
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role used for executing Lambda tasks.
      1584 1585 1586 1587 1588 1589 1590 1591 1592  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1584 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn, :state_machine_alias_arn, :state_machine_version_arn) SENSITIVE = [:input] include Aws::Structure end  | 
  
#state_machine_alias_arn ⇒ String
The Amazon Resource Name (ARN) that identifies a state machine alias used for starting the state machine execution.
      1584 1585 1586 1587 1588 1589 1590 1591 1592  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1584 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn, :state_machine_alias_arn, :state_machine_version_arn) SENSITIVE = [:input] include Aws::Structure end  | 
  
#state_machine_version_arn ⇒ String
The Amazon Resource Name (ARN) that identifies a state machine version used for starting the state machine execution.
      1584 1585 1586 1587 1588 1589 1590 1591 1592  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1584 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn, :state_machine_alias_arn, :state_machine_version_arn) SENSITIVE = [:input] include Aws::Structure end  |