Class: Aws::Lambda::Types::WaitStartedDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#durationInteger

The duration to wait, in seconds.

Returns:

  • (Integer)


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_timestampTime

The date and time when the wait operation is scheduled to complete, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

Returns:

  • (Time)


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