Class: Aws::States::Types::ExecutionStartedEventDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#inputString

The JSON data input to the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

Returns:

  • (String)


1022
1023
1024
1025
1026
1027
1028
# File 'lib/aws-sdk-states/types.rb', line 1022

class ExecutionStartedEventDetails < Struct.new(
  :input,
  :input_details,
  :role_arn)
  SENSITIVE = [:input]
  include Aws::Structure
end

#input_detailsTypes::HistoryEventExecutionDataDetails

Contains details about the input for an execution history event.



1022
1023
1024
1025
1026
1027
1028
# File 'lib/aws-sdk-states/types.rb', line 1022

class ExecutionStartedEventDetails < Struct.new(
  :input,
  :input_details,
  :role_arn)
  SENSITIVE = [:input]
  include Aws::Structure
end

#role_arnString

The Amazon Resource Name (ARN) of the IAM role used for executing AWS Lambda tasks.

Returns:

  • (String)


1022
1023
1024
1025
1026
1027
1028
# File 'lib/aws-sdk-states/types.rb', line 1022

class ExecutionStartedEventDetails < Struct.new(
  :input,
  :input_details,
  :role_arn)
  SENSITIVE = [:input]
  include Aws::Structure
end