Module Values.StandardsControlAssociationSummarySource

An array that provides the enablement status and other details for each control that applies to each enabled standard.

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

    The Amazon Resource Name (ARN) of a standard.

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

    A unique standard-agnostic identifier for a control. Values for this field typically consist of an Amazon Web Services service and a number, such as APIGateway.5. This field doesn't reference a specific standard.

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

    The ARN of a control, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1. This parameter doesn't mention a specific standard.

    *)
  4. associationStatus : AssociationStatus.t option;
    (*

    The enablement status of a control in a specific standard.

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

    The requirement that underlies this control in the compliance framework related to the standard.

    *)
  6. updatedAt : Timestamp.t option;
    (*

    The last time that a control's enablement status in a specified standard was updated.

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

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

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

    The title of a control.

    *)
  9. standardsControlDescription : NonEmptyString.t option;
    (*

    The description of a control. This typically summarizes how Security Hub CSPM evaluates the control and the conditions under which it produces a failed finding. The parameter may reference a specific standard.

    *)
}
Sourceval make : ?standardsArn:??? -> ?securityControlId:??? -> ?securityControlArn:??? -> ?associationStatus:??? -> ?relatedRequirements:??? -> ?updatedAt:??? -> ?updatedReason:??? -> ?standardsControlTitle:??? -> ?standardsControlDescription:??? -> 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