Class: Aws::SWF::Types::DecisionTaskStartedEventAttributes

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb

Overview

Provides the details of the DecisionTaskStarted event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identityString

Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined.

Returns:

  • (String)


1719
1720
1721
1722
1723
1724
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1719

class DecisionTaskStartedEventAttributes < Struct.new(
  :identity,
  :scheduled_event_id)
  SENSITIVE = []
  include Aws::Structure
end

#scheduled_event_idInteger

The ID of the DecisionTaskScheduled event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Returns:

  • (Integer)


1719
1720
1721
1722
1723
1724
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1719

class DecisionTaskStartedEventAttributes < Struct.new(
  :identity,
  :scheduled_event_id)
  SENSITIVE = []
  include Aws::Structure
end