Values.StandardsControlAssociationUpdateSourceAn 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.
type nonrec t = {standardsArn : NonEmptyString.t;The Amazon Resource Name (ARN) of the standard in which you want to update the control's enablement status.
*)securityControlId : NonEmptyString.t;The unique identifier for the security control whose enablement status you want to update.
*)associationStatus : AssociationStatus.t;The desired enablement status of the control in the standard.
*)updatedReason : NonEmptyString.t option;The reason for updating the control's enablement status in the standard.
*)}val make :
?updatedReason:??? ->
standardsArn:NonEmptyString.t ->
securityControlId:NonEmptyString.t ->
associationStatus:AssociationStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of NonEmptyString.t ]) list ]