Values.UpdateStandardsControlRequestSourceUsed 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.
type nonrec t = {standardsControlArn : NonEmptyString.t;The ARN of the security standard control to enable or disable.
*)controlStatus : ControlStatus.t option;The updated status of the security standard control.
*)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.
*)}val make :
?controlStatus:??? ->
?disabledReason:??? ->
standardsControlArn:NonEmptyString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of NonEmptyString.t ]) list ]