Module Values.LambdaFunctionScheduledEventDetailsSource

Contains details about a Lambda function scheduled during an execution.

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

    The Amazon Resource Name (ARN) of the scheduled Lambda function.

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

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

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

    Contains details about input for an execution history event.

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

    The maximum allowed duration of the Lambda function.

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

    The credentials that Step Functions uses for the task.

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