Class: Aws::Lambda::Types::InvocationCompletedDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::InvocationCompletedDetails
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Details about a function invocation that completed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_timestamp ⇒ Time
The date and time when the invocation ended, in [ISO-8601 format][1] (YYYY-MM-DDThh:mm:ss.sTZD).
-
#error ⇒ Types::EventError
Details about the invocation failure.
-
#request_id ⇒ String
The request ID for the invocation.
-
#start_timestamp ⇒ Time
The date and time when the invocation started, in [ISO-8601 format][1] (YYYY-MM-DDThh:mm:ss.sTZD).
Instance Attribute Details
#end_timestamp ⇒ Time
The date and time when the invocation ended, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5337 class InvocationCompletedDetails < Struct.new( :start_timestamp, :end_timestamp, :request_id, :error) SENSITIVE = [] include Aws::Structure end |
#error ⇒ Types::EventError
Details about the invocation failure.
5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5337 class InvocationCompletedDetails < Struct.new( :start_timestamp, :end_timestamp, :request_id, :error) SENSITIVE = [] include Aws::Structure end |
#request_id ⇒ String
The request ID for the invocation.
5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5337 class InvocationCompletedDetails < Struct.new( :start_timestamp, :end_timestamp, :request_id, :error) SENSITIVE = [] include Aws::Structure end |
#start_timestamp ⇒ Time
The date and time when the invocation started, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5337 class InvocationCompletedDetails < Struct.new( :start_timestamp, :end_timestamp, :request_id, :error) SENSITIVE = [] include Aws::Structure end |