Class: Aws::Lambda::Types::DurableConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DurableConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Configuration settings for durable functions, including execution timeout, retention period for execution history, and an optional ARN of the Key Management Service (KMS) customer managed key that is used to encrypt your durable execution's payload data, including input, output, and error payloads.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_timeout ⇒ Integer
The maximum time (in seconds) that a durable execution can run before timing out.
-
#kms_key_arn ⇒ String
The ARN of the Key Management Service (KMS) customer managed key that is used to encrypt your durable execution's payload data, including input, output, and error payloads.
-
#retention_period_in_days ⇒ Integer
The number of days to retain execution history after a durable execution completes.
Instance Attribute Details
#execution_timeout ⇒ Integer
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.
2573 2574 2575 2576 2577 2578 2579 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2573 class DurableConfig < Struct.new( :kms_key_arn, :retention_period_in_days, :execution_timeout) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The ARN of the Key Management Service (KMS) customer managed key that is used to encrypt your durable execution's payload data, including input, output, and error payloads.
2573 2574 2575 2576 2577 2578 2579 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2573 class DurableConfig < Struct.new( :kms_key_arn, :retention_period_in_days, :execution_timeout) SENSITIVE = [] include Aws::Structure end |
#retention_period_in_days ⇒ Integer
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.
2573 2574 2575 2576 2577 2578 2579 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2573 class DurableConfig < Struct.new( :kms_key_arn, :retention_period_in_days, :execution_timeout) SENSITIVE = [] include Aws::Structure end |