Module Values_0.ConfigurationDetailsSource

The encryption configuration details that include the status information of the Key Management Service (KMS) key and the KMS access role.

Sourcetype nonrec t = {
  1. configurationStatus : ConfigurationStatus.t option;
    (*

    The health status of KMS key and KMS access role. If either KMS key or KMS access role is UNHEALTHY, the return value will be UNHEALTHY. To use a customer managed KMS key, the value of configurationStatus must be HEALTHY.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code that indicates either the KMS key or the KMS access role is UNHEALTHY. Valid values: KMS_KEY_VALIDATION_ERROR and ROLE_VALIDATION_ERROR.

    *)
  3. errorMessage__lc1 : ErrorMessage.t option;
    (*

    The detailed error message that corresponds to the errorCode.

    *)
}
Sourceval make : ?configurationStatus:??? -> ?errorCode:??? -> ?errorMessage__lc1:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ErrorCode.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