Module Values.EventStreamDestinationDetailsSource

Details of the destination being used for the EventStream.

Sourcetype nonrec t = {
  1. uri : String1To255.t option;
    (*

    The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.

    *)
  2. status : EventStreamDestinationStatus.t option;
    (*

    The status of enabling the Kinesis stream as a destination for export.

    *)
  3. unhealthySince : Timestamp.t option;
    (*

    The timestamp when the status last changed to UNHEALHY.

    *)
  4. message : String1To1000.t option;
    (*

    The human-readable string that corresponds to the error or success while enabling the streaming destination.

    *)
}
Sourceval make : ?uri:??? -> ?status:??? -> ?unhealthySince:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String1To255.t | `Timestamp of Timestamp.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