Class: Aws::States::Types::StateExitedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::StateExitedEventDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about an exit from a state during an execution.
Constant Summary collapse
- SENSITIVE =
[:output, :assigned_variables]
Instance Attribute Summary collapse
-
#assigned_variables ⇒ Hash<String,String>
Map of variable name and value as a serialized JSON representation.
-
#assigned_variables_details ⇒ Types::AssignedVariablesDetails
Provides details about input or output in an execution history event.
-
#name ⇒ String
The name of the state.
-
#output ⇒ String
The JSON output data of the state.
-
#output_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the output of an execution history event.
Instance Attribute Details
#assigned_variables ⇒ Hash<String,String>
Map of variable name and value as a serialized JSON representation.
3819 3820 3821 3822 3823 3824 3825 3826 3827 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3819 class StateExitedEventDetails < Struct.new( :name, :output, :output_details, :assigned_variables, :assigned_variables_details) SENSITIVE = [:output, :assigned_variables] include Aws::Structure end |
#assigned_variables_details ⇒ Types::AssignedVariablesDetails
Provides details about input or output in an execution history event.
3819 3820 3821 3822 3823 3824 3825 3826 3827 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3819 class StateExitedEventDetails < Struct.new( :name, :output, :output_details, :assigned_variables, :assigned_variables_details) SENSITIVE = [:output, :assigned_variables] include Aws::Structure end |
#name ⇒ String
The name of the state.
A name must not contain:
white space
brackets
< > { } [ ]
wildcard characters
? *
special characters
" # % \ ^ | ~ ` $ & , ; : /
control characters (
U+0000-001F
,U+007F-009F
)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
3819 3820 3821 3822 3823 3824 3825 3826 3827 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3819 class StateExitedEventDetails < Struct.new( :name, :output, :output_details, :assigned_variables, :assigned_variables_details) SENSITIVE = [:output, :assigned_variables] include Aws::Structure end |
#output ⇒ String
The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
3819 3820 3821 3822 3823 3824 3825 3826 3827 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3819 class StateExitedEventDetails < Struct.new( :name, :output, :output_details, :assigned_variables, :assigned_variables_details) SENSITIVE = [:output, :assigned_variables] include Aws::Structure end |
#output_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the output of an execution history event.
3819 3820 3821 3822 3823 3824 3825 3826 3827 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3819 class StateExitedEventDetails < Struct.new( :name, :output, :output_details, :assigned_variables, :assigned_variables_details) SENSITIVE = [:output, :assigned_variables] include Aws::Structure end |