Module Values_2.FailedKeyRegistrationEntrySource

An entry that appears when a KeyRegistration update to Quick Sight fails.

Sourcetype nonrec t = {
  1. keyArn : Values_0.String_.t option;
    (*

    The ARN of the KMS key that failed to update.

    *)
  2. message : Values_0.NonEmptyString.t option;
    (*

    A message that provides information about why a FailedKeyRegistrationEntry error occurred.

    *)
  3. statusCode : Values_1.StatusCode.t option;
    (*

    The HTTP status of a FailedKeyRegistrationEntry error.

    *)
  4. senderFault : Values_0.Boolean.t option;
    (*

    A boolean that indicates whether a FailedKeyRegistrationEntry resulted from user error. If the value of this property is True, the error was caused by user error. If the value of this property is False, the error occurred on the backend. If your job continues fail and with a False SenderFault value, contact Amazon Web Services Support.

    *)
}
Sourceval make : ?keyArn:??? -> ?message:??? -> ?statusCode:??? -> ?senderFault:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Values_1.StatusCode.t | `String of Values_0.String_.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