Class: Aws::Lambda::Types::WaitStartedDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::WaitStartedDetails
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Details about a wait operation that has started.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration ⇒ Integer
The duration to wait, in seconds.
-
#scheduled_end_timestamp ⇒ Time
The date and time when the wait operation is scheduled to complete, in [ISO-8601 format][1] (YYYY-MM-DDThh:mm:ss.sTZD).
Instance Attribute Details
#duration ⇒ Integer
The duration to wait, in seconds.
9876 9877 9878 9879 9880 9881 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 9876 class WaitStartedDetails < Struct.new( :duration, :scheduled_end_timestamp) SENSITIVE = [] include Aws::Structure end |
#scheduled_end_timestamp ⇒ Time
The date and time when the wait operation is scheduled to complete, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
9876 9877 9878 9879 9880 9881 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 9876 class WaitStartedDetails < Struct.new( :duration, :scheduled_end_timestamp) SENSITIVE = [] include Aws::Structure end |