Module Values.UnprocessedStandardsControlAssociationSource

Provides details about which control's enablement status couldn't be retrieved in a specified standard when calling BatchUpdateStandardsControlAssociations. This parameter also provides details about why the request was unprocessed.

Sourcetype nonrec t = {
  1. standardsControlAssociationId : StandardsControlAssociationId.t option;
    (*

    An array with one or more objects that includes a security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) and the Amazon Resource Name (ARN) of a standard. This parameter shows the specific controls for which the enablement status couldn't be retrieved in specified standards when calling BatchUpdateStandardsControlAssociations.

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

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

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

    The reason why the standard and control association was unprocessed.

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