Class: Aws::States::Types::StateEnteredEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::StateEnteredEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a state entered during an execution.
Constant Summary collapse
- SENSITIVE =
[:input]
Instance Attribute Summary collapse
-
#input ⇒ String
The string that contains the JSON input data for the state.
-
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the input for an execution history event.
-
#name ⇒ String
The name of the state.
Instance Attribute Details
#input ⇒ String
The string that contains the JSON input data for the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
3678 3679 3680 3681 3682 3683 3684 |
# File 'lib/aws-sdk-states/types.rb', line 3678 class StateEnteredEventDetails < Struct.new( :name, :input, :input_details) SENSITIVE = [:input] include Aws::Structure end |
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the input for an execution history event.
3678 3679 3680 3681 3682 3683 3684 |
# File 'lib/aws-sdk-states/types.rb', line 3678 class StateEnteredEventDetails < Struct.new( :name, :input, :input_details) SENSITIVE = [:input] include Aws::Structure end |
#name ⇒ String
The name of the state.
3678 3679 3680 3681 3682 3683 3684 |
# File 'lib/aws-sdk-states/types.rb', line 3678 class StateEnteredEventDetails < Struct.new( :name, :input, :input_details) SENSITIVE = [:input] include Aws::Structure end |