Module Values.TaskScheduledEventDetailsSource

Contains details about a task scheduled during an execution.

Sourcetype nonrec t = {
  1. resourceType : Name.t option;
    (*

    The service name of the resource in a task state.

    *)
  2. resource : Name.t option;
    (*

    The action of the resource called by a task state.

    *)
  3. region : Name.t option;
    (*

    The region of the scheduled task

    *)
  4. parameters : ConnectorParameters.t option;
    (*

    The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

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

    The maximum allowed duration of the task.

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

    The maximum allowed duration between two heartbeats for the task.

    *)
  7. taskCredentials : TaskCredentials.t option;
    (*

    The credentials that Step Functions uses for the task.

    *)
}
Sourceval make : ?resourceType:??? -> ?resource:??? -> ?region:??? -> ?parameters:??? -> ?timeoutInSeconds:??? -> ?heartbeatInSeconds:??? -> ?taskCredentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of TimeoutInSeconds.t | `String of Name.t | `Structure of (string * [> `String of LongArn.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