Class: Aws::States::Types::GetExecutionHistoryOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::GetExecutionHistoryOutput
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#events ⇒ Array<Types::HistoryEvent>
The list of events that occurred in the execution.
-
#next_token ⇒ String
If
nextToken
is returned, there are more results available.
Instance Attribute Details
#events ⇒ Array<Types::HistoryEvent>
The list of events that occurred in the execution.
1735 1736 1737 1738 1739 1740 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1735 class GetExecutionHistoryOutput < Struct.new( :events, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If nextToken
is returned, there are more results available. The
value of nextToken
is a unique pagination token for each page.
Make the call again using the returned token to retrieve the next
page. Keep all other arguments unchanged. Each pagination token
expires after 24 hours. Using an expired pagination token will
return an HTTP 400 InvalidToken error.
1735 1736 1737 1738 1739 1740 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1735 class GetExecutionHistoryOutput < Struct.new( :events, :next_token) SENSITIVE = [] include Aws::Structure end |