Class: Aws::Lambda::Types::ListDurableExecutionsByFunctionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListDurableExecutionsByFunctionResponse
- Includes:
- Structure
- Defined in:
- 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.
6321 6322 6323 6324 6325 6326 |
# File 'lib/aws-sdk-lambda/types.rb', line 6321 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.
6321 6322 6323 6324 6325 6326 |
# File 'lib/aws-sdk-lambda/types.rb', line 6321 class ListDurableExecutionsByFunctionResponse < Struct.new( :durable_executions, :next_marker) SENSITIVE = [] include Aws::Structure end |