Class: Aws::Lambda::Types::DurableConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Configuration settings for [durable functions], including execution timeout and retention period for execution history.

[1]: docs.aws.amazon.com/lambda/latest/dg/durable-functions.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#execution_timeoutInteger

The maximum time (in seconds) that a durable execution can run before timing out. This timeout applies to the entire durable execution, not individual function invocations.

Returns:

  • (Integer)


2384
2385
2386
2387
2388
2389
# File 'lib/aws-sdk-lambda/types.rb', line 2384

class DurableConfig < Struct.new(
  :retention_period_in_days,
  :execution_timeout)
  SENSITIVE = []
  include Aws::Structure
end

#retention_period_in_daysInteger

The number of days to retain execution history after a durable execution completes. After this period, execution history is no longer available through the GetDurableExecutionHistory API.

Returns:

  • (Integer)


2384
2385
2386
2387
2388
2389
# File 'lib/aws-sdk-lambda/types.rb', line 2384

class DurableConfig < Struct.new(
  :retention_period_in_days,
  :execution_timeout)
  SENSITIVE = []
  include Aws::Structure
end