Module Values.ReplayDestinationSource

A ReplayDestination object that contains details about a replay.

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

    The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.

    *)
  2. filterArns : ReplayDestinationFilters.t option;
    (*

    A list of ARNs for rules to replay events to.

    *)
}
Sourceval context_ : string
Sourceval make : ?filterArns:??? -> arn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Arn.t ] list | `String of Arn.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