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.
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.
1062 1063 1064 1065 1066 1067 1068 |
# File 'lib/aws-sdk-states/types.rb', line 1062 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn) SENSITIVE = [:input] include Aws::Structure end |
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the input for an execution history event.
1062 1063 1064 1065 1066 1067 1068 |
# File 'lib/aws-sdk-states/types.rb', line 1062 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn) SENSITIVE = [:input] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role used for executing Lambda tasks.
1062 1063 1064 1065 1066 1067 1068 |
# File 'lib/aws-sdk-states/types.rb', line 1062 class ExecutionStartedEventDetails < Struct.new( :input, :input_details, :role_arn) SENSITIVE = [:input] include Aws::Structure end |