Module Values.ActivityScheduledEventDetailsSource

Contains details about an activity scheduled during an execution.

Sourcetype nonrec t = {
  1. resource : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the scheduled activity.

    *)
  2. input : SensitiveData.t option;
    (*

    The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

    *)
  3. inputDetails : HistoryEventExecutionDataDetails.t option;
    (*

    Contains details about the input for an execution history event.

    *)
  4. timeoutInSeconds : TimeoutInSeconds.t option;
    (*

    The maximum allowed duration of the activity task.

    *)
  5. heartbeatInSeconds : TimeoutInSeconds.t option;
    (*

    The maximum allowed duration between two heartbeats for the activity task.

    *)
}
Sourceval make : ?resource:??? -> ?input:??? -> ?inputDetails:??? -> ?timeoutInSeconds:??? -> ?heartbeatInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of TimeoutInSeconds.t | `String of Arn.t | `Structure of (string * [> `Boolean of Truncated.t ]) list ]) 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