Module Values.UnprocessedStandardsControlAssociationUpdateSource

Provides details about which control's enablement status could not be updated in a specified standard when calling the BatchUpdateStandardsControlAssociations API. This parameter also provides details about why the request was unprocessed.

Sourcetype nonrec t = {
  1. standardsControlAssociationUpdate : StandardsControlAssociationUpdate.t option;
    (*

    An array of control and standard associations for which an update failed when calling BatchUpdateStandardsControlAssociations.

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

    The error code for the unprocessed update of the control's enablement status in the specified standard. The NOT_FOUND value has been deprecated and replaced by the RESOURCE_NOT_FOUND value.

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

    The reason why a control's enablement status in the specified standard couldn't be updated.

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