Class: Aws::Lambda::Types::ExecutionDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ExecutionDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Details about a [durable execution].
[1]: docs.aws.amazon.com/lambda/latest/dg/durable-functions.html
Constant Summary collapse
- SENSITIVE =
[:input_payload]
Instance Attribute Summary collapse
-
#input_payload ⇒ String
The original input payload provided for the durable execution.
Instance Attribute Details
#input_payload ⇒ String
The original input payload provided for the durable execution.
3255 3256 3257 3258 3259 |
# File 'lib/aws-sdk-lambda/types.rb', line 3255 class ExecutionDetails < Struct.new( :input_payload) SENSITIVE = [:input_payload] include Aws::Structure end |