Module Values.FailureDescriptionSource

Provides details in case one of the following operations fails due to an error related to KMS: CreateDeliveryStream, DeleteDeliveryStream, StartDeliveryStreamEncryption, StopDeliveryStreamEncryption.

Sourcetype nonrec t = {
  1. type_ : DeliveryStreamFailureType.t option;
    (*

    The type of error that caused the failure.

    *)
  2. details : NonEmptyString.t option;
    (*

    A message providing details about the error that caused the failure.

    *)
}
Sourceval make : ?type_:??? -> ?details:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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