Module Values.StandardsControlSource

Details for an individual security standard control.

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

    The ARN of the security standard control.

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

    The current status of the security standard control. Indicates whether the control is enabled or disabled. Security Hub CSPM does not check against disabled controls.

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

    The reason provided for the most recent change in status for the control.

    *)
  4. controlStatusUpdatedAt : Timestamp.t option;
    (*

    The date and time that the status of the security standard control was most recently updated.

    *)
  5. controlId : NonEmptyString.t option;
    (*

    The identifier of the security standard control.

    *)
  6. title : NonEmptyString.t option;
    (*

    The title of the security standard control.

    *)
  7. description : NonEmptyString.t option;
    (*

    The longer description of the security standard control. Provides information about what the control is checking for.

    *)
  8. remediationUrl : NonEmptyString.t option;
    (*

    A link to remediation information for the control in the Security Hub CSPM user documentation.

    *)
  9. severityRating : SeverityRating.t option;
    (*

    The severity of findings generated from this security standard control. The finding severity is based on an assessment of how easy it would be to compromise Amazon Web Services resources if the issue is detected.

    *)
  10. relatedRequirements : RelatedRequirementsList.t option;
    (*

    The list of requirements that are related to this control.

    *)
}
Sourceval make : ?standardsControlArn:??? -> ?controlStatus:??? -> ?disabledReason:??? -> ?controlStatusUpdatedAt:??? -> ?controlId:??? -> ?title:??? -> ?description:??? -> ?remediationUrl:??? -> ?severityRating:??? -> ?relatedRequirements:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t | `Timestamp of Timestamp.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