Module Values.UnprocessedSecurityControlSource

Provides details about a security control for which a response couldn't be returned.

Sourcetype nonrec t = {
  1. securityControlId : NonEmptyString.t option;
    (*

    The control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) for which a response couldn't be returned.

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

    The error code for the unprocessed security control. The NOT_FOUND value has been deprecated and replaced by the RESOURCE_NOT_FOUND value.

    *)
  3. errorReason : NonEmptyString.t option;
    (*

    The reason why the security control was unprocessed.

    *)
}
Sourceval make : ?securityControlId:??? -> ?errorCode:??? -> ?errorReason:??? -> 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