Class: Aws::States::Types::GetExecutionHistoryOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::GetExecutionHistoryOutput
- Includes:
- Aws::Structure
- Defined in:
- 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.
1211 1212 1213 1214 1215 1216 |
# File 'lib/aws-sdk-states/types.rb', line 1211 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.
1211 1212 1213 1214 1215 1216 |
# File 'lib/aws-sdk-states/types.rb', line 1211 class GetExecutionHistoryOutput < Struct.new( :events, :next_token) SENSITIVE = [] include Aws::Structure end |