Module Values.StandardsControlAssociationUpdateSource

An array of requested updates to the enablement status of controls in specified standards. The objects in the array include a security control ID, the Amazon Resource Name (ARN) of the standard, the requested enablement status, and the reason for updating the enablement status.

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

    The Amazon Resource Name (ARN) of the standard in which you want to update the control's enablement status.

    *)
  2. securityControlId : NonEmptyString.t;
    (*

    The unique identifier for the security control whose enablement status you want to update.

    *)
  3. associationStatus : AssociationStatus.t;
    (*

    The desired enablement status of the control in the standard.

    *)
  4. updatedReason : NonEmptyString.t option;
    (*

    The reason for updating the control's enablement status in the standard.

    *)
}
Sourceval context_ : string
Sourceval make : ?updatedReason:??? -> standardsArn:NonEmptyString.t -> securityControlId:NonEmptyString.t -> associationStatus:AssociationStatus.t -> 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