Class: Aws::Lambda::Types::ListDurableExecutionsByFunctionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListDurableExecutionsByFunctionResponse
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The response from the ListDurableExecutionsByFunction operation, containing a list of durable executions and pagination information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#durable_executions ⇒ Array<Types::Execution>
List of durable execution summaries matching the filter criteria.
-
#next_marker ⇒ String
Pagination token for retrieving additional results.
Instance Attribute Details
#durable_executions ⇒ Array<Types::Execution>
List of durable execution summaries matching the filter criteria.
6264 6265 6266 6267 6268 6269 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6264 class ListDurableExecutionsByFunctionResponse < Struct.new( :durable_executions, :next_marker) SENSITIVE = [] include Aws::Structure end |
#next_marker ⇒ String
Pagination token for retrieving additional results. Present only if there are more results available.
6264 6265 6266 6267 6268 6269 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6264 class ListDurableExecutionsByFunctionResponse < Struct.new( :durable_executions, :next_marker) SENSITIVE = [] include Aws::Structure end |