Module Values.StartTimerFailedEventAttributesSource

Provides the details of the StartTimerFailed event.

Sourcetype nonrec t = {
  1. timerId : TimerId.t option;
    (*

    The timerId provided in the StartTimer decision that failed.

    *)
  2. cause : StartTimerFailedCause.t option;
    (*

    The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer Guide.

    *)
  3. decisionTaskCompletedEventId : EventId.t option;
    (*

    The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the StartTimer decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
}
Sourceval make : ?timerId:??? -> ?cause:??? -> ?decisionTaskCompletedEventId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of EventId.t | `String of TimerId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t