Class: Aws::Lambda::Types::ListDurableExecutionsByFunctionResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#durable_executionsArray<Types::Execution>

List of durable execution summaries matching the filter criteria.

Returns:



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_markerString

Pagination token for retrieving additional results. Present only if there are more results available.

Returns:

  • (String)


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