Module Values.MapRunRedrivenEventDetailsSource

Contains details about a Map Run that was redriven.

Sourcetype nonrec t = {
  1. mapRunArn : LongArn.t option;
    (*

    The Amazon Resource Name (ARN) of a Map Run that was redriven.

    *)
  2. redriveCount : RedriveCount.t option;
    (*

    The number of times the Map Run has been redriven at this point in the execution's history including this event. The redrive count for a redriven Map Run is always greater than 0.

    *)
}
Sourceval make : ?mapRunArn:??? -> ?redriveCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RedriveCount.t | `String of LongArn.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