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

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

Instance Attribute Details

#durable_executionsArray<Types::Execution>

List of durable execution summaries matching the filter criteria.

Returns:



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_markerString

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

Returns:

  • (String)


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