Module Values.CapabilityFailureSource

Information about a capability failure.

Sourcetype nonrec t = {
  1. reason : CapabilityFailureReason.t option;
    (*

    The reason for the capability failure. Possible values: KMS_KEY_INSUFFICIENT_PERMISSION.

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

    Additional details about the capability failure.

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