Module Values.UpdateStandardsControlRequestSource

Used to control whether an individual security standard control is enabled or disabled. Calls to this operation return a RESOURCE_NOT_FOUND_EXCEPTION error when the standard subscription for the control has StandardsControlsUpdatable value NOT_READY_FOR_UPDATES.

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

    The ARN of the security standard control to enable or disable.

    *)
  2. controlStatus : ControlStatus.t option;
    (*

    The updated status of the security standard control.

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

    A description of the reason why you are disabling a security standard control. If you are disabling a control, then this is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?controlStatus:??? -> ?disabledReason:??? -> standardsControlArn:NonEmptyString.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