Module Values_0.CallbackStepMetadataSource

Metadata about a callback step.

Sourcetype nonrec t = {
  1. callbackToken : CallbackToken.t option;
    (*

    The pipeline generated token from the Amazon SQS queue.

    *)
  2. sqsQueueUrl : String256.t option;
    (*

    The URL of the Amazon Simple Queue Service (Amazon SQS) queue used by the callback step.

    *)
  3. outputParameters : OutputParameterList.t option;
    (*

    A list of the output parameters of the callback step.

    *)
}
Sourceval make : ?callbackToken:??? -> ?sqsQueueUrl:??? -> ?outputParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String256.t ]) list ] list | `String of CallbackToken.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